Skip to content

Commit

Permalink
Add CasC test for config with triggers
Browse files Browse the repository at this point in the history
  • Loading branch information
Smasherr committed Nov 12, 2019
1 parent 1e210a3 commit c960ae9
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,26 @@

import static org.assertj.core.api.Assertions.assertThat;

public class CasCTest extends RoundTripAbstractTest {
public class CasCMinimalTest extends RoundTripAbstractTest {

@Override
protected String configResource() {
return "config-minimal.yaml";
}

@Override
protected void assertConfiguredAsExpected(RestartableJenkinsRule restartableJenkinsRule, String s) {
SonarInstallation installation = GlobalConfiguration.all()
.get(SonarGlobalConfiguration.class)
.getInstallations()[0];
SonarInstallation installation = getSonarInstallation();
assertThat(installation).isNotNull();
}

SonarInstallation getSonarInstallation() {
SonarGlobalConfiguration sonarGlobalConfiguration = GlobalConfiguration.all()
.get(SonarGlobalConfiguration.class);
assertThat(sonarGlobalConfiguration).isNotNull();
return sonarGlobalConfiguration.getInstallations()[0];
}

@Override
protected String stringInLogExpected() {
return "credentialsId = test-id";
Expand Down
43 changes: 43 additions & 0 deletions src/test/java/hudson/plugins/sonar/casc/CasCTriggersTest.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
/*
* SonarQube Scanner for Jenkins
* Copyright (C) 2007-2019 SonarSource SA
* mailto:info AT sonarsource DOT com
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
package hudson.plugins.sonar.casc;

import hudson.plugins.sonar.SonarInstallation;
import hudson.plugins.sonar.model.TriggersConfig;
import org.jvnet.hudson.test.RestartableJenkinsRule;

import static org.assertj.core.api.Assertions.assertThat;

public class CasCTriggersTest extends CasCMinimalTest {

@Override
protected String configResource() {
return "config-w-triggers.yaml";
}

@Override
protected void assertConfiguredAsExpected(RestartableJenkinsRule restartableJenkinsRule, String s) {
SonarInstallation sonarInstallation = getSonarInstallation();
TriggersConfig triggers = sonarInstallation.getTriggers();
assertThat(triggers).isNotNull();
assertThat(triggers.isSkipScmCause()).isTrue();
assertThat(triggers.isSkipUpstreamCause()).isTrue();
}
}

0 comments on commit c960ae9

Please sign in to comment.