aboutsummaryrefslogtreecommitdiffstats
path: root/yolean/src/test/java/com/yahoo/yolean/chain/ChainBuilderTest.java
blob: 70bb0ab1397f85580c002b5e9b1c62acec47bcff (plain) (blame)
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
389
390
391
392
393
394
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.yolean.chain;

import org.junit.Test;

import java.util.ArrayList;
import java.util.List;

import static com.yahoo.yolean.chain.Dependencies.after;
import static com.yahoo.yolean.chain.Dependencies.before;
import static com.yahoo.yolean.chain.Dependencies.provides;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.collection.IsIterableContainingInOrder.contains;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;

/**
 * @author Tony Vaagenes
 * @author gjoranv
 */
public class ChainBuilderTest {

    static class Filter {

    }

    static class FilterA extends Filter {

    }

    static class FilterB extends Filter {

    }

    static class FilterExtendsA extends FilterA {

    }

    static class FilterExtendsB extends FilterB {

    }

    @Provides("A")
    static class ProvidesA extends Filter {

    }

    @Provides("B")
    static class ProvidesB extends Filter {

    }

    @Before("A")
    static class BeforeA extends Filter {

    }

    @After("A")
    static class AfterA extends Filter {

    }

    @Before("*")
    @Provides("BeforeAll")
    static class BeforeAll extends Filter {

    }

    @After("*")
    @Provides("AfterAll")
    static class AfterAll extends Filter {

    }

    @Before({ "BeforeAll", "*" })
    static class BeforeBeforeAll extends Filter {

    }

    @After({ "AfterAll", "*" })
    static class AfterAfterAll extends Filter {

    }

    static class ExtendsProvidesA extends ProvidesA {

    }

    @Provides("ExtendsA")
    static class ProvidesA_and_ProvidesExtendsA extends ProvidesA {

    }

    @Before("B")
    static class BeforeA_and_BeforeB extends BeforeA {

    }

    @Test
    public void build_empty_chain() {
        Chain<Filter> chain = getChain().build();
        assertTrue(chain.isEmpty());
        assertEquals("myChain", chain.id());
    }

    @Test
    public void filters_without_dependencies_are_not_reordered() {
        List<Filter> filters = new ArrayList<>();

        ChainBuilder<Filter> chain = new ChainBuilder<>("myChain");
        for (int i = 0; i < 10; ++i) {
            Filter filter = new Filter();
            filters.add(filter);
            chain.add(filter);
        }

        assertThat(chain.build(), contains(filters.toArray()));
    }

    @Test(expected = ChainCycleException.class)
    public void cycles_are_detected() {
        Filter a = new Filter();
        Filter b = new Filter();

        getChain().add(b, before(a)).add(a, before(b)).build();
    }

    @Test(expected = IllegalArgumentException.class)
    public void adding_same_instance_twice_is_illegal() {
        Filter a = new Filter();

        getChain().add(a).add(a).build();
    }

    @Test
    public void before_instance() {
        Filter a = new Filter();
        Filter b = new Filter();

        Chain<Filter> chain = getChain().
                add(b).add(a, before(b)).build();

        assertEquals(new Chain<>("myChain", a, b), chain);
    }

    @Test
    public void after_instance() {
        Filter a = new Filter();
        Filter b = new Filter();

        Chain<Filter> chain = getChain().
                add(b, after(a)).add(a).build();

        assertEquals(new Chain<>("myChain", a, b), chain);
    }

    @Test
    public void before_class() {
        Filter a = new FilterA();
        Filter b = new FilterB();

        Chain<Filter> chain = getChain().
                add(b).add(a, before(b.getClass())).build();

        assertEquals(new Chain<>("myChain", a, b), chain);
    }

    @Test
    public void after_class() {
        Filter a = new FilterA();
        Filter b = new FilterB();

        Chain<Filter> chain = getChain().
                add(b, after(a.getClass())).add(a).build();

        assertEquals(new Chain<>("myChain", a, b), chain);
    }

    @Test
    public void before_subclass() {
        Filter a = new FilterA();
        Filter b = new FilterExtendsB();

        Chain<Filter> chain = getChain().
                add(b).add(a, before(FilterB.class)).build();

        assertEquals(new Chain<>("myChain", a, b), chain);
    }

    @Test
    public void after_subclass() {
        Filter a = new FilterExtendsA();
        Filter b = new FilterB();

        Chain<Filter> chain = getChain().
                add(b, after(FilterA.class)).add(a).build();

        assertEquals(new Chain<>("myChain", a, b), chain);
    }

    @Test
    public void before_provided_name() {
        Filter a = new Filter();
        Filter b = new Filter();

        Chain<Filter> chain = getChain().
                add(b, provides("B")).add(a, before("B")).build();

        assertEquals(new Chain<>("myChain", a, b), chain);
    }

    @Test
    public void after_provided_name() {
        Filter a = new Filter();
        Filter b = new Filter();

        Chain<Filter> chain = getChain().
                add(b, after("A")).add(a, provides("A")).build();

        assertEquals(new Chain<>("myChain", a, b), chain);
    }

    @Test
    public void before_provided_name_in_annotations() {
        Filter providesA = new ProvidesA();
        Filter beforeA = new BeforeA();

        Chain<Filter> chain = getChain().
                add(providesA).add(beforeA).build();

        assertEquals(new Chain<>("myChain", beforeA, providesA), chain);
    }

    @Test
    public void after_provided_name_in_annotations() {
        Filter providesA = new ProvidesA();
        Filter afterA = new AfterA();

        Chain<Filter> chain = getChain().
                add(afterA).add(providesA).build();

        assertEquals(new Chain<>("myChain", providesA, afterA), chain);
    }

    @Test
    public void before_all() {
        Filter a = new Filter();
        Filter b = new Filter();

        Chain<Filter> chain = getChain().
                add(b).add(a, before("*")).build();

        assertEquals(new Chain<>("myChain", a, b), chain);
    }

    @Test
    public void after_all() {
        Filter a = new Filter();
        Filter b = new Filter();

        Chain<Filter> chain = getChain().
                add(b, after("*")).add(a).build();

        assertEquals(new Chain<>("myChain", a, b), chain);
    }

    @Test
    public void before_all_annotation() {
        Filter a = new Filter();
        Filter beforeAll = new BeforeAll();

        Chain<Filter> chain = getChain().
                add(a).add(beforeAll).build();

        assertEquals(new Chain<>("myChain", beforeAll, a), chain);
    }

    @Test
    public void after_all_annotation() {
        Filter a = new Filter();
        Filter afterAll = new AfterAll();

        Chain<Filter> chain = getChain().
                add(afterAll).add(a).build();

        assertEquals(new Chain<>("myChain", a, afterAll), chain);
    }

    @Test
    public void before_all_annotated_component_can_be_before_another_component_that_is_also_before_all_annotated() {
        Filter beforeAll = new BeforeAll();
        Filter beforeBeforeAll = new BeforeBeforeAll();

        Chain<Filter> chain = getChain().
                add(beforeAll).add(beforeBeforeAll).build();

        assertEquals(new Chain<>("myChain", beforeBeforeAll, beforeAll), chain);
    }

    @Test
    public void after_all_annotated_component_can_be_after_another_component_that_is_also_after_all_annotated() {
        Filter afterAll = new AfterAll();
        Filter afterAfterAll = new AfterAfterAll();

        Chain<Filter> chain = getChain().
                add(afterAfterAll).add(afterAll).build();

        assertEquals(new Chain<>("myChain", afterAll, afterAfterAll), chain);
    }

    @Test
    public void component_that_is_not_annotated_can_be_before_a_before_all_annotated_component() {
        Filter first = new Filter();
        Filter beforeAll = new BeforeAll();

        Chain<Filter> chain = getChain().
                add(beforeAll).add(first, before("BeforeAll")).build();

        assertEquals(new Chain<>("myChain", first, beforeAll), chain);
    }

    @Test
    public void component_that_is_not_annotated_can_be_after_an_after_all_annotated_component() {
        Filter last = new Filter();
        Filter afterAll = new AfterAll();

        Chain<Filter> chain = getChain().
                add(last, after("AfterAll")).add(afterAll).build();

        assertEquals(new Chain<>("myChain", afterAll, last), chain);
    }

    @Test
    public void class_name_is_always_provided() {
        Filter a = new FilterA();
        Filter b = new FilterB();

        Chain<Filter> chain = getChain().
                add(b, after(a.getClass().getName())).add(a).build();

        assertEquals(new Chain<>("myChain", a, b), chain);
    }

    @Test
    public void provides_annotation_on_superclass_is_inherited_by_subclasses() {
        Filter extendsA = new ExtendsProvidesA();
        Filter first = new FilterA();
        Filter last = new FilterB();

        Chain<Filter> chain = getChain().
                add(last, after("A")).add(first, before("A")).add(extendsA).build();

        assertEquals(new Chain<>("myChain", first, extendsA, last), chain);
    }

    @Test
    public void provides_annotation_on_superclass_is_inherited_by_a_subclass_that_has_its_own_provides_annotation() {
        Filter extendsA = new ProvidesA_and_ProvidesExtendsA();
        Filter first = new FilterA();
        Filter last = new FilterB();

        Chain<Filter> chain = getChain().
                add(last, after("A")).add(first, before("ExtendsA")).add(extendsA).build();

        assertEquals(new Chain<>("myChain", first, extendsA, last), chain);
    }

    @Test
    public void before_annotation_on_superclass_is_inherited_by_a_subclass_that_has_its_own_before_annotation() {
        Filter beforeA_and_beforeB = new BeforeA_and_BeforeB();
        Filter A = new ProvidesA();
        Filter B = new ProvidesB();

        Chain<Filter> chain = getChain().
                add(A, before("*")).add(beforeA_and_beforeB).add(B).build();
        assertEquals(new Chain<>("myChain", beforeA_and_beforeB, A, B), chain);
    }

    @Test
    public void add_accepts_multiple_dependencies() {
        Filter a = new Filter();
        Filter b = new Filter();
        Filter c = new Filter();

        Chain<Filter> chain = getChain().
                add(a).add(c).add(b, after(a), before(c)).build();

        assertEquals(new Chain<>("myChain", a, b, c), chain);
    }

    private ChainBuilder<Filter> getChain() {
        return new ChainBuilder<>("myChain");
    }
}