-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathClosingBracketsPositionTest.java
178 lines (131 loc) · 5.27 KB
/
ClosingBracketsPositionTest.java
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
package com.sap.adt.abapcleaner.rules.spaces;
import org.junit.jupiter.api.Test;
import com.sap.adt.abapcleaner.rulebase.RuleID;
import com.sap.adt.abapcleaner.rulebase.RuleTestBase;
class ClosingBracketsPositionTest extends RuleTestBase {
ClosingBracketsPositionTest() {
super(RuleID.CLOSING_BRACKETS_POSITION);
}
@Test
void testValueStatement() {
buildSrc(" ev_result = VALUE #( ( a = 2");
buildSrc(" b = 4");
buildSrc(" )");
buildSrc(" ).");
buildExp(" ev_result = VALUE #( ( a = 2");
buildExp(" b = 4 ) ).");
putAnyMethodAroundSrcAndExp();
testRule();
}
@Test
void testValueStatementWithComment() {
buildSrc(" ev_result = VALUE #( ( a = 1");
buildSrc(" b = 2");
buildSrc(" )");
buildSrc(" ( a = 2");
buildSrc(" b = 4 \" comment");
buildSrc(" )");
buildSrc(" ).");
buildExp(" ev_result = VALUE #( ( a = 1");
buildExp(" b = 2 )");
buildExp(" ( a = 2");
buildExp(" b = 4 ) ). \" comment");
putAnyMethodAroundSrcAndExp();
testRule();
}
@Test
void testParameterList() {
buildSrc(" any_operation( iv_param_a = 1");
buildSrc(" iv_param_b = 2");
buildSrc(" ).");
buildExp(" any_operation( iv_param_a = 1");
buildExp(" iv_param_b = 2 ).");
putAnyMethodAroundSrcAndExp();
testRule();
}
@Test
void testParameterListWithComment() {
buildSrc(" any_operation( iv_param = 1 \" comment");
buildSrc(" ).");
buildExp(" any_operation( iv_param = 1 ). \" comment");
putAnyMethodAroundSrcAndExp();
testRule();
}
@Test
void testParameterListWithConflictingComments() {
buildSrc(" any_operation( iv_param = 1 \" comment");
buildSrc(" ). \" conflicting comment");
buildExp(" any_operation( iv_param = 1 ). \" comment; conflicting comment");
putAnyMethodAroundSrcAndExp();
testRule();
}
@Test
void testParameterListWithCommentAndPseudoCommentUnchanged() {
// ensure that the comments are NOT merged if the second one is a pseudo-comment
buildSrc(" any_operation( iv_param = 1 \" comment");
buildSrc(" ). \"#EC NEEDED");
buildExp(" any_operation( iv_param = 1 ) \" comment");
buildExp(" . \"#EC NEEDED");
putAnyMethodAroundSrcAndExp();
testRule();
}
@Test
void testParameterListWithPseudoCommentAndCommentUnchanged() {
// ensure that currently, the comments are NOT merged if the first one is a pseudo-comment
// (although this would be possible if the separator starts with a space: "#EC NEEDED comment
buildSrc(" any_operation( iv_param = 1 \"#EC NEEDED");
buildSrc(" ). \" comment");
buildExp(" any_operation( iv_param = 1 ) \"#EC NEEDED");
buildExp(" . \" comment");
putAnyMethodAroundSrcAndExp();
testRule();
}
@Test
void testPragma() {
// expect "... ) ##NEEDED.", which is the only(!) correct result if the closing parenthesis is moved up:
// both "... ). ##NEEDED" and "... ##NEEDED )." would be wrong and get a warning in ADT!
buildSrc(" any_method( EXPORTING iv_param1 = lv_value1");
buildSrc(" IMPORTING ev_param2 = lv_param2 ##NEEDED");
buildSrc(" ).");
buildExp(" any_method( EXPORTING iv_param1 = lv_value1");
buildExp(" IMPORTING ev_param2 = lv_param2 ) ##NEEDED.");
testRule();
}
@Test
void testPragmas() {
buildSrc(" any_method( EXPORTING iv_param1 = lv_value1");
buildSrc(" IMPORTING ev_param2 = lv_param2 ##NEEDED ##OTHER_PRAGMA");
buildSrc(" ).");
buildExp(" any_method( EXPORTING iv_param1 = lv_value1");
buildExp(" IMPORTING ev_param2 = lv_param2 ) ##NEEDED ##OTHER_PRAGMA.");
testRule();
}
@Test
void testPragmaAndComment() {
buildSrc(" any_method( EXPORTING iv_param1 = lv_value1");
buildSrc(" IMPORTING ev_param2 = lv_param2 ##NEEDED \" comment");
buildSrc(" ).");
buildExp(" any_method( EXPORTING iv_param1 = lv_value1");
buildExp(" IMPORTING ev_param2 = lv_param2 ) ##NEEDED. \" comment");
testRule();
}
@Test
void testPragmaAndConflictingComments() {
buildSrc(" any_method( EXPORTING iv_param1 = lv_value1");
buildSrc(" IMPORTING ev_param2 = lv_param2 ##NEEDED \" comment");
buildSrc(" ). \" conflicting comment");
buildExp(" any_method( EXPORTING iv_param1 = lv_value1");
buildExp(" IMPORTING ev_param2 = lv_param2 ) ##NEEDED. \" comment; conflicting comment");
testRule();
}
@Test
void testArithmeticExpr() {
buildSrc(" a = ( 1 + 2 \" comment");
buildSrc(" ) * (");
buildSrc(" 3 + 4 ).");
buildExp(" a = ( 1 + 2 ) \" comment");
buildExp(" * (");
buildExp(" 3 + 4 ).");
testRule();
}
}