-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathChangeDetectionTest.java
More file actions
370 lines (280 loc) · 9.41 KB
/
ChangeDetectionTest.java
File metadata and controls
370 lines (280 loc) · 9.41 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
package com.regnosys.rosetta.ide.server;
import org.eclipse.lsp4j.Diagnostic;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;
import com.regnosys.rosetta.ide.tests.AbstractRosettaLanguageServerValidationTest;
import java.util.List;
public class ChangeDetectionTest extends AbstractRosettaLanguageServerValidationTest {
@Test
void testChangeInAttributeTypeIsPropagated() {
String typesURI = createModel("types.rosetta", """
namespace test
type A:
attr int (1..1)
""");
String funcsURI = createModel("funcs.rosetta", """
namespace test
func Foo:
inputs: input A (1..1)
output: result int (1..1)
set result: input -> attr
""");
// Initial: there should be no issue.
assertNoIssues();
// Introduce a type error by changing the type of `attr` from `int` to `string`.
makeChange(typesURI, 3, 6, "int", "string");
// There should be a type error in func `Foo`
List<Diagnostic> issues = getDiagnostics().get(funcsURI);
Assertions.assertEquals(1, issues.size());
Assertions.assertEquals(
"Expected type `int`, but got `string` instead. Cannot assign `string` to output `result`",
issues.get(0).getMessage());
}
@Test
void testChangeInAttributeCardinalityIsPropagated() {
String typesURI = createModel("types.rosetta", """
namespace test
type A:
attr int (1..1)
""");
String funcsURI = createModel("funcs.rosetta", """
namespace test
func Foo:
inputs: input A (1..1)
output: result int (1..1)
set result: input -> attr
""");
// Initial: there should be no issue.
assertNoIssues();
// Introduce an error by changing the cardinality of `attr` from `(1..1)` to
// `(0..*)`.
makeChange(typesURI, 3, 10, "(1..1)", "(0..*)");
// There should be a cardinality error in func `Foo`
List<Diagnostic> issues = getDiagnostics().get(funcsURI);
Assertions.assertEquals(1, issues.size());
Assertions.assertEquals("Expecting single cardinality. Cannot assign a list to a single value",
issues.get(0).getMessage());
}
@Test
void testChangeInAttributeQualifiedTypeIsPropagated() {
createModel("foo.rosetta", """
namespace foo
type MyType:
""");
createModel("bar.rosetta", """
namespace bar
type MyType:
""");
String typesURI = createModel("types.rosetta", """
namespace test
import foo.MyType
type A:
attr MyType (1..1)
""");
String funcsURI = createModel("funcs.rosetta", """
namespace test
import foo.MyType
func Foo:
inputs: input A (1..1)
output: result MyType (1..1)
set result: input -> attr
""");
// Initial: there should be no issue.
assertNoIssues();
// Introduce a type error by changing the type of `attr` from `foo.MyType` to
// `bar.MyType`.
// We do this by changing `import foo.MyType` to `import bar.MyType`.
makeChange(typesURI, 2, 7, "foo", "bar");
// There should be a type error in func `Foo`
List<Diagnostic> issues = getDiagnostics().get(funcsURI);
Assertions.assertEquals(1, issues.size());
Assertions.assertEquals(
"Expected type `foo.MyType`, but got `bar.MyType` instead. Cannot assign `bar.MyType` to output `result`",
issues.get(0).getMessage());
}
@Test
void testChangeInRuleInputTypeIsPropagated() {
String ruleAURI = createModel("ruleA.rosetta", """
namespace test
reporting rule A from string:
42
""");
String ruleBURI = createModel("ruleB.rosetta", """
namespace test
reporting rule B from string:
A
""");
// Initial: there should be no issue.
assertNoIssues();
// Introduce a type error by changing the input type of rule `A` to `int`.
makeChange(ruleAURI, 2, 22, "string", "int");
// There should be a type error in rule B
List<Diagnostic> issues = getDiagnostics().get(ruleBURI);
Assertions.assertEquals(1, issues.size());
Assertions.assertEquals(
"Expected type `int`, but got `string` instead. Rule `A` cannot be called with type `string`",
issues.get(0).getMessage());
}
@Test
void testChangeInRuleExpressionIsPropagated() {
String ruleAURI = createModel("ruleA.rosetta", """
namespace test
reporting rule A from string:
42
""");
String funcURI = createModel("func.rosetta", """
namespace test
func Foo:
output:
result int (1..1)
set result:
A("")
""");
// Initial: there should be no issue.
assertNoIssues();
// Introduce a type error by changing the output of rule `A` to be of type
// `string`.
makeChange(ruleAURI, 3, 1, "42", "\"My string\"");
// There should be a type error in func Foo
List<Diagnostic> issues = getDiagnostics().get(funcURI);
Assertions.assertEquals(1, issues.size());
Assertions.assertEquals(
"Expected type `int`, but got `string` instead. Cannot assign `string` to output `result`",
issues.get(0).getMessage());
}
@Test
void testChangeInLabelShouldRegenerateLabelProviderForReport() {
createModel("ruleA.rosetta", """
namespace test
body Authority Body
corpus Directive "My corpus" Corpus
report Body Corpus in T+1
from string
when FilterEligible
with type MyReport
eligibility rule FilterEligible from string:
item
""");
String typeURI = createModel("type.rosetta", """
namespace test
type MyReport:
attr string (1..1)
[label "My label"]
""");
String labelProviderPath = "test/labels/BodyCorpusLabelProvider.java";
// There should be no issue.
assertNoIssues();
// There should be a generated label provider.
String originalLabelProviderCode = readGeneratedFile(labelProviderPath);
Assertions.assertNotNull(originalLabelProviderCode, "Label provider does not exist at " + labelProviderPath);
// Change label to "My new label".
makeChange(typeURI, 4, 9, "\"My label\"", "\"My new label\"");
// There should again be no issue.
assertNoIssues();
// The new label provider should be different.
String newLabelProviderCode = readGeneratedFile(labelProviderPath);
Assertions.assertNotNull(newLabelProviderCode, "Label provider does not exist at " + labelProviderPath);
Assertions.assertNotEquals(originalLabelProviderCode, newLabelProviderCode);
}
@Test
void testBreakingAndFixingOneTypeInNamespaceHasNoIssues() {
String nsA = createModel("a.rosetta", """
namespace a
type Y: y string (0..1)
""");
String nsB = createModel("b.rosetta", """
namespace b
type X: x string (1..1)
reporting rule R from X: a.Y {...}
""");
// There should be no issue.
assertNoIssues();
makeChange(nsA, 2, 0, "", "break me");
List<Diagnostic> issues = getDiagnostics().get(nsB);
assertIssues("Error [[4, 25] .. [4, 28]]: Couldn't resolve reference to RosettaType 'a.Y'.\n" +
"Error [[4, 30] .. [4, 33]]: There are no optional attributes left\n", issues);
makeChange(nsA, 2, 0, "break me", "");
// There should again be no issue.
assertNoIssues();
}
@Test
void testBreakingAndFixingOneFuncInNamespaceHasNoIssues() {
String nsA = createModel("a.rosetta", """
namespace a
func SSS:
output: r string (1..1)
set r: "foo"
""");
String nsB = createModel("b.rosetta", """
namespace b
type X:
x string (1..1)
reporting rule R from X: a.SSS
""");
// There should be no issue.
assertNoIssues();
makeChange(nsA, 2, 0, "", "break me");
List<Diagnostic> issues = getDiagnostics().get(nsB);
assertIssues("Error [[5, 25] .. [5, 30]]: Couldn't resolve reference to RosettaSymbol 'a.SSS'.\n", issues);
makeChange(nsA, 2, 0, "break me", "");
// There should again be no issue.
assertNoIssues();
}
@Test
void testBreakingAndFixingOneEnumInNamespaceHasNoIssues() {
String nsA = createModel("a.rosetta", """
namespace a
enum Y: Q
""");
String nsB = createModel("b.rosetta", """
namespace b
type X: x string (1..1)
reporting rule R from X: a.Y -> Q
""");
// There should be no issue.
assertNoIssues();
makeChange(nsA, 2, 0, "", "break me");
List<Diagnostic> issues = getDiagnostics().get(nsB);
assertIssues("Error [[3, 25] .. [3, 28]]: Couldn't resolve reference to RosettaSymbol 'a.Y'.\n" +
"Error [[3, 32] .. [3, 33]]: Couldn't resolve reference to RosettaFeature 'Q'.\n", issues);
makeChange(nsA, 2, 0, "break me", "");
// There should again be no issue.
assertNoIssues();
}
@Test
void testDeletingAndFixingTrailingQuoteInEnumHasNoIssues() {
String nsEnum = createModel("enum.rosetta", """
namespace demo.namespace1
enum Enum1: <"Text">
A
B
C
enum Enum2:
A
B
C
""");
String nsType = createModel("type.rosetta", """
namespace demo.namespace2
type X:
x string (1..1)
""");
String nsRule = createModel("rule.rosetta", """
namespace demo.namespace3
import demo.namespace1.*
import demo.namespace2.*
reporting rule AAA from X:
extract Enum2 -> C
""");
// There should be no issue.
assertNoIssues();
makeChange(nsEnum, 2, 18, "\"", "");
List<Diagnostic> issues = getDiagnostics().get(nsRule);
assertIssues("Error [[6, 10] .. [6, 15]]: Couldn't resolve reference to RosettaSymbol 'Enum2'.\n" +
"Error [[6, 19] .. [6, 20]]: Couldn't resolve reference to RosettaFeature 'C'.\n" +
"Warning [[2, 7] .. [2, 24]]: Unused import demo.namespace1.*\n", issues);
makeChange(nsEnum, 2, 18, "", "\"");
// There should again be no issue.
assertNoIssues();
}
}