aboutsummaryrefslogtreecommitdiffstats
path: root/tests/src/test/resources/org/aspectj/systemtest/ajc151/ataround.xml
blob: 5abb414a3ffd6606af585698f119b031804b0e90 (plain)
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
<!DOCTYPE suite SYSTEM "../tests/ajcTestSuite.dtd"[]>

<!-- AspectJ v1.5.1 Tests -->
<suite>
    
    
     <ajc-test dir="features151/ataround" title="code style - basic">
        <compile files="X1.java" options="-1.8"/>
        <run class="X1">
          <stderr>
             <line text="advice from code aspect"/>
             <line text="faked"/>
          </stderr>
        </run>
    </ajc-test>
    
    <ajc-test dir="features151/ataround" title="annotation style - basic - noinline">
        <compile files="A1.java" options="-1.8 -XnoInline"/>
        <run class="A1">
          <stderr>
             <line text="advice from ataj aspect"/>
             <line text="faked"/>
          </stderr>
        </run>
    </ajc-test>
    
    <ajc-test dir="features151/ataround" title="annotation style - basic">
        <compile files="A1.java" options="-1.8"/>
        <run class="A1">
          <stderr>
             <line text="advice from ataj aspect"/>
             <line text="faked"/>
          </stderr>
        </run>
    </ajc-test>
    
    
    
     
     <ajc-test dir="features151/ataround" title="code style - correct usage, binding and passing same target for call">
        <compile files="X4.java" options="-1.8"/>
        <run class="X4">
          <stderr>
             <line text="advice from code aspect"/>
             <line text="1faked"/>
          </stderr>
        </run>
     </ajc-test>
    
     <ajc-test dir="features151/ataround" title="annotation style - correct usage, binding and passing same target for call - noinline">
        <compile files="A4.java" options="-1.8 -XnoInline"/>
        <run class="A4">
          <stderr>
             <line text="advice from ataj aspect"/>
             <line text="1faked"/>
          </stderr>
        </run>
     </ajc-test>   
     
     <ajc-test dir="features151/ataround" title="annotation style - correct usage, binding and passing same target for call">
        <compile files="A4.java" options="-1.8"/>
        <run class="A4">
          <stderr>
             <line text="advice from ataj aspect"/>
             <line text="1faked"/>
          </stderr>
        </run>
     </ajc-test>   
     
     
     
     
     <ajc-test dir="features151/ataround" title="code style - correct usage, binding and passing new target for call">
        <compile files="X42.java" options="-1.8"/>
        <run class="X42">
          <stderr>
             <line text="advice from code aspect"/>
             <line text="2faked"/>
          </stderr>
        </run>
     </ajc-test>
    
     <ajc-test dir="features151/ataround" title="annotation style - correct usage, binding and passing new target for call - noinline">
        <compile files="A42.java" options="-1.8 -XnoInline"/>
        <run class="A42">
          <stderr>
             <line text="advice from ataj aspect"/>
             <line text="2faked"/>
          </stderr>
        </run>
     </ajc-test>   
     
     <ajc-test dir="features151/ataround" title="annotation style - correct usage, binding and passing new target for call">
        <compile files="A42.java" options="-1.8"/>
        <run class="A42">
          <stderr>
             <line text="advice from ataj aspect"/>
             <line text="2faked"/>
          </stderr>
        </run>
     </ajc-test>   
     
     
     
     
     
     <ajc-test dir="features151/ataround" title="code style - forget to pass target">
        <compile files="X2.java" options="-1.8">
          <message kind="error" line="7" text="too few arguments to proceed, expected 2"/>
        </compile>
     </ajc-test>
    
     <ajc-test dir="features151/ataround" title="annotation style - forget to pass target">
        <compile files="A2.java" options="-1.8">
          <message kind="error" line="7" text="too few arguments to proceed, expected 2"/>
        </compile>
     </ajc-test>
     
     
     
     
     <ajc-test dir="features151/ataround" title="code style - bind this on call - change on proceed - no effect">
        <compile files="X7.java" options="-1.8"/>
        <run class="X7">
          <stderr>
             <line text="advice from code aspect"/>
             <line text="1faked"/>
          </stderr>
        </run>
     </ajc-test>
     
     <ajc-test dir="features151/ataround" title="annotation style - bind this on call - change on proceed - no effect - noinline">
        <compile files="A7.java" options="-1.8 -XnoInline"/>
        <run class="A7">
          <stderr>
             <line text="advice from ataj aspect"/>
             <line text="1faked"/>
          </stderr>
        </run>
     </ajc-test>
     
     <ajc-test dir="features151/ataround" title="annotation style - bind this on call - change on proceed - no effect">
        <compile files="A7.java" options="-1.8"/>
        <run class="A7">
          <stderr>
             <line text="advice from ataj aspect"/>
             <line text="1faked"/>
          </stderr>
        </run>
     </ajc-test>
     
     
     
     <ajc-test dir="features151/ataround" title="code style - bind this on execution - change on proceed - works">
        <compile files="X8.java" options="-1.8"/>
        <run class="X8">
          <stderr>
             <line text="advice from code aspect"/>
             <line text="2faked"/>
          </stderr>
        </run>
     </ajc-test>
     
     <ajc-test dir="features151/ataround" title="annotation style - bind this on execution - change on proceed - works - noinline">
        <compile files="A8.java" options="-1.8 -XnoInline"/>
        <run class="A8">
          <stderr>
             <line text="advice from ataj aspect"/>
             <line text="2faked"/>
          </stderr>
        </run>
     </ajc-test>

     <ajc-test dir="features151/ataround" title="annotation style - bind this on execution - change on proceed - works">
        <compile files="A8.java" options="-1.8"/>
        <run class="A8">
          <stderr>
             <line text="advice from ataj aspect"/>
             <line text="2faked"/>
          </stderr>
        </run>
     </ajc-test>
     


 
     <ajc-test dir="features151/ataround" title="code style - incorrect arg types">
        <compile files="X3.java" options="-1.8">
          <message kind="error" line="7" text="Type mismatch: cannot convert from String to M"/>
          <message kind="error" line="7" text="Type mismatch: cannot convert from M to String"/>
        </compile>
     </ajc-test>
    
     <ajc-test dir="features151/ataround" title="annotation style - incorrect arg types">
        <compile files="A3.java" options="-1.8">
          <message kind="error" line="7" text="too few arguments to proceed, expected 2"/>
        </compile>
     </ajc-test>    
     
     
     

     <ajc-test dir="features151/ataround" title="code style - bind this and target on execution - change on proceed - works">
        <compile files="X9.java" options="-1.8"/>
        <run class="X9">
          <stderr>
             <line text="advice from code aspect"/>
             <line text="3faked"/>
          </stderr>
        </run>
     </ajc-test>
     
     <ajc-test dir="features151/ataround" title="annotation style - bind this and target on execution - change on proceed - works - noinline">
        <compile files="A9.java" options="-1.8 -XnoInline"/>
        <run class="A9">
          <stderr>
             <line text="advice from ataj aspect"/>
             <line text="3faked"/>
          </stderr>
        </run>
     </ajc-test> 
     
     <ajc-test dir="features151/ataround" title="annotation style - bind this and target on execution - change on proceed - works">
        <compile files="A9.java" options="-1.8"/>
        <run class="A9">
          <stderr>
             <line text="advice from ataj aspect"/>
             <line text="3faked"/>
          </stderr>
        </run>
     </ajc-test> 
     
     
     
     

     <ajc-test dir="features151/ataround" title="code style - bind this and target on call - change on proceed - works">
        <compile files="X10.java" options="-1.8"/>
        <run class="X10">
          <stderr>
             <line text="advice from code aspect"/>
             <line text="3faked"/>
          </stderr>
        </run>
     </ajc-test>     
     
     <ajc-test dir="features151/ataround" title="annotation style - bind this and target on call - change on proceed - works - noinline">
        <compile files="A10.java" options="-1.8"/>
        <run class="A10">
          <stderr>
             <line text="advice from ataj aspect"/>
             <line text="3faked"/>
          </stderr>
        </run>
     </ajc-test>     

     <ajc-test dir="features151/ataround" title="annotation style - bind this and target on call - change on proceed - works">
        <compile files="A10.java" options="-1.8"/>
        <run class="A10">
          <stderr>
             <line text="advice from ataj aspect"/>
             <line text="3faked"/>
          </stderr>
        </run>
     </ajc-test>     
     
     
     
     
     <ajc-test dir="features151/ataround" title="breaking it - one">
        <compile files="Break1.java" options="-1.8"/>
        <run class="Break1">
          <stderr>
             <line text="advice from ataj aspect"/>
             <line text="1faked"/>
          </stderr>
        </run>
     </ajc-test>     
     
     <ajc-test dir="features151/ataround" title="breaking it - two">
        <compile files="Break2.java" options="-1.8"/>
        <run class="Break2">
          <stderr>
             <line text="advice from ataj aspect"/>
             <line text="1faked"/>
          </stderr>
        </run>
     </ajc-test>     
     
     
     <ajc-test dir="features151/ataround" title="bug case one">
        <compile files="BugCase1.java" options="-1.8"/>
        <run class="BugCase1">
          <stderr>
             <line text="advice running"/>
             <line text="Setting age to 10"/>
          </stderr>
        </run>
     </ajc-test>     
    
     <ajc-test dir="features151/ataround" title="bug case two">
        <compile files="BugCase2.java" options="-1.8"/>
        <run class="BugCase2">
          <stderr>
             <line text="advice running"/>
             <line text="Setting age to 10"/>
          </stderr>
        </run>
     </ajc-test>     
     
     
     <ajc-test dir="features151/ataround" title="multiple args">
        <compile files="MultipleArgs.java" options="-1.8"/>
        <run class="MultipleArgs">
          <stderr>
             <line text="advice running"/>
             <line text="advice running"/>
             <line text="advice running"/>
          </stderr>
        </run>
     </ajc-test>     
    
   
     
     
     
     
     
     <ajc-test dir="features151/ataround" title="code style - changing target for call - reverse order">
        <compile files="X6.java" options="-1.8"/>
        <run class="X6">
          <stderr>
             <line text="advice from code aspect"/>
             <line text="2faked"/>
          </stderr>
        </run>
     </ajc-test>
    
     <ajc-test dir="features151/ataround" title="annotation style - changing target for call - reverse order">
        <compile files="A6.java" options="-1.8"/>
        <run class="A6">
          <stderr>
             <line text="advice from ataj aspect"/>
             <line text="2faked"/>
          </stderr>
        </run>
     </ajc-test>   
     
     
     
     
     






     <ajc-test dir="features151/ataround" title="code style - works with subset of arguments in advice">
        <compile files="X11.java" options="-1.8"/>
        <run class="X11">
          <stderr>
             <line text="advice from code aspect"/>
             <line text="3x_z"/>
          </stderr>
        </run>
     </ajc-test>
     
      <ajc-test dir="features151/ataround" title="annotation style - works with subset of arguments in advice">
        <compile files="A11.java" options="-1.8"/>
        <run class="A11">
          <stderr>
             <line text="advice from code aspect"/>
             <line text="3x_z"/>
          </stderr>
        </run>
     </ajc-test>

</suite>