-
-
Notifications
You must be signed in to change notification settings - Fork 90
Expand file tree
/
Copy pathWebhookTest.java
More file actions
351 lines (266 loc) · 9.38 KB
/
WebhookTest.java
File metadata and controls
351 lines (266 loc) · 9.38 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
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
package jenkins.plugins.office365connector;
import java.util.Arrays;
import java.util.List;
import hudson.model.AbstractBuild;
import hudson.model.Job;
import hudson.model.Result;
import jenkins.model.Jenkins;
import jenkins.plugins.office365connector.model.FactDefinition;
import jenkins.plugins.office365connector.model.Macro;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.Mockito;
import org.powermock.core.classloader.annotations.PowerMockIgnore;
import org.powermock.core.classloader.annotations.PrepareForTest;
import org.powermock.modules.junit4.PowerMockRunner;
import static org.assertj.core.api.Assertions.assertThat;
import static org.mockito.Matchers.anyObject;
import static org.powermock.api.mockito.PowerMockito.mock;
import static org.powermock.api.mockito.PowerMockito.mockStatic;
import static org.powermock.api.mockito.PowerMockito.when;
/**
* @author Damian Szczepanik (damianszczepanik@github)
*/
@PowerMockIgnore("jdk.internal.reflect.*")
@RunWith(PowerMockRunner.class)
@PrepareForTest(Jenkins.class)
public class WebhookTest {
@Before
public void setUp() throws Exception {
Webhook.DescriptorImpl mockDescriptor = mock(Webhook.DescriptorImpl.class);
Jenkins jenkins = mock(Jenkins.class);
mockStatic(Jenkins.class);
Mockito.when(Jenkins.get()).thenReturn(jenkins);
Mockito.when(jenkins.getDescriptorOrDie(anyObject())).thenReturn(mockDescriptor);
}
@Test
public void getUrl_ReturnsUrl() {
// given
String url = "myUrl";
Webhook webhook = new Webhook(url);
// when
String actualUrl = webhook.getUrl();
// then
assertThat(actualUrl).isEqualTo(url);
}
@Test
public void getUrl_WithEmptyLocalUrlReturnsGlobalUrl() {
// given
String globalUrl = "globalUrl";
mockStatic(Jenkins.class);
Jenkins jenkins = mock(Jenkins.class);
Webhook.DescriptorImpl mockDescriptor = mock(Webhook.DescriptorImpl.class);
when(Jenkins.get()).thenReturn(jenkins);
when(mockDescriptor.getGlobalUrl()).thenReturn(globalUrl);
when(jenkins.getDescriptorOrDie(Webhook.class)).thenReturn(mockDescriptor);
Webhook webhook = new Webhook("");
// when
String actualUrl = webhook.getUrl();
// then
assertThat(actualUrl).isEqualTo(globalUrl);
}
@Test
public void getUrl_ReturnsLocalUrlAndNotGlobal() {
// given
String globalUrl = "globalUrl";
String localUrl = "localUrl";
mockStatic(Jenkins.class);
Jenkins jenkins = mock(Jenkins.class);
Webhook.DescriptorImpl mockDescriptor = mock(Webhook.DescriptorImpl.class);
when(Jenkins.get()).thenReturn(jenkins);
when(mockDescriptor.getUrl()).thenReturn(globalUrl);
when(jenkins.getDescriptorOrDie(Webhook.class)).thenReturn(mockDescriptor);
Webhook webhook = new Webhook(localUrl);
// when
String actualUrl = webhook.getUrl();
// then
assertThat(actualUrl).isEqualTo(localUrl);
}
@Test
public void getName_ReturnsName() {
// given
String name = "myName";
Webhook webhook = new Webhook("someUrl");
webhook.setName(name);
// when
String actualName = webhook.getName();
// then
assertThat(actualName).isEqualTo(name);
}
@Test
public void getName_WithEmptyLocalNameReturnsGlobalName() {
// given
String globalName = "globalName";
Webhook webhook = new Webhook("someUrl");
mockStatic(Jenkins.class);
Jenkins jenkins = mock(Jenkins.class);
Webhook.DescriptorImpl mockDescriptor = mock(Webhook.DescriptorImpl.class);
when(Jenkins.get()).thenReturn(jenkins);
when(mockDescriptor.getGlobalName()).thenReturn(globalName);
when(jenkins.getDescriptorOrDie(Webhook.class)).thenReturn(mockDescriptor);
// when
String actualName = webhook.getName();
// then
assertThat(actualName).isEqualTo(globalName);
}
@Test
public void getName_ReturnsLocalNameAndNotGlobal() {
// given
String localName = "myName";
Webhook webhook = new Webhook("someUrl");
webhook.setName(localName);
mockStatic(Jenkins.class);
Jenkins jenkins = mock(Jenkins.class);
Webhook.DescriptorImpl mockDescriptor = mock(Webhook.DescriptorImpl.class);
when(Jenkins.get()).thenReturn(jenkins);
when(mockDescriptor.getName()).thenReturn("globalName");
when(jenkins.getDescriptorOrDie(Webhook.class)).thenReturn(mockDescriptor);
// when
String actualName = webhook.getName();
// then
assertThat(actualName).isEqualTo(localName);
}
@Test
public void isNotifySuccess_CheckSuccessNotification() {
// given
Webhook webhook = new Webhook("someUrl");
webhook.setNotifySuccess(true);
// when
boolean result = webhook.isNotifySuccess();
// then
assertThat(result).isTrue();
}
@Test
public void isStartNotification_CheckStartNotification() {
// given
Webhook webhook = new Webhook("someUrl");
webhook.setStartNotification(true);
// when
boolean result = webhook.isStartNotification();
// then
assertThat(result).isTrue();
}
@Test
public void isNotifyAborted_CheckAbortedNotification() {
// given
Webhook webhook = new Webhook("someUrl");
webhook.setNotifyAborted(true);
// when
boolean result = webhook.isNotifyAborted();
// then
assertThat(result).isTrue();
}
@Test
public void isNotifyNotBuilt_CheckNotBuiltNotification() {
// given
Webhook webhook = new Webhook("someUrl");
webhook.setNotifyNotBuilt(true);
// when
boolean result = webhook.isNotifyNotBuilt();
// then
assertThat(result).isTrue();
}
@Test
public void isNotifyUnstable_CheckUnstableNotification() {
// given
Webhook webhook = new Webhook("someUrl");
webhook.setNotifyUnstable(true);
// when
boolean result = webhook.isNotifyUnstable();
// then
assertThat(result).isTrue();
}
@Test
public void isNotifyFailure_CheckFailureNotification() {
// given
Webhook webhook = new Webhook("someUrl");
webhook.setNotifyFailure(true);
// when
boolean result = webhook.isNotifyFailure();
// then
assertThat(result).isTrue();
}
@Test
public void isNotifyBackToNormal_CheckBackToNormalNotification() {
// given
Webhook webhook = new Webhook("someUrl");
webhook.setNotifyBackToNormal(true);
// when
boolean result = webhook.isNotifyBackToNormal();
// then
assertThat(result).isTrue();
}
@Test
public void isNotifyRepeatedFailure_CheckRepeatedFailureNotification() {
// given
Webhook webhook = new Webhook("someUrl");
webhook.setNotifyRepeatedFailure(true);
// when
boolean result = webhook.isNotifyRepeatedFailure();
// then
assertThat(result).isTrue();
}
@Test
public void getTimeout_ReturnsTimeout() {
// given
Webhook webhook = new Webhook("someUrl");
int timeout = 1234;
webhook.setTimeout(timeout);
// when
int actualTimeout = webhook.getTimeout();
// then
assertThat(actualTimeout).isEqualTo(timeout);
}
@Test
public void getTimeout_ReturnsDefaultTimeout() {
// given
Webhook webhook = new Webhook("someUrl");
// when
int actualTimeout = webhook.getTimeout();
// then
assertThat(actualTimeout).isEqualTo(Webhook.DEFAULT_TIMEOUT);
}
@Test
public void getMacros_ReturnsMacros() {
// given
Webhook webhook = new Webhook("someUrl");
Macro macro = new Macro("myTemplate", "yourValue");
webhook.setMacros(Arrays.asList(macro));
// when
List<Macro> macros = webhook.getMacros();
// then
assertThat(macros).hasSize(1).containsOnly(macro);
}
@Test
public void getMacros_ReturnEmptyList() {
// given
Webhook webhook = new Webhook("someUrl");
// when
List<Macro> macros = webhook.getMacros();
// then
assertThat(macros).isEmpty();
}
@Test
public void getFactDefinitions_ReturnsFactDefinitions() {
// given
Webhook webhook = new Webhook("someUrl");
FactDefinition factDefinition = new FactDefinition("name", "myTemplate");
webhook.setFactDefinitions(Arrays.asList(factDefinition));
// when
List<FactDefinition> returnedFactDefinitions = webhook.getFactDefinitions();
// then
assertThat(returnedFactDefinitions).containsOnly(factDefinition);
}
@Test
public void getFactDefinitions_OnNullValue_ReturnsEmptyFactDefinitions() {
// given
Webhook webhook = new Webhook("someUrl");
List<FactDefinition> factDefinition = null;
webhook.setFactDefinitions(factDefinition);
// when
List<FactDefinition> returnedFactDefinitions = webhook.getFactDefinitions();
// then
assertThat(returnedFactDefinitions).isEmpty();
}
}