-
Notifications
You must be signed in to change notification settings - Fork 519
Expand file tree
/
Copy pathRewriteTestTest.java
More file actions
442 lines (373 loc) · 13.5 KB
/
RewriteTestTest.java
File metadata and controls
442 lines (373 loc) · 13.5 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
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
/*
* Copyright 2022 the original author or authors.
* <p>
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* <p>
* https://www.apache.org/licenses/LICENSE-2.0
* <p>
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.openrewrite.test.internal;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.Value;
import org.jspecify.annotations.NullMarked;
import org.jspecify.annotations.Nullable;
import org.junit.jupiter.api.Test;
import org.openrewrite.*;
import org.openrewrite.test.RewriteTest;
import org.openrewrite.test.SourceSpecs;
import org.openrewrite.test.TypeValidation;
import org.openrewrite.text.PlainText;
import org.openrewrite.text.PlainTextVisitor;
import java.nio.file.Path;
import java.util.Collection;
import java.util.List;
import java.util.concurrent.atomic.AtomicBoolean;
import static java.util.Collections.emptyList;
import static org.assertj.core.api.Assertions.assertThat;
import static org.junit.jupiter.api.Assertions.assertThrows;
import static org.openrewrite.test.SourceSpecs.text;
@SuppressWarnings("UnnecessarySemicolon")
class RewriteTestTest implements RewriteTest {
@Test
void rejectRecipeWithNameOption() {
assertThrows(AssertionError.class, () -> rewriteRun(
spec -> spec.recipe(new RecipeWithNameOption("test")),
text(
"hello world!"
)
));
}
@Test
void acceptsRecipeWithDescriptionListOfLinks() {
validateRecipeNameAndDescription(new RecipeWithDescriptionListOfLinks());
}
@Test
void acceptsRecipeWithDescriptionListOfDescribedLinks() {
validateRecipeNameAndDescription(new RecipeWithDescriptionListOfDescribedLinks());
}
@Test
void rejectsRecipeWithDescriptionNotEndingWithPeriod() {
assertThrows(
AssertionError.class,
() -> validateRecipeNameAndDescription(new RecipeWithDescriptionNotEndingWithPeriod())
);
}
@Test
void verifyAll() {
assertThrows(AssertionError.class, this::assertRecipesConfigure);
}
@Test
void multipleFilesWithSamePath() {
AssertionError e = assertThrows(AssertionError.class,
() -> rewriteRun(
spec -> spec.recipe(new CreatesTwoFilesSamePath()),
text(null, "duplicate", spec -> spec.path("duplicate.txt"))));
assertThat(e).hasStackTraceContaining("Recipe generated multiple source files at the same path");
}
@Test
void generatesFileCollidingWithExistingFile() {
AssertionError e = assertThrows(AssertionError.class,
() -> rewriteRun(
spec -> spec.recipe(new GeneratesExistingFile()),
text("existing content", spec -> spec.path("existing.txt"))));
assertThat(e).hasStackTraceContaining("Recipe generated a source file that already exists in the source set");
}
@Test
void cursorValidation() {
assertThrows(AssertionError.class, () ->
rewriteRun(
spec -> spec.recipe(new ImproperCursorUsage()),
text("")
)
);
rewriteRun(
spec -> spec.recipe(new ImproperCursorUsage()).typeValidationOptions(TypeValidation.builder()
.cursorAcyclic(false)
.build()),
text("")
);
}
@Test
void rejectRecipeValidationFailure() {
assertThrows(AssertionError.class, () ->
rewriteRun(
spec -> spec.recipeFromYaml("""
type: specs.openrewrite.org/v1beta/recipe
name: org.openrewrite.RefersToNonExistentRecipe
displayName: Refers to non-existent recipe
description: Deliberately has a non-existent recipe in its recipe list to trigger a validation failure.
recipeList:
- org.openrewrite.DoesNotExist
""", "org.openrewrite.RefersToNonExistentRecipe")
));
}
@Test
void rejectExecutionContextMutation() {
assertThrows(AssertionError.class, () ->
rewriteRun(
spec -> spec.recipe(new MutateExecutionContext()),
text("irrelevant")
));
}
@Test
void rejectScannerEdit() {
assertThrows(AssertionError.class, () -> rewriteRun(
spec -> spec.recipe(new ScannerEdit()),
text("foo")
));
}
@Test
void allowScannerEdit() {
rewriteRun(
spec -> spec
.typeValidationOptions(TypeValidation.builder().immutableScanning(false).build())
.recipe(new ScannerEdit()),
text("foo")
);
}
@Test
void rejectUnconfiguredRecipeWithOptionalOrValidation() {
// A recipe with optional params and validate() requiring at least one
// fails when loaded with no arguments and default validation is enabled
assertThrows(AssertionError.class, () ->
rewriteRun(
spec -> spec.recipe(new RecipeWithOptionalOrValidation(null, null)),
new SourceSpecs[0]
));
}
@Test
void acceptUnconfiguredRecipeWithOptionalOrValidationWhenSkipped() {
// The same recipe succeeds when validation is disabled, as
// assertRecipesConfigure() does for imperative recipes
rewriteRun(
spec -> spec
.recipe(new RecipeWithOptionalOrValidation(null, null))
.validateRecipe(false),
new SourceSpecs[0]
);
}
@Test
void rejectConfiguredRecipeWithOptionalOrValidationStillValidated() {
// When the recipe IS configured (e.g. from YAML), validation should
// still catch real problems like referring to non-existent sub-recipes
assertThrows(AssertionError.class, () ->
rewriteRun(
spec -> spec.recipeFromYaml("""
type: specs.openrewrite.org/v1beta/recipe
name: org.openrewrite.test.internal.StillValidated
displayName: Still validated
description: Declarative recipe with a non-existent sub-recipe should still fail validation.
recipeList:
- org.openrewrite.DoesNotExist
""", "org.openrewrite.test.internal.StillValidated")
));
}
}
@EqualsAndHashCode(callSuper = false)
@NullMarked
@Value
class ScannerEdit extends ScanningRecipe<AtomicBoolean> {
String displayName = "Attempts mutation during getScanner()";
String description = "Any changes attempted by a visitor returned from getScanner() should be an error during test execution.";
@Override
public AtomicBoolean getInitialValue(ExecutionContext ctx) {
return new AtomicBoolean();
}
@Override
public TreeVisitor<?, ExecutionContext> getScanner(AtomicBoolean acc) {
return new PlainTextVisitor<>() {
@Override
public PlainText visitText(PlainText text, ExecutionContext ctx) {
return text.withText("mutated");
}
};
}
}
@EqualsAndHashCode(callSuper = false)
@NullMarked
@Value
class MutateExecutionContext extends Recipe {
String displayName = "Mutate execution context";
String description = "Mutates the execution context to trigger a validation failure.";
@Override
public TreeVisitor<?, ExecutionContext> getVisitor() {
return new TreeVisitor<>() {
@Override
public @Nullable Tree visit(@Nullable Tree tree, ExecutionContext ctx) {
ctx.putMessage("mutated", true);
return tree;
}
};
}
}
@EqualsAndHashCode(callSuper = false)
@NullMarked
@Value
class ImproperCursorUsage extends Recipe {
String displayName = "Uses cursor improperly";
String description = "LST elements are acyclic. So a cursor which indicates an element is its own parent is invalid.";
@Override
public TreeVisitor<?, ExecutionContext> getVisitor() {
//noinspection NullableProblems
return new TreeVisitor<>() {
@Override
public @Nullable Tree visit(Tree tree, ExecutionContext ctx) {
return new TreeVisitor<>() {
}.visit(tree, ctx, new Cursor(getCursor(), tree));
}
};
}
}
@EqualsAndHashCode(callSuper = false)
@NullMarked
@Value
class CreatesTwoFilesSamePath extends ScanningRecipe<AtomicBoolean> {
String displayName = "Creates two source files with the same path";
String description = "A source file's path must be unique. " +
"This recipe creates two source files with the same path to show that the test framework helps protect against this mistake.";
@Override
public AtomicBoolean getInitialValue(ExecutionContext ctx) {
return new AtomicBoolean(false);
}
@Override
public TreeVisitor<?, ExecutionContext> getScanner(AtomicBoolean alreadyExists) {
return new TreeVisitor<>() {
@Override
public @Nullable Tree visit(@Nullable Tree tree, ExecutionContext ctx) {
if (tree instanceof SourceFile s) {
if ("duplicate.txt".equals(s.getSourcePath().toString())) {
alreadyExists.set(true);
}
}
return tree;
}
};
}
@Override
public Collection<? extends SourceFile> generate(AtomicBoolean alreadyExists, ExecutionContext ctx) {
if (alreadyExists.get()) {
return emptyList();
}
Path duplicatePath = Path.of("duplicate.txt");
return List.of(PlainText.builder()
.text("duplicate")
.sourcePath(duplicatePath)
.build(),
PlainText.builder()
.text("duplicate")
.sourcePath(duplicatePath)
.build()
);
}
}
@NullMarked
@SuppressWarnings({"FieldCanBeLocal", "unused"})
class RecipeWithNameOption extends Recipe {
@Option
private final String name;
@JsonCreator
public RecipeWithNameOption(String name) {
this.name = name;
}
@Getter
final String displayName = "Recipe with name option";
@Getter
final String description = "A fancy description.";
}
@NullMarked
class RecipeWithDescriptionListOfLinks extends Recipe {
@Getter
final String displayName = "Recipe with name option";
@Getter
final String description = """
A fancy description.
For more information, see:
- [link 1](https://example.com/link1)
- [link 2](https://example.com/link2)""";
}
@NullMarked
class RecipeWithDescriptionListOfDescribedLinks extends Recipe {
@Getter
final String displayName = "Recipe with name option";
@Getter
final String description = """
A fancy description.
For more information, see:
- First Resource [link 1](https://example.com/link1).
- Second Resource [link 2](https://example.com/link2).""";
}
@NullMarked
class RecipeWithDescriptionNotEndingWithPeriod extends Recipe {
@Getter
final String displayName = "Recipe with name option";
@Getter
final String description = "A fancy description";
}
@EqualsAndHashCode(callSuper = false)
@NullMarked
@Value
class GeneratesExistingFile extends ScanningRecipe<AtomicBoolean> {
String displayName = "Generates a file that already exists";
String description = "A recipe that generates a source file at a path that already exists in the source set.";
@Override
public AtomicBoolean getInitialValue(ExecutionContext ctx) {
return new AtomicBoolean(false);
}
@Override
public TreeVisitor<?, ExecutionContext> getScanner(AtomicBoolean acc) {
return TreeVisitor.noop();
}
@Override
public Collection<? extends SourceFile> generate(AtomicBoolean acc, ExecutionContext ctx) {
return List.of(PlainText.builder()
.text("generated content")
.sourcePath(Path.of("existing.txt"))
.build());
}
}
@EqualsAndHashCode(callSuper = false)
class RecipeWithOptionalOrValidation extends Recipe {
@Getter
final String displayName = "Recipe with optional OR validation";
@Getter
final String description = "Has two optional parameters where at least one must be set.";
@Option(displayName = "Option A",
description = "First optional parameter.",
example = "valueA",
required = false)
@Nullable
final String optionA;
@Option(displayName = "Option B",
description = "Second optional parameter.",
example = "valueB",
required = false)
@Nullable
final String optionB;
@JsonCreator
RecipeWithOptionalOrValidation(
@JsonProperty("optionA") @Nullable String optionA,
@JsonProperty("optionB") @Nullable String optionB) {
this.optionA = optionA;
this.optionB = optionB;
}
@Override
public Validated<Object> validate() {
return super.validate().and(
Validated.required("optionA", optionA)
.or(Validated.required("optionB", optionB)));
}
@Override
public TreeVisitor<?, ExecutionContext> getVisitor() {
return TreeVisitor.noop();
}
}