|
1 | 1 | package com.dabsquared.gitlabjenkins.trigger.handler.note;
|
2 | 2 |
|
3 | 3 | import static com.dabsquared.gitlabjenkins.gitlab.hook.model.builder.generated.CommitBuilder.commit;
|
| 4 | +import static com.dabsquared.gitlabjenkins.gitlab.hook.model.builder.generated.MergeRequestLabelBuilder.mergeRequestLabel; |
4 | 5 | import static com.dabsquared.gitlabjenkins.gitlab.hook.model.builder.generated.MergeRequestObjectAttributesBuilder.mergeRequestObjectAttributes;
|
5 | 6 | import static com.dabsquared.gitlabjenkins.gitlab.hook.model.builder.generated.NoteHookBuilder.noteHook;
|
6 | 7 | import static com.dabsquared.gitlabjenkins.gitlab.hook.model.builder.generated.NoteObjectAttributesBuilder.noteObjectAttributes;
|
|
10 | 11 | import static com.dabsquared.gitlabjenkins.trigger.filter.MergeRequestLabelFilterFactory.newMergeRequestLabelFilter;
|
11 | 12 | import static org.hamcrest.CoreMatchers.is;
|
12 | 13 | import static org.hamcrest.MatcherAssert.assertThat;
|
| 14 | +import static org.junit.Assert.assertEquals; |
13 | 15 |
|
14 | 16 | import com.dabsquared.gitlabjenkins.gitlab.hook.model.State;
|
15 | 17 | import com.dabsquared.gitlabjenkins.trigger.filter.BranchFilterFactory;
|
16 | 18 | import com.dabsquared.gitlabjenkins.trigger.filter.BranchFilterType;
|
| 19 | +import hudson.EnvVars; |
17 | 20 | import hudson.Launcher;
|
18 | 21 | import hudson.model.AbstractBuild;
|
19 | 22 | import hudson.model.BuildListener;
|
20 | 23 | import hudson.model.FreeStyleProject;
|
21 | 24 | import hudson.plugins.git.GitSCM;
|
22 | 25 | import hudson.util.OneShotEvent;
|
23 | 26 | import java.io.IOException;
|
| 27 | +import java.util.Arrays; |
24 | 28 | import java.util.Date;
|
25 | 29 | import java.util.concurrent.ExecutionException;
|
26 | 30 | import org.eclipse.jgit.api.Git;
|
@@ -62,6 +66,8 @@ public void note_ciSkip() throws IOException, InterruptedException {
|
62 | 66 | @Override
|
63 | 67 | public boolean perform(AbstractBuild<?, ?> build, Launcher launcher, BuildListener listener)
|
64 | 68 | throws InterruptedException, IOException {
|
| 69 | + EnvVars env = build.getEnvironment(listener); |
| 70 | + assertEquals(null, env.get("gitlabMergeRequestLabels")); |
65 | 71 | buildTriggered.signal();
|
66 | 72 | return true;
|
67 | 73 | }
|
@@ -109,6 +115,8 @@ public void note_build() throws IOException, InterruptedException, GitAPIExcepti
|
109 | 115 | @Override
|
110 | 116 | public boolean perform(AbstractBuild<?, ?> build, Launcher launcher, BuildListener listener)
|
111 | 117 | throws InterruptedException, IOException {
|
| 118 | + EnvVars env = build.getEnvironment(listener); |
| 119 | + assertEquals("bugfix,help needed", env.get("gitlabMergeRequestLabels")); |
112 | 120 | buildTriggered.signal();
|
113 | 121 | return true;
|
114 | 122 | }
|
@@ -137,6 +145,31 @@ public boolean perform(AbstractBuild<?, ?> build, Launcher launcher, BuildListen
|
137 | 145 | .withSourceProjectId(1)
|
138 | 146 | .withSourceBranch("feature")
|
139 | 147 | .withTargetBranch("master")
|
| 148 | + .withLabels(Arrays.asList( |
| 149 | + mergeRequestLabel() |
| 150 | + .withId(3) |
| 151 | + .withTitle("bugfix") |
| 152 | + .withColor("#009966") |
| 153 | + .withProjectId(1) |
| 154 | + .withCreatedAt(currentDate) |
| 155 | + .withUpdatedAt(currentDate) |
| 156 | + .withTemplate(false) |
| 157 | + .withDescription(null) |
| 158 | + .withType("ProjectLabel") |
| 159 | + .withGroupId(null) |
| 160 | + .build(), |
| 161 | + mergeRequestLabel() |
| 162 | + .withId(4) |
| 163 | + .withTitle("help needed") |
| 164 | + .withColor("#FF0000") |
| 165 | + .withProjectId(1) |
| 166 | + .withCreatedAt(currentDate) |
| 167 | + .withUpdatedAt(currentDate) |
| 168 | + .withTemplate(false) |
| 169 | + .withDescription(null) |
| 170 | + .withType("ProjectLabel") |
| 171 | + .withGroupId(null) |
| 172 | + .build())) |
140 | 173 | .withLastCommit(commit().withAuthor(
|
141 | 174 | user().withName("test").build())
|
142 | 175 | .withId(commit.getName())
|
|
0 commit comments