-
Notifications
You must be signed in to change notification settings - Fork 616
Expand file tree
/
Copy pathActionResolverTest.java
More file actions
281 lines (223 loc) · 11.1 KB
/
Copy pathActionResolverTest.java
File metadata and controls
281 lines (223 loc) · 11.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
package com.dabsquared.gitlabjenkins.webhook;
import static org.hamcrest.CoreMatchers.instanceOf;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.mockito.Mockito.when;
import com.dabsquared.gitlabjenkins.webhook.ActionResolver.NoopAction;
import com.dabsquared.gitlabjenkins.webhook.build.MergeRequestBuildAction;
import com.dabsquared.gitlabjenkins.webhook.build.NoteBuildAction;
import com.dabsquared.gitlabjenkins.webhook.build.PushBuildAction;
import com.dabsquared.gitlabjenkins.webhook.status.BranchBuildPageRedirectAction;
import com.dabsquared.gitlabjenkins.webhook.status.BranchStatusPngAction;
import com.dabsquared.gitlabjenkins.webhook.status.CommitBuildPageRedirectAction;
import com.dabsquared.gitlabjenkins.webhook.status.CommitStatusPngAction;
import com.dabsquared.gitlabjenkins.webhook.status.StatusJsonAction;
import jakarta.servlet.ReadListener;
import jakarta.servlet.ServletInputStream;
import java.io.IOException;
import java.io.InputStream;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;
import org.jvnet.hudson.test.JenkinsRule;
import org.jvnet.hudson.test.junit.jupiter.WithJenkins;
import org.kohsuke.stapler.StaplerRequest2;
import org.mockito.Mock;
import org.mockito.junit.jupiter.MockitoExtension;
import org.mockito.junit.jupiter.MockitoSettings;
import org.mockito.quality.Strictness;
/**
* @author Robin Müller
*/
@WithJenkins
@ExtendWith(MockitoExtension.class)
@MockitoSettings(strictness = Strictness.LENIENT)
class ActionResolverTest {
private static JenkinsRule jenkins;
@Mock
private StaplerRequest2 request;
@BeforeAll
static void setUp(JenkinsRule rule) {
jenkins = rule;
}
@Test
void getBranchBuildPageRedirect() throws Exception {
String projectName = "getBranchBuildPageRedirect";
jenkins.createFreeStyleProject(projectName);
when(request.getRestOfPath()).thenReturn(projectName);
when(request.hasParameter("ref")).thenReturn(true);
when(request.getMethod()).thenReturn("GET");
WebHookAction resolvedAction = new ActionResolver().resolve(request);
assertThat(resolvedAction, instanceOf(BranchBuildPageRedirectAction.class));
}
@Test
void getCommitStatus() throws Exception {
String projectName = "getCommitStatus";
jenkins.createFreeStyleProject(projectName);
when(request.getRestOfPath()).thenReturn(projectName + "/builds/1234abcd/status.json");
when(request.getMethod()).thenReturn("GET");
WebHookAction resolvedAction = new ActionResolver().resolve(request);
assertThat(resolvedAction, instanceOf(StatusJsonAction.class));
}
@Test
void getCommitBuildPageRedirect_builds() throws Exception {
String projectName = "getCommitBuildPageRedirect_builds";
jenkins.createFreeStyleProject(projectName);
when(request.getRestOfPath()).thenReturn(projectName + "/builds/1234abcd");
when(request.getMethod()).thenReturn("GET");
WebHookAction resolvedAction = new ActionResolver().resolve(request);
assertThat(resolvedAction, instanceOf(CommitBuildPageRedirectAction.class));
}
@Test
void getCommitBuildPageRedirect_commits() throws Exception {
String projectName = "getCommitBuildPageRedirect_commits";
jenkins.createFreeStyleProject(projectName);
when(request.getRestOfPath()).thenReturn(projectName + "/commits/7890efab");
when(request.getMethod()).thenReturn("GET");
WebHookAction resolvedAction = new ActionResolver().resolve(request);
assertThat(resolvedAction, instanceOf(CommitBuildPageRedirectAction.class));
}
@Test
void getBranchStatusPng() throws Exception {
String projectName = "getBranchStatusPng";
jenkins.createFreeStyleProject(projectName);
when(request.getRestOfPath()).thenReturn(projectName + "/builds/status.png");
when(request.hasParameter("ref")).thenReturn(true);
when(request.getMethod()).thenReturn("GET");
WebHookAction resolvedAction = new ActionResolver().resolve(request);
assertThat(resolvedAction, instanceOf(BranchStatusPngAction.class));
}
@Test
void getCommitStatusPng() throws Exception {
String projectName = "getCommitStatusPng";
jenkins.createFreeStyleProject(projectName);
when(request.getRestOfPath()).thenReturn(projectName + "/builds/status.png");
when(request.hasParameter("ref")).thenReturn(false);
when(request.getMethod()).thenReturn("GET");
WebHookAction resolvedAction = new ActionResolver().resolve(request);
assertThat(resolvedAction, instanceOf(CommitStatusPngAction.class));
}
@Test
void postMergeRequest() throws Exception {
String projectName = "postMergeRequest";
jenkins.createFreeStyleProject(projectName);
when(request.getRestOfPath()).thenReturn(projectName);
when(request.getMethod()).thenReturn("POST");
when(request.getHeader("X-Gitlab-Event")).thenReturn("Merge Request Hook");
when(request.getInputStream())
.thenReturn(new ResourceServletInputStream("ActionResolverTest_postMergeRequest.json"));
WebHookAction resolvedAction = new ActionResolver().resolve(request);
assertThat(resolvedAction, instanceOf(MergeRequestBuildAction.class));
}
@Test
void postSystemHookMergeRequest() throws Exception {
String projectName = "postSystemHookMergeRequest";
jenkins.createFreeStyleProject(projectName);
when(request.getRestOfPath()).thenReturn(projectName);
when(request.getMethod()).thenReturn("POST");
when(request.getHeader("X-Gitlab-Event")).thenReturn("System Hook");
when(request.getInputStream())
.thenReturn(new ResourceServletInputStream("ActionResolverTest_postSystemHook_MergeRequest.json"));
WebHookAction resolvedAction = new ActionResolver().resolve(request);
assertThat(resolvedAction, instanceOf(MergeRequestBuildAction.class));
}
@Test
void postSystemHookPush() throws Exception {
String projectName = "postSystemHookPush";
jenkins.createFreeStyleProject(projectName);
when(request.getRestOfPath()).thenReturn(projectName);
when(request.getMethod()).thenReturn("POST");
when(request.getHeader("X-Gitlab-Event")).thenReturn("System Hook");
when(request.getInputStream())
.thenReturn(new ResourceServletInputStream("ActionResolverTest_postSystemHook_Push.json"));
WebHookAction resolvedAction = new ActionResolver().resolve(request);
assertThat(resolvedAction, instanceOf(PushBuildAction.class));
}
@Test
void postSystemHookPushTag() throws Exception {
String projectName = "postSystemHookPushTag";
jenkins.createFreeStyleProject(projectName);
when(request.getRestOfPath()).thenReturn(projectName);
when(request.getMethod()).thenReturn("POST");
when(request.getHeader("X-Gitlab-Event")).thenReturn("System Hook");
when(request.getInputStream())
.thenReturn(new ResourceServletInputStream("ActionResolverTest_postSystemHook_PushTag.json"));
WebHookAction resolvedAction = new ActionResolver().resolve(request);
assertThat(resolvedAction, instanceOf(PushBuildAction.class));
}
@Test
void postNote() throws Exception {
String projectName = "postNote";
jenkins.createFreeStyleProject(projectName);
when(request.getRestOfPath()).thenReturn(projectName);
when(request.getMethod()).thenReturn("POST");
when(request.getHeader("X-Gitlab-Event")).thenReturn("Note Hook");
when(request.getInputStream()).thenReturn(new ResourceServletInputStream("ActionResolverTest_postNote.json"));
WebHookAction resolvedAction = new ActionResolver().resolve(request);
assertThat(resolvedAction, instanceOf(NoteBuildAction.class));
}
@Test
void postPush() throws Exception {
String projectName = "postPush";
jenkins.createFreeStyleProject(projectName);
when(request.getRestOfPath()).thenReturn(projectName);
when(request.getMethod()).thenReturn("POST");
when(request.getHeader("X-Gitlab-Event")).thenReturn("Push Hook");
when(request.getInputStream()).thenReturn(new ResourceServletInputStream("ActionResolverTest_postPush.json"));
WebHookAction resolvedAction = new ActionResolver().resolve(request);
assertThat(resolvedAction, instanceOf(PushBuildAction.class));
}
@Test
void postPushTag() throws Exception {
String projectName = "postPushTag";
jenkins.createFreeStyleProject(projectName);
when(request.getRestOfPath()).thenReturn(projectName);
when(request.getMethod()).thenReturn("POST");
when(request.getHeader("X-Gitlab-Event")).thenReturn("Tag Push Hook");
when(request.getInputStream())
.thenReturn(new ResourceServletInputStream("ActionResolverTest_postPushTag.json"));
WebHookAction resolvedAction = new ActionResolver().resolve(request);
assertThat(resolvedAction, instanceOf(PushBuildAction.class));
}
@Test
void postPushMissingEventHeader() throws Exception {
String projectName = "postPushMissingEventHeader";
jenkins.createFreeStyleProject(projectName);
when(request.getRestOfPath()).thenReturn(projectName);
when(request.getMethod()).thenReturn("POST");
when(request.getHeader("X-Gitlab-Event")).thenReturn(null);
when(request.getInputStream()).thenReturn(new ResourceServletInputStream("ActionResolverTest_postPush.json"));
WebHookAction resolvedAction = new ActionResolver().resolve(request);
assertThat(resolvedAction, instanceOf(NoopAction.class));
}
@Test
void postPushUnsupportedEventHeader() throws Exception {
String projectName = "postPushUnsupportedEventHeader";
jenkins.createFreeStyleProject(projectName);
when(request.getRestOfPath()).thenReturn(projectName);
when(request.getMethod()).thenReturn("POST");
when(request.getHeader("X-Gitlab-Event")).thenReturn("__Not Supported Header__");
when(request.getInputStream()).thenReturn(new ResourceServletInputStream("ActionResolverTest_postPush.json"));
WebHookAction resolvedAction = new ActionResolver().resolve(request);
assertThat(resolvedAction, instanceOf(NoopAction.class));
}
private static class ResourceServletInputStream extends ServletInputStream {
private final InputStream input;
private ResourceServletInputStream(String classResourceName) {
this.input = getClass().getResourceAsStream(classResourceName);
}
@Override
public int read() throws IOException {
return input.read();
}
@Override
public boolean isReady() {
return true;
}
@Override
public boolean isFinished() {
return true;
}
@Override
public void setReadListener(ReadListener var1) {}
}
}