-
Notifications
You must be signed in to change notification settings - Fork 402
Expand file tree
/
Copy pathTestInterceptingGCL.groovy
More file actions
388 lines (355 loc) · 17 KB
/
TestInterceptingGCL.groovy
File metadata and controls
388 lines (355 loc) · 17 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
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
package com.lesfurets.jenkins
import com.lesfurets.jenkins.unit.BasePipelineTest
import org.junit.Before
import org.junit.Ignore
import org.junit.Test
import static com.lesfurets.jenkins.unit.global.lib.LibraryConfiguration.library
import static com.lesfurets.jenkins.unit.global.lib.ProjectSource.projectSource
class TestInterceptingGCL extends BasePipelineTest {
@Override
@Before
void setUp() throws Exception {
scriptRoots += 'src/test/jenkins'
super.setUp()
addEnvVar("FOO","bar")
}
String sharedLibVars = this.class
.getResource('/libs/test_cross_vars_usage')
.getFile()
String sharedLibCls = this.class
.getResource('/libs/test_cross_class_usage')
.getFile()
/**
* 1. Load library dynamically, set implicit=true
* 2. Call vars/methodAB.groovy
* should be able to call vars/methodA.groovy and
* vars/methodB.groovy
*/
@Test
void test_vars_interop_library_loaded_with_implicit() throws Exception {
def library = library().name('test_cross_vars_uno')
.defaultVersion("alpha")
.allowOverride(false)
.implicit(true)
.targetPath(sharedLibVars)
.retriever(projectSource(sharedLibVars))
.build()
helper.registerSharedLibrary(library)
runScript('job/library/cross_vars/test_implicit.jenkins')
printCallStack()
assertCallStack().contains("""test_implicit.methodAB()""")
assertCallStack().contains("""methodAB.methodA()""")
assertCallStack().contains("""methodA.echo(I'm A)""")
assertCallStack().contains("""methodAB.methodB()""")
assertCallStack().contains("""methodB.echo(I'm B)""")
}
/**
* 1. Load library dynamically, without implicit
* 2. Call vars/methodAB.groovy
* should be able to call vars/methodA.groovy and
* vars/methodB.groovy
*/
@Test
void test_vars_interop_no_implicit_dynamic() throws Exception {
def library = library().name('test_cross_vars_dos')
.defaultVersion("beta")
.allowOverride(false)
.implicit(false)
.targetPath(sharedLibVars)
.retriever(projectSource(sharedLibVars))
.build()
helper.registerSharedLibrary(library)
runScript('job/library/cross_vars/test_dynamic.jenkins')
printCallStack()
assertCallStack().contains("""test_dynamic.methodAB()""")
assertCallStack().contains("""methodAB.methodA()""")
assertCallStack().contains("""methodA.echo(I'm A)""")
assertCallStack().contains("""methodAB.methodB()""")
assertCallStack().contains("""methodB.echo(I'm B)""")
}
/**
* 1. Load library using @Library annotation, without implicit
* 2. Call vars/methodAB.groovy
* should be able to call vars/methodA.groovy and
* vars/methodB.groovy
*/
@Test
void test_vars_interop_no_implicit_annotation() throws Exception {
def library = library().name('test_cross_vars_tres')
.defaultVersion("gamma")
.allowOverride(false)
.implicit(false)
.targetPath(sharedLibVars)
.retriever(projectSource(sharedLibVars))
.build()
helper.registerSharedLibrary(library)
runScript('job/library/cross_vars/test_annotation.jenkins')
printCallStack()
assertCallStack().contains("""test_annotation.methodAB()""")
assertCallStack().contains("""methodAB.methodA()""")
assertCallStack().contains("""methodA.echo(I'm A)""")
assertCallStack().contains("""methodAB.methodB()""")
assertCallStack().contains("""methodB.echo(I'm B)""")
}
/**
* 1. Load library dynamically, without implicit
* 2. Create an instance of a library class
* 3. The library class method should be able to call pipeline methods
* e.g. someMethod() {sh "whoami"}
*/
@Test
void test_lib_call_shell_no_implicit_dynamic() throws Exception {
def library = library().name('test_lib_call_shell_uno')
.defaultVersion("alpha")
.allowOverride(false)
.implicit(false)
.targetPath(sharedLibVars)
.retriever(projectSource(sharedLibVars))
.build()
helper.registerSharedLibrary(library)
runScript('job/library/test_lib_call_shell_dynamic.jenkins')
printCallStack()
assertCallStack().contains("""LaClass.sh(echo 'run ls -la with bash')""")
}
/**
* 1. Load library using @library annotation, without implicit
* 2. Create an instance of a library class
* 3. The library class method should be able to call pipeline methods
* e.g. someMethod() {sh "whoami"}
*/
@Test
void test_lib_call_shell_no_implicit_annotation() throws Exception {
def library = library().name('test_lib_call_shell_dos')
.defaultVersion("beta")
.allowOverride(false)
.implicit(false)
.targetPath(sharedLibVars)
.retriever(projectSource(sharedLibVars))
.build()
helper.registerSharedLibrary(library)
runScript('job/library/test_lib_call_shell_annotation.jenkins')
printCallStack()
assertCallStack().contains("""LaClass.sh(echo 'run ls -la with bash')""")
}
/**
* 1. Load library dynamically, set implicit=true
* 2. Create instances of a library class
* 3. Make sure that within a class method you can create an object of another class
* 4. Make sure you can call methods of such objects
* 5. Make sure interception of missing methods of pipeline works properly
*/
@Test
@Ignore("Cross class interoperability with @Library annotation is not supported")
void test_cross_class_interop_library_loaded_with_implicit() throws Exception {
def library = library().name('test_cross_class_uno')
.defaultVersion("alpha")
.allowOverride(false)
.implicit(true)
.targetPath(sharedLibCls)
.retriever(projectSource(sharedLibCls))
.build()
helper.registerSharedLibrary(library)
runScript('job/library/cross_class/test_implicit.jenkins')
printCallStack()
assertCallStack().contains("""ClassAB.methodAB()""")
assertCallStack().contains("""ClassA.methodA()""")
assertCallStack().contains("""ClassA.sh(echo 'ClassA: I'm field of A')""")
assertCallStack().contains("""ClassB.methodB()""")
assertCallStack().contains("""ClassB.sh(echo 'ClassB: I'm field of B')""")
}
/**
* 1. Load library dynamically, without implicit
* 2. Create instance of a library class
* 3. Make sure that within a class method you can create an object of another library class
* 4. Make sure you can call methods of such objects
* 5. Make sure interception of pipeline methods works properly
*/
@Test
@Ignore("Cross class interoperability with @Library annotation is not supported")
void test_cross_class_interop_no_implicit_dynamic() throws Exception {
def library = library().name('test_cross_class_dos')
.defaultVersion("beta")
.allowOverride(false)
.implicit(false)
.targetPath(sharedLibCls)
.retriever(projectSource(sharedLibCls))
.build()
helper.registerSharedLibrary(library)
runScript('job/library/cross_class/test_dynamic.jenkins')
printCallStack()
assertCallStack().contains("""ClassA.methodA()""")
assertCallStack().contains("""ClassA.sh(echo 'ClassA: I'm field of A')""")
assertCallStack().contains("""ClassB.methodB()""")
assertCallStack().contains("""ClassB.sh(echo 'ClassB: I'm field of B')""")
}
/**
* 1. Load library by annotation, without implicit
* 2. Create instances of library class
* 3. Make sure that within a class method you can create an object of another class
* 4. Make sure you can call methods of such objects
* 5. Make sure interception of pipeline methods works properly
*/
@Test
@Ignore("Cross class interoperability with @Library annotation is not supported")
void test_cross_class_interop_no_implicit_annotation() throws Exception {
def library = library().name('test_cross_class_tres')
.defaultVersion("gamma")
.allowOverride(false)
.implicit(false)
.targetPath(sharedLibCls)
.retriever(projectSource(sharedLibCls))
.build()
helper.registerSharedLibrary(library)
runScript('job/library/cross_class/test_annotation.jenkins')
printCallStack()
assertCallStack().contains("""ClassA.methodA()""")
assertCallStack().contains("""ClassA.sh(echo 'ClassA: I'm field of A')""")
assertCallStack().contains("""ClassB.methodB()""")
assertCallStack().contains("""ClassB.sh(echo 'ClassB: I'm field of B')""")
}
/**
* 1. Load library dynamically, set implicit=true
* 2. Create instances of all library classes
* 3. Make sure that within a class method you can create an object of another class
* 4. Make sure you can call methods of such objects
* 5. Make sure interception of missing methods of pipeline works properly
*/
@Test
@Ignore("Cross class interoperability with @Library annotation is not supported")
void test_pre_loaded_cross_class_interop_library_loaded_with_implicit() throws Exception {
def library = library().name('test_pre_loaded_cross_class_uno')
.defaultVersion("alpha")
.allowOverride(false)
.implicit(true)
.targetPath(sharedLibCls)
.retriever(projectSource(sharedLibCls))
.build()
helper.registerSharedLibrary(library)
runScript('job/library/cross_class_pre_loaded/test_implicit.jenkins')
printCallStack()
assertCallStack().contains("""ClassAB.methodAB()""")
assertCallStack().contains("""ClassA.methodA()""")
assertCallStack().contains("""ClassA.sh(echo 'ClassA: I'm field of A')""")
assertCallStack().contains("""ClassB.methodB()""")
assertCallStack().contains("""ClassB.sh(echo 'ClassB: I'm field of B')""")
}
/**
* 1. Load library dynamically, without implicit
* 2. Create instance of all library classes
* 3. Make sure that within a class method you can create an object of another library class
* 4. Make sure you can call methods of such objects
* 5. Make sure interception of pipeline methods works properly
*/
@Test
@Ignore("Cross class interoperability with @Library annotation is not supported")
void test_pre_loaded_cross_class_interop_no_implicit_dynamic() throws Exception {
def library = library().name('test_pre_loaded_cross_class_dos')
.defaultVersion("beta")
.allowOverride(false)
.implicit(false)
.targetPath(sharedLibCls)
.retriever(projectSource(sharedLibCls))
.build()
helper.registerSharedLibrary(library)
runScript('job/library/cross_class_pre_loaded/test_dynamic.jenkins')
printCallStack()
assertCallStack().contains("""ClassA.methodA()""")
assertCallStack().contains("""ClassA.sh(echo 'ClassA: I'm field of A')""")
assertCallStack().contains("""ClassB.methodB()""")
assertCallStack().contains("""ClassB.sh(echo 'ClassB: I'm field of B')""")
}
/**
* 1. Load library by annotation, without implicit
* 2. Create instances of library classes
* 3. Make sure that within a class method you can create an object of another class
* 4. Make sure you can call methods of such objects
* 5. Make sure interception of pipeline methods works properly
*/
@Test
@Ignore("Cross class interoperability with @Library annotation is not supported")
void test_pre_loaded_cross_class_interop_no_implicit_annotation() throws Exception {
def library = library().name('test_pre_loaded_cross_class_tres')
.defaultVersion("gamma")
.allowOverride(false)
.implicit(false)
.targetPath(sharedLibCls)
.retriever(projectSource(sharedLibCls))
.build()
helper.registerSharedLibrary(library)
runScript('job/library/cross_class_pre_loaded/test_annotation.jenkins')
printCallStack()
assertCallStack().contains("""ClassA.methodA()""")
assertCallStack().contains("""ClassA.sh(echo 'ClassA: I'm field of A')""")
assertCallStack().contains("""ClassB.methodB()""")
assertCallStack().contains("""ClassB.sh(echo 'ClassB: I'm field of B')""")
}
/**
* 1. Load library dynamically, set implicit=true
* 2. Create instances of library classes passing there the reference to the script object
* 3. Make sure that within a class method you can create an object of another class
* 4. Make sure you can call methods of such objects
* 5. Make sure interception of missing methods of pipeline works properly
*/
@Test
void test_cross_class_with_pipeline_ref_interop_library_loaded_with_implicit() throws Exception {
def library = library().name('test_cross_class_with_pipeline_ref_uno')
.defaultVersion("alpha")
.allowOverride(false)
.implicit(true)
.targetPath(sharedLibCls)
.retriever(projectSource(sharedLibCls))
.build()
helper.registerSharedLibrary(library)
runScript('job/library/cross_class_with_pipeline_ref/test_implicit.jenkins')
printCallStack()
assertCallStack().contains("""ClassAB.methodAB()""")
assertCallStack().contains("""test_implicit.sh(echo 'ClassA: I'm field of A')""")
assertCallStack().contains("""test_implicit.sh(echo 'ClassB: I'm field of B')""")
}
/**
* 1. Load library dynamically, without implicit
* 2. Create instances of library classes passing there the reference to the script object
* 3. Make sure that within a class method you can create an object of another library class
* 4. Make sure you can call methods of such objects
* 5. Make sure interception of pipeline methods works properly
*/
@Test
void test_cross_class_with_pipeline_ref_interop_no_implicit_dynamic() throws Exception {
def library = library().name('test_cross_class_with_pipeline_ref_dos')
.defaultVersion("beta")
.allowOverride(false)
.implicit(false)
.targetPath(sharedLibCls)
.retriever(projectSource(sharedLibCls))
.build()
helper.registerSharedLibrary(library)
runScript('job/library/cross_class_with_pipeline_ref/test_dynamic.jenkins')
printCallStack()
assertCallStack().contains("""ClassAB.methodAB()""")
assertCallStack().contains("""test_dynamic.sh(echo 'ClassA: I'm field of A')""")
assertCallStack().contains("""test_dynamic.sh(echo 'ClassB: I'm field of B')""")
}
/**
* 1. Load library by annotation, without implicit
* 2. Create instances of library classes passing there the reference to the script object
* 3. Make sure that within a class method you can create an object of another class
* 4. Make sure you can call methods of such objects
* 5. Make sure interception of pipeline methods works properly
*/
@Test
void test_cross_class_with_pipeline_ref_interop_no_implicit_annotation() throws Exception {
def library = library().name('test_cross_class_with_pipeline_ref_tres')
.defaultVersion("gamma")
.allowOverride(false)
.implicit(false)
.targetPath(sharedLibCls)
.retriever(projectSource(sharedLibCls))
.build()
helper.registerSharedLibrary(library)
runScript('job/library/cross_class_with_pipeline_ref/test_annotation.jenkins')
printCallStack()
assertCallStack().contains("""ClassAB.methodAB()""")
assertCallStack().contains("""test_annotation.sh(echo 'ClassA: I'm field of A')""")
assertCallStack().contains("""test_annotation.sh(echo 'ClassB: I'm field of B')""")
}
}