|
1 | 1 | package org.jenkinsci.plugins.ansible.jobdsl;
|
2 | 2 |
|
3 | 3 | import static org.hamcrest.MatcherAssert.assertThat;
|
| 4 | +import static org.hamcrest.Matchers.allOf; |
| 5 | +import static org.hamcrest.Matchers.containsString; |
4 | 6 | import static org.hamcrest.Matchers.is;
|
5 | 7 | import static org.hamcrest.Matchers.isA;
|
6 | 8 | import static org.hamcrest.Matchers.notNullValue;
|
7 |
| - |
| 9 | +import static org.junit.Assume.assumeFalse; |
| 10 | + |
| 11 | +import com.cloudbees.plugins.credentials.CredentialsProvider; |
| 12 | +import com.cloudbees.plugins.credentials.CredentialsScope; |
| 13 | +import com.cloudbees.plugins.credentials.CredentialsStore; |
| 14 | +import com.cloudbees.plugins.credentials.domains.Domain; |
| 15 | +import hudson.model.FreeStyleBuild; |
| 16 | +import hudson.model.FreeStyleProject; |
| 17 | +import hudson.model.ParameterValue; |
| 18 | +import hudson.model.ParametersAction; |
| 19 | +import hudson.model.StringParameterValue; |
| 20 | +import hudson.util.Secret; |
| 21 | +import java.util.ArrayList; |
| 22 | +import java.util.List; |
| 23 | +import org.apache.commons.lang3.SystemUtils; |
8 | 24 | import org.hamcrest.Matcher;
|
9 | 25 | import org.jenkinsci.plugins.ansible.AnsibleAdHocCommandBuilder;
|
10 | 26 | import org.jenkinsci.plugins.ansible.AnsiblePlaybookBuilder;
|
11 | 27 | import org.jenkinsci.plugins.ansible.AnsibleVaultBuilder;
|
12 | 28 | import org.jenkinsci.plugins.ansible.InventoryContent;
|
13 | 29 | import org.jenkinsci.plugins.ansible.InventoryPath;
|
| 30 | +import org.jenkinsci.plugins.plaincredentials.StringCredentials; |
| 31 | +import org.jenkinsci.plugins.plaincredentials.impl.StringCredentialsImpl; |
14 | 32 | import org.junit.Rule;
|
15 | 33 | import org.junit.Test;
|
16 | 34 | import org.junit.rules.RuleChain;
|
|
21 | 39 | */
|
22 | 40 | public class JobDslIntegrationTest {
|
23 | 41 | public static final String ANSIBLE_DSL_GROOVY_PLAYBOOK = "jobdsl/playbook.groovy";
|
| 42 | + public static final String ANSIBLE_DSL_GROOVY_EXPANDER = "jobdsl/expander.groovy"; |
24 | 43 | public static final String ANSIBLE_DSL_GROOVY_SECURITY_630 = "jobdsl/security630.groovy";
|
25 | 44 | public static final String ANSIBLE_DSL_GROOVY_PLAYBOOK_LEGACY = "jobdsl/legacyPlaybook.groovy";
|
26 | 45 | public static final String ANSIBLE_DSL_GROOVY_ADHOC = "jobdsl/adhoc.groovy";
|
@@ -69,6 +88,48 @@ public void shouldCreateJobWithPlaybookDsl() throws Exception {
|
69 | 88 | assertThat("extraVar.hidden", step.extraVars.get(0).isHidden(), is(true));
|
70 | 89 | }
|
71 | 90 |
|
| 91 | + @Test |
| 92 | + @DslJobRule.WithJobDsl(ANSIBLE_DSL_GROOVY_EXPANDER) |
| 93 | + public void shouldCreateJobWithVarExpander() throws Exception { |
| 94 | + |
| 95 | + assumeFalse(SystemUtils.IS_OS_WINDOWS); |
| 96 | + |
| 97 | + // Add credentials |
| 98 | + StringCredentials vaultCredentials = new StringCredentialsImpl( |
| 99 | + CredentialsScope.GLOBAL, |
| 100 | + "vaultCredentialsString", |
| 101 | + "test username password", |
| 102 | + Secret.fromString("test-secret")); |
| 103 | + StringCredentials credentials = new StringCredentialsImpl( |
| 104 | + CredentialsScope.GLOBAL, "credentialsString", "test credentials", Secret.fromString("test")); |
| 105 | + CredentialsStore store = |
| 106 | + CredentialsProvider.lookupStores(jenkins.jenkins).iterator().next(); |
| 107 | + store.addCredentials(Domain.global(), vaultCredentials); |
| 108 | + store.addCredentials(Domain.global(), credentials); |
| 109 | + |
| 110 | + // Create job via jobdsl with var expander |
| 111 | + AnsiblePlaybookBuilder step = dsl.getGeneratedJob().getBuildersList().get(AnsiblePlaybookBuilder.class); |
| 112 | + assertThat("Should add playbook builder", step, notNullValue()); |
| 113 | + assertThat("playbook", step.playbook, is("playbook.yml")); |
| 114 | + assertThat("inventory", step.inventory, (Matcher) isA(InventoryPath.class)); |
| 115 | + assertThat("vaultCredentialsId", step.vaultCredentialsId, is("${vault_credentials_id}")); |
| 116 | + assertThat("credentialsId", step.credentialsId, is("${credentials_id}")); |
| 117 | + |
| 118 | + List<ParameterValue> parameters = new ArrayList<>(); |
| 119 | + parameters.add(new StringParameterValue("inventory_repository", "inventory")); |
| 120 | + parameters.add(new StringParameterValue("vault_credentials_id", "vaultCredentialsString")); |
| 121 | + parameters.add(new StringParameterValue("credentials_id", "credentialsString")); |
| 122 | + ParametersAction parametersAction = new ParametersAction(parameters); |
| 123 | + |
| 124 | + FreeStyleProject freeStyleProject = jenkins.getInstance().getItemByFullName("ansible", FreeStyleProject.class); |
| 125 | + FreeStyleBuild build = |
| 126 | + freeStyleProject.scheduleBuild2(0, parametersAction).get(); |
| 127 | + assertThat( |
| 128 | + build.getLog(), |
| 129 | + allOf(containsString( |
| 130 | + "ansible-playbook playbook.yml -i inventory/inventory.yml -f 5 --vault-password-file "))); |
| 131 | + } |
| 132 | + |
72 | 133 | @Test
|
73 | 134 | @DslJobRule.WithJobDsl(ANSIBLE_DSL_GROOVY_PLAYBOOK_LEGACY)
|
74 | 135 | public void shouldCreateJobWithLegacyPlaybookDsl() throws Exception {
|
|
0 commit comments