40
40
public class JobDslIntegrationTest {
41
41
public static final String ANSIBLE_DSL_GROOVY_PLAYBOOK = "jobdsl/playbook.groovy" ;
42
42
public static final String ANSIBLE_DSL_GROOVY_EXPANDER = "jobdsl/expander.groovy" ;
43
+ public static final String ANSIBLE_DSL_GROOVY_CHECK_MODE = "jobdsl/checkMode.groovy" ;
43
44
public static final String ANSIBLE_DSL_GROOVY_SECURITY_630 = "jobdsl/security630.groovy" ;
44
45
public static final String ANSIBLE_DSL_GROOVY_PLAYBOOK_LEGACY = "jobdsl/legacyPlaybook.groovy" ;
45
46
public static final String ANSIBLE_DSL_GROOVY_ADHOC = "jobdsl/adhoc.groovy" ;
@@ -76,6 +77,7 @@ public void shouldCreateJobWithPlaybookDsl() throws Exception {
76
77
assertThat ("credentialsId" , step .credentialsId , is ("credsid" ));
77
78
assertThat ("become" , step .become , is (true ));
78
79
assertThat ("becomeUser" , step .becomeUser , is ("user" ));
80
+ assertThat ("checkMode" , step .checkMode , is (false ));
79
81
assertThat ("sudo" , step .sudo , is (false ));
80
82
assertThat ("sudoUser" , step .sudoUser , is ("root" ));
81
83
assertThat ("forks" , step .forks , is (6 ));
@@ -88,6 +90,18 @@ public void shouldCreateJobWithPlaybookDsl() throws Exception {
88
90
assertThat ("extraVar.hidden" , step .extraVars .get (0 ).isHidden (), is (true ));
89
91
}
90
92
93
+ @ Test
94
+ @ DslJobRule .WithJobDsl (ANSIBLE_DSL_GROOVY_CHECK_MODE )
95
+ public void shouldCreateJobWithCheckMode () throws Exception {
96
+ AnsiblePlaybookBuilder step = dsl .getGeneratedJob ().getBuildersList ().get (AnsiblePlaybookBuilder .class );
97
+ assertThat ("Should add playbook builder" , step , notNullValue ());
98
+
99
+ assertThat ("playbook" , step .playbook , is ("path/playbook.yml" ));
100
+ assertThat ("inventory" , step .inventory , (Matcher ) isA (InventoryPath .class ));
101
+ assertThat ("ansibleName" , step .ansibleName , is ("1.9.4" ));
102
+ assertThat ("checkMode" , step .checkMode , is (true ));
103
+ }
104
+
91
105
@ Test
92
106
@ DslJobRule .WithJobDsl (ANSIBLE_DSL_GROOVY_EXPANDER )
93
107
public void shouldCreateJobWithVarExpander () throws Exception {
0 commit comments