Skip to content

Commit ccb73a9

Browse files
authored
Merge pull request #167 from jonesbusy/feature/support-check-mode
Add support for check mode
2 parents 29a7f9b + 34ad90a commit ccb73a9

File tree

14 files changed

+115
-1
lines changed

14 files changed

+115
-1
lines changed

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -430,6 +430,7 @@ steps {
430430
skippedTags(String tags)
431431
startAtTask(String task)
432432
credentialsId(String id)
433+
checkMode(boolean checkMode = false)
433434
become(boolean become = true)
434435
becomeUser(String user = 'root')
435436
sudo(boolean sudo = true)
@@ -477,6 +478,7 @@ steps {
477478
credentialsId('credsid')
478479
become(true)
479480
becomeUser("user")
481+
checkMode(false)
480482
extraVars {
481483
extraVar("key1", "value1", false)
482484
extraVar("key2", "value2", true)

src/main/java/org/jenkinsci/plugins/ansible/AbstractAnsibleInvocation.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ abstract class AbstractAnsibleInvocation<T extends AbstractAnsibleInvocation<T>>
5252
protected boolean sudo;
5353
protected String sudoUser;
5454
protected StandardCredentials vaultCredentials;
55-
protected FilePath vaultTmpPath;
55+
protected FilePath vaultTmpPath = null;
5656
protected StandardUsernameCredentials credentials;
5757
protected List<ExtraVar> extraVars;
5858
protected String additionalParameters;

src/main/java/org/jenkinsci/plugins/ansible/AnsiblePlaybookBuilder.java

+8
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,8 @@ public class AnsiblePlaybookBuilder extends Builder implements SimpleBuildStep {
7474

7575
public String becomeUser = "root";
7676

77+
public boolean checkMode = false;
78+
7779
public boolean sudo = false;
7880

7981
public String sudoUser = "root";
@@ -196,6 +198,11 @@ public void setSudo(boolean sudo) {
196198
this.sudo = sudo;
197199
}
198200

201+
@DataBoundSetter
202+
public void setCheckMode(boolean checkMode) {
203+
this.checkMode = checkMode;
204+
}
205+
199206
@DataBoundSetter
200207
public void setSudoUser(String sudoUser) {
201208
this.sudoUser = sudoUser;
@@ -269,6 +276,7 @@ public void perform(
269276
invocation.setSkippedTags(skippedTags);
270277
invocation.setStartTask(startAtTask);
271278
invocation.setBecome(become, becomeUser);
279+
invocation.setCheckMode(checkMode);
272280
invocation.setSudo(sudo, sudoUser);
273281
invocation.setForks(forks);
274282
invocation.setCredentials(

src/main/java/org/jenkinsci/plugins/ansible/AnsiblePlaybookInvocation.java

+14
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ public class AnsiblePlaybookInvocation extends AbstractAnsibleInvocation<Ansible
3434
private String tags;
3535
private String skippedTags;
3636
private String startAtTask;
37+
private boolean checkMode;
3738

3839
protected AnsiblePlaybookInvocation(String exe, AbstractBuild<?, ?> build, BuildListener listener, EnvVars envVars)
3940
throws IOException, InterruptedException, AnsibleInvocationException {
@@ -50,6 +51,11 @@ public AnsiblePlaybookInvocation setPlaybook(String playbook) {
5051
return this;
5152
}
5253

54+
public AnsiblePlaybookInvocation setCheckMode(boolean checkMode) {
55+
this.checkMode = checkMode;
56+
return this;
57+
}
58+
5359
private ArgumentListBuilder appendPlaybook(ArgumentListBuilder args) {
5460
args.add(envVars.expand(playbook));
5561
return args;
@@ -95,6 +101,13 @@ private ArgumentListBuilder appendStartTask(ArgumentListBuilder args) {
95101
return args;
96102
}
97103

104+
protected ArgumentListBuilder appendCheckMode(ArgumentListBuilder args) {
105+
if (checkMode) {
106+
args.add("--check");
107+
}
108+
return args;
109+
}
110+
98111
@Override
99112
protected ArgumentListBuilder buildCommandLine()
100113
throws InterruptedException, AnsibleInvocationException, IOException {
@@ -108,6 +121,7 @@ protected ArgumentListBuilder buildCommandLine()
108121
appendSkippedTags(args);
109122
appendStartTask(args);
110123
appendBecome(args);
124+
appendCheckMode(args);
111125
appendSudo(args);
112126
appendForks(args);
113127
appendCredentials(args);

src/main/java/org/jenkinsci/plugins/ansible/jobdsl/AnsibleJobDslExtension.java

+1
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ public Object ansiblePlaybook(String playbook, Runnable closure) {
5858
plbook.setDisableHostKeyChecking(context.isDisableHostKeyChecking());
5959
plbook.setBecome(context.isBecome());
6060
plbook.setBecomeUser(context.getBecomeUser());
61+
plbook.setCheckMode(context.isCheckMode());
6162
plbook.setSudo(context.isSudo());
6263
plbook.setSudoUser(context.getSudoUser());
6364
plbook.setUnbufferedOutput(context.isUnbufferedOutput());

src/main/java/org/jenkinsci/plugins/ansible/jobdsl/context/AnsibleContext.java

+9
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ public class AnsibleContext implements Context {
2828
private boolean sudo = false;
2929
private String sudoUser = "root";
3030
private int forks = 5;
31+
private boolean checkMode = false;
3132
private boolean unbufferedOutput = true;
3233
private boolean colorizedOutput = false;
3334
private boolean disableHostKeyChecking = false;
@@ -107,6 +108,10 @@ public void becomeUser(String becomeUser) {
107108
this.becomeUser = becomeUser;
108109
}
109110

111+
public void checkMode(boolean checkMode) {
112+
this.checkMode = checkMode;
113+
}
114+
110115
public void sudo(boolean sudo) {
111116
this.sudo = sudo;
112117
}
@@ -227,6 +232,10 @@ public boolean isColorizedOutput() {
227232
return colorizedOutput;
228233
}
229234

235+
public boolean isCheckMode() {
236+
return checkMode;
237+
}
238+
230239
public boolean isDisableHostKeyChecking() {
231240
return disableHostKeyChecking;
232241
}

src/main/java/org/jenkinsci/plugins/ansible/workflow/AnsiblePlaybookStep.java

+11
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ public class AnsiblePlaybookStep extends AbstractStepImpl {
7070
private String vaultCredentialsId;
7171
private String vaultTmpPath = null;
7272
private boolean become = false;
73+
private boolean checkMode = false;
7374
private String becomeUser = "root";
7475
private boolean sudo = false;
7576
private String sudoUser = "root";
@@ -133,6 +134,11 @@ public void setBecomeUser(String becomeUser) {
133134
this.becomeUser = Util.fixEmptyAndTrim(becomeUser);
134135
}
135136

137+
@DataBoundSetter
138+
public void setCheckMode(boolean checkMode) {
139+
this.checkMode = checkMode;
140+
}
141+
136142
@DataBoundSetter
137143
public void setSudo(boolean sudo) {
138144
this.sudo = sudo;
@@ -237,6 +243,10 @@ public String getBecomeUser() {
237243
return becomeUser;
238244
}
239245

246+
public boolean isCheckMode() {
247+
return checkMode;
248+
}
249+
240250
public boolean isSudo() {
241251
return sudo;
242252
}
@@ -433,6 +443,7 @@ protected Void run() throws Exception {
433443
builder.setAnsibleName(step.getInstallation());
434444
builder.setBecome(step.isBecome());
435445
builder.setBecomeUser(step.getBecomeUser());
446+
builder.setCheckMode(step.isCheckMode());
436447
builder.setSudo(step.isSudo());
437448
builder.setSudoUser(step.getSudoUser());
438449
builder.setCredentialsId(step.getCredentialsId(), true);

src/main/resources/org/jenkinsci/plugins/ansible/AnsiblePlaybookBuilder/config.jelly

+4
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,10 @@
4242
</f:entry>
4343
</f:optionalBlock>
4444

45+
<f:entry title="${%check mode}" field="checkMode">
46+
<f:checkbox default="false" />
47+
</f:entry>
48+
4549
<f:optionalBlock name="sudo" title="${%sudo}" checked="${instance.sudo}" inline="true" help="${descriptor.getHelpFile('sudo')}">
4650
<f:entry title="${%sudo user}" field="sudoUser">
4751
<f:textbox />
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<div>
2+
Run ansible with check mode enabled. This will not make any changes on the remote system (--check)
3+
</div>

src/main/resources/org/jenkinsci/plugins/ansible/workflow/AnsiblePlaybookStep/config.jelly

+3
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@
1818
<f:entry field="vaultTmpPath" title="Vault tmp path">
1919
<f:textbox/>
2020
</f:entry>
21+
<f:entry field="checkMode" title="Check mode">
22+
<f:checkbox/>
23+
</f:entry>
2124
<f:entry field="become" title="Use become">
2225
<f:checkbox/>
2326
</f:entry>

src/test/java/org/jenkinsci/plugins/ansible/PipelineTest.java

+11
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,17 @@ public void testMinimalPipeline() throws Exception {
5757
assertThat(run1.getLog(), allOf(containsString("ansible-playbook playbook.yml")));
5858
}
5959

60+
@Test
61+
public void testMinimalCheckModePipeline() throws Exception {
62+
String pipeline = IOUtils.toString(
63+
PipelineTest.class.getResourceAsStream("/pipelines/minimalCheckMode.groovy"), StandardCharsets.UTF_8);
64+
WorkflowJob workflowJob = jenkins.createProject(WorkflowJob.class);
65+
workflowJob.setDefinition(new CpsFlowDefinition(pipeline, true));
66+
WorkflowRun run1 = workflowJob.scheduleBuild2(0).waitForStart();
67+
jenkins.waitForCompletion(run1);
68+
assertThat(run1.getLog(), allOf(containsString("ansible-playbook playbook.yml --check")));
69+
}
70+
6071
@Test
6172
public void testExtraVarsHiddenString() throws Exception {
6273
String pipeline = IOUtils.toString(

src/test/java/org/jenkinsci/plugins/ansible/jobdsl/JobDslIntegrationTest.java

+14
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
4040
public class JobDslIntegrationTest {
4141
public static final String ANSIBLE_DSL_GROOVY_PLAYBOOK = "jobdsl/playbook.groovy";
4242
public static final String ANSIBLE_DSL_GROOVY_EXPANDER = "jobdsl/expander.groovy";
43+
public static final String ANSIBLE_DSL_GROOVY_CHECK_MODE = "jobdsl/checkMode.groovy";
4344
public static final String ANSIBLE_DSL_GROOVY_SECURITY_630 = "jobdsl/security630.groovy";
4445
public static final String ANSIBLE_DSL_GROOVY_PLAYBOOK_LEGACY = "jobdsl/legacyPlaybook.groovy";
4546
public static final String ANSIBLE_DSL_GROOVY_ADHOC = "jobdsl/adhoc.groovy";
@@ -76,6 +77,7 @@ public void shouldCreateJobWithPlaybookDsl() throws Exception {
7677
assertThat("credentialsId", step.credentialsId, is("credsid"));
7778
assertThat("become", step.become, is(true));
7879
assertThat("becomeUser", step.becomeUser, is("user"));
80+
assertThat("checkMode", step.checkMode, is(false));
7981
assertThat("sudo", step.sudo, is(false));
8082
assertThat("sudoUser", step.sudoUser, is("root"));
8183
assertThat("forks", step.forks, is(6));
@@ -88,6 +90,18 @@ public void shouldCreateJobWithPlaybookDsl() throws Exception {
8890
assertThat("extraVar.hidden", step.extraVars.get(0).isHidden(), is(true));
8991
}
9092

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+
91105
@Test
92106
@DslJobRule.WithJobDsl(ANSIBLE_DSL_GROOVY_EXPANDER)
93107
public void shouldCreateJobWithVarExpander() throws Exception {
+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
freeStyleJob('ansible') {
2+
steps {
3+
ansiblePlaybook('path/playbook.yml') {
4+
inventoryPath('hosts.ini')
5+
ansibleName('1.9.4')
6+
limit('retry.limit')
7+
checkMode(true)
8+
}
9+
}
10+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
pipeline {
2+
agent {
3+
label('test-agent')
4+
}
5+
stages {
6+
stage('Create playbook') {
7+
steps {
8+
writeFile(encoding: 'UTF-8', file: 'playbook.yml', text: '''- hosts: localhost
9+
connection: local
10+
gather_facts: no
11+
tasks:
12+
- debug: msg=test
13+
''')
14+
}
15+
}
16+
stage('Ansible playbook') {
17+
steps {
18+
warnError(message: 'ansible command not found?') {
19+
ansiblePlaybook(playbook: 'playbook.yml', checkMode: true)
20+
}
21+
}
22+
}
23+
}
24+
}

0 commit comments

Comments
 (0)