|
| 1 | +package org.jenkinsci.plugins.ansible; |
| 2 | + |
| 3 | +import java.nio.charset.StandardCharsets; |
| 4 | +import org.apache.commons.io.IOUtils; |
| 5 | +import org.jenkinsci.plugins.workflow.cps.CpsFlowDefinition; |
| 6 | +import org.jenkinsci.plugins.workflow.job.WorkflowJob; |
| 7 | +import org.jenkinsci.plugins.workflow.job.WorkflowRun; |
| 8 | +import org.junit.BeforeClass; |
| 9 | +import org.junit.ClassRule; |
| 10 | +import org.junit.Test; |
| 11 | +import org.jvnet.hudson.test.JenkinsRule; |
| 12 | + |
| 13 | +import hudson.model.Label; |
| 14 | +import hudson.slaves.DumbSlave; |
| 15 | + |
| 16 | +import static org.hamcrest.MatcherAssert.assertThat; |
| 17 | +import static org.hamcrest.Matchers.*; |
| 18 | + |
| 19 | +public class PipelineTest { |
| 20 | + |
| 21 | + @ClassRule |
| 22 | + public static JenkinsRule jenkins = new JenkinsRule(); |
| 23 | + |
| 24 | + private static DumbSlave agent; |
| 25 | + |
| 26 | + @BeforeClass |
| 27 | + public static void startAgent() throws Exception { |
| 28 | + agent = jenkins.createSlave(Label.get("test-agent")); |
| 29 | + } |
| 30 | + |
| 31 | + @Test |
| 32 | + public void testMinimalPipeline() throws Exception { |
| 33 | + String pipeline = IOUtils.toString(PipelineTest.class.getResourceAsStream("/pipelines/minimal.groovy"), StandardCharsets.UTF_8); |
| 34 | + WorkflowJob workflowJob = jenkins.createProject(WorkflowJob.class); |
| 35 | + workflowJob.setDefinition(new CpsFlowDefinition(pipeline, true)); |
| 36 | + WorkflowRun run1 = workflowJob.scheduleBuild2(0).waitForStart(); |
| 37 | + jenkins.waitForCompletion(run1); |
| 38 | + assertThat(run1.getLog(), allOf( |
| 39 | + containsString("ansible-playbook playbook.yml") |
| 40 | + )); |
| 41 | + } |
| 42 | + |
| 43 | + @Test |
| 44 | + public void testExtraVarsHiddenString() throws Exception { |
| 45 | + String pipeline = IOUtils.toString(PipelineTest.class.getResourceAsStream("/pipelines/extraVarsHiddenString.groovy"), StandardCharsets.UTF_8); |
| 46 | + WorkflowJob workflowJob = jenkins.createProject(WorkflowJob.class); |
| 47 | + workflowJob.setDefinition(new CpsFlowDefinition(pipeline, true)); |
| 48 | + WorkflowRun run1 = workflowJob.scheduleBuild2(0).waitForStart(); |
| 49 | + jenkins.waitForCompletion(run1); |
| 50 | + assertThat(run1.getLog(), allOf( |
| 51 | + containsString("ansible-playbook playbook.yml -e ********") |
| 52 | + )); |
| 53 | + } |
| 54 | + |
| 55 | + @Test |
| 56 | + public void testExtraVarsMap() throws Exception { |
| 57 | + String pipeline = IOUtils.toString(PipelineTest.class.getResourceAsStream("/pipelines/extraVarsMap.groovy"), StandardCharsets.UTF_8); |
| 58 | + WorkflowJob workflowJob = jenkins.createProject(WorkflowJob.class); |
| 59 | + workflowJob.setDefinition(new CpsFlowDefinition(pipeline, true)); |
| 60 | + WorkflowRun run1 = workflowJob.scheduleBuild2(0).waitForStart(); |
| 61 | + jenkins.waitForCompletion(run1); |
| 62 | + assertThat(run1.getLog(), allOf( |
| 63 | + containsString("ansible-playbook playbook.yml -e foo1=bar1"), |
| 64 | + containsString("ansible-playbook playbook.yml -e ********") |
| 65 | + )); |
| 66 | + } |
| 67 | + |
| 68 | +} |
0 commit comments