Skip to content

Commit 0d841dc

Browse files
authored
Handle merge request labels in Note Webhooks (comments) (#1717)
* add labels to merge request attributes, pass them to the note web hook CauseData * add labels to note hook test
1 parent f559331 commit 0d841dc

File tree

3 files changed

+54
-0
lines changed

3 files changed

+54
-0
lines changed

src/main/java/com/dabsquared/gitlabjenkins/gitlab/hook/model/MergeRequestObjectAttributes.java

+13
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
package com.dabsquared.gitlabjenkins.gitlab.hook.model;
22

33
import java.util.Date;
4+
import java.util.List;
45
import net.karneim.pojobuilder.GeneratePojoBuilder;
56
import org.apache.commons.lang.builder.EqualsBuilder;
67
import org.apache.commons.lang.builder.HashCodeBuilder;
@@ -34,6 +35,7 @@ public class MergeRequestObjectAttributes {
3435
private String url;
3536
private Action action;
3637
private Boolean workInProgress;
38+
private List<MergeRequestLabel> labels;
3739

3840
public Integer getId() {
3941
return id;
@@ -211,6 +213,14 @@ public void setWorkInProgress(Boolean workInProgress) {
211213
this.workInProgress = workInProgress;
212214
}
213215

216+
public List<MergeRequestLabel> getLabels() {
217+
return labels;
218+
}
219+
220+
public void setLabels(List<MergeRequestLabel> labels) {
221+
this.labels = labels;
222+
}
223+
214224
@Override
215225
public boolean equals(Object o) {
216226
if (this == o) {
@@ -243,6 +253,7 @@ public boolean equals(Object o) {
243253
.append(action, that.action)
244254
.append(oldrev, that.oldrev)
245255
.append(workInProgress, that.workInProgress)
256+
.append(labels, that.labels)
246257
.isEquals();
247258
}
248259

@@ -270,6 +281,7 @@ public int hashCode() {
270281
.append(url)
271282
.append(action)
272283
.append(workInProgress)
284+
.append(labels)
273285
.toHashCode();
274286
}
275287

@@ -298,6 +310,7 @@ public String toString() {
298310
.append("action", action)
299311
.append("oldrev", oldrev)
300312
.append("workInProgress", workInProgress)
313+
.append("labels", labels)
301314
.toString();
302315
}
303316
}

src/main/java/com/dabsquared/gitlabjenkins/trigger/handler/note/NoteHookTriggerHandlerImpl.java

+8
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,10 @@
22

33
import static com.dabsquared.gitlabjenkins.cause.CauseDataBuilder.causeData;
44
import static com.dabsquared.gitlabjenkins.trigger.handler.builder.generated.BuildStatusUpdateBuilder.buildStatusUpdate;
5+
import static java.util.stream.Collectors.toList;
56

67
import com.dabsquared.gitlabjenkins.cause.CauseData;
8+
import com.dabsquared.gitlabjenkins.gitlab.hook.model.MergeRequestLabel;
79
import com.dabsquared.gitlabjenkins.gitlab.hook.model.NoteHook;
810
import com.dabsquared.gitlabjenkins.trigger.exception.NoRevisionToBuildException;
911
import com.dabsquared.gitlabjenkins.trigger.filter.BranchFilter;
@@ -97,6 +99,12 @@ protected CauseData retrieveCauseData(NoteHook hook) {
9799
.withTriggerPhrase(hook.getObjectAttributes().getNote())
98100
.withCommentAuthor(
99101
hook.getUser() == null ? null : hook.getUser().getUsername())
102+
.withMergeRequestLabels(
103+
hook.getMergeRequest().getLabels() == null
104+
? null
105+
: hook.getMergeRequest().getLabels().stream()
106+
.map(MergeRequestLabel::getTitle)
107+
.collect(toList()))
100108
.build();
101109
}
102110

src/test/java/com/dabsquared/gitlabjenkins/trigger/handler/note/NoteHookTriggerHandlerImplTest.java

+33
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
package com.dabsquared.gitlabjenkins.trigger.handler.note;
22

33
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;
45
import static com.dabsquared.gitlabjenkins.gitlab.hook.model.builder.generated.MergeRequestObjectAttributesBuilder.mergeRequestObjectAttributes;
56
import static com.dabsquared.gitlabjenkins.gitlab.hook.model.builder.generated.NoteHookBuilder.noteHook;
67
import static com.dabsquared.gitlabjenkins.gitlab.hook.model.builder.generated.NoteObjectAttributesBuilder.noteObjectAttributes;
@@ -10,17 +11,20 @@
1011
import static com.dabsquared.gitlabjenkins.trigger.filter.MergeRequestLabelFilterFactory.newMergeRequestLabelFilter;
1112
import static org.hamcrest.CoreMatchers.is;
1213
import static org.hamcrest.MatcherAssert.assertThat;
14+
import static org.junit.Assert.assertEquals;
1315

1416
import com.dabsquared.gitlabjenkins.gitlab.hook.model.State;
1517
import com.dabsquared.gitlabjenkins.trigger.filter.BranchFilterFactory;
1618
import com.dabsquared.gitlabjenkins.trigger.filter.BranchFilterType;
19+
import hudson.EnvVars;
1720
import hudson.Launcher;
1821
import hudson.model.AbstractBuild;
1922
import hudson.model.BuildListener;
2023
import hudson.model.FreeStyleProject;
2124
import hudson.plugins.git.GitSCM;
2225
import hudson.util.OneShotEvent;
2326
import java.io.IOException;
27+
import java.util.Arrays;
2428
import java.util.Date;
2529
import java.util.concurrent.ExecutionException;
2630
import org.eclipse.jgit.api.Git;
@@ -62,6 +66,8 @@ public void note_ciSkip() throws IOException, InterruptedException {
6266
@Override
6367
public boolean perform(AbstractBuild<?, ?> build, Launcher launcher, BuildListener listener)
6468
throws InterruptedException, IOException {
69+
EnvVars env = build.getEnvironment(listener);
70+
assertEquals(null, env.get("gitlabMergeRequestLabels"));
6571
buildTriggered.signal();
6672
return true;
6773
}
@@ -109,6 +115,8 @@ public void note_build() throws IOException, InterruptedException, GitAPIExcepti
109115
@Override
110116
public boolean perform(AbstractBuild<?, ?> build, Launcher launcher, BuildListener listener)
111117
throws InterruptedException, IOException {
118+
EnvVars env = build.getEnvironment(listener);
119+
assertEquals("bugfix,help needed", env.get("gitlabMergeRequestLabels"));
112120
buildTriggered.signal();
113121
return true;
114122
}
@@ -137,6 +145,31 @@ public boolean perform(AbstractBuild<?, ?> build, Launcher launcher, BuildListen
137145
.withSourceProjectId(1)
138146
.withSourceBranch("feature")
139147
.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()))
140173
.withLastCommit(commit().withAuthor(
141174
user().withName("test").build())
142175
.withId(commit.getName())

0 commit comments

Comments
 (0)