1
- package org .codehaus .plexus .compiler ;
2
-
3
- /**
1
+ /*
4
2
* The MIT License
5
3
*
6
4
* Copyright (c) 2004, The Codehaus
23
21
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
24
22
* SOFTWARE.
25
23
*/
24
+ package org .codehaus .plexus .compiler ;
26
25
27
26
import org .apache .maven .artifact .Artifact ;
28
27
import org .apache .maven .artifact .DefaultArtifact ;
29
28
import org .apache .maven .artifact .handler .DefaultArtifactHandler ;
30
29
import org .apache .maven .artifact .test .ArtifactTestCase ;
31
30
import org .apache .maven .artifact .versioning .VersionRange ;
32
-
31
+ import org . codehaus . plexus . compiler . CompilerMessage . Kind ;
33
32
import org .codehaus .plexus .util .FileUtils ;
34
33
import org .codehaus .plexus .util .StringUtils ;
35
34
36
- import javax .print .DocFlavor ;
37
35
import java .io .File ;
38
36
import java .util .ArrayList ;
39
37
import java .util .Collection ;
42
40
import java .util .List ;
43
41
import java .util .TreeSet ;
44
42
45
- /**
46
- *
47
- */
48
43
public abstract class AbstractCompilerTest
49
44
extends ArtifactTestCase
50
45
{
@@ -91,6 +86,22 @@ protected void configureCompilerConfig( CompilerConfiguration compilerConfig )
91
86
92
87
}
93
88
89
+
90
+ /**
91
+ * Called once per compile iteration to allow configuration customization for
92
+ * tests.
93
+ *
94
+ * @param compilerConfig
95
+ * configuration used for this compile iteration.
96
+ * @param filename
97
+ * file about to be compiled this iteration.
98
+ * @since 2.8.6
99
+ */
100
+ protected void configureCompilerConfig (CompilerConfiguration compilerConfig , String filename )
101
+ {
102
+ configureCompilerConfig ( compilerConfig );
103
+ }
104
+
94
105
public void testCompilingSources ()
95
106
throws Exception
96
107
{
@@ -113,14 +124,16 @@ public void testCompilingSources()
113
124
114
125
int numCompilerErrors = compilerErrorCount ( messages );
115
126
116
- int numCompilerWarnings = messages .size () - numCompilerErrors ;
127
+ int numCompilerWarnings = compilerWarningCount ( messages );
128
+
129
+ int numCompilerNotes = compilerNoteCount ( messages );
117
130
118
131
if ( expectedErrors () != numCompilerErrors )
119
132
{
120
133
System .out .println ( numCompilerErrors + " error(s) found:" );
121
134
for ( CompilerMessage error : messages )
122
135
{
123
- if ( ! error .isError () )
136
+ if ( error .getKind () != Kind . ERROR )
124
137
{
125
138
continue ;
126
139
}
@@ -139,7 +152,7 @@ public void testCompilingSources()
139
152
System .out .println ( numCompilerWarnings + " warning(s) found:" );
140
153
for ( CompilerMessage error : messages )
141
154
{
142
- if ( error .isError () )
155
+ if ( error .getKind () == Kind . ERROR || error . getKind () == Kind . NOTE )
143
156
{
144
157
continue ;
145
158
}
@@ -153,6 +166,25 @@ public void testCompilingSources()
153
166
assertEquals ( "Wrong number of compilation warnings." , expectedWarnings (), numCompilerWarnings );
154
167
}
155
168
169
+ if ( expectedNotes () != numCompilerNotes )
170
+ {
171
+ System .out .println ( numCompilerWarnings + " notes(s) found:" );
172
+ for (CompilerMessage error : messages )
173
+ {
174
+ if ( error .getKind () != Kind .NOTE )
175
+ {
176
+ continue ;
177
+ }
178
+
179
+ System .out .println ( "----" );
180
+ System .out .println ( error .getFile () );
181
+ System .out .println ( error .getMessage () );
182
+ System .out .println ( "----" );
183
+ }
184
+
185
+ assertEquals ( "Wrong number of compilation notes." , expectedNotes (), numCompilerNotes );
186
+ }
187
+
156
188
assertEquals ( new TreeSet <>( normalizePaths ( expectedOutputFiles () ) ), files );
157
189
}
158
190
@@ -190,7 +222,7 @@ private List<CompilerConfiguration> getCompilerConfigurations()
190
222
191
223
compilerConfig .setForceJavacCompilerUse ( this .forceJavacCompilerUse );
192
224
193
- configureCompilerConfig ( compilerConfig );
225
+ configureCompilerConfig ( compilerConfig , filename );
194
226
195
227
String target = getTargetVersion ();
196
228
if ( StringUtils .isNotEmpty ( target ) )
@@ -221,7 +253,6 @@ public String getSourceVersion()
221
253
return null ;
222
254
}
223
255
224
-
225
256
private List <String > normalizePaths ( Collection <String > relativePaths )
226
257
{
227
258
List <String > normalizedPaths = new ArrayList <String >();
@@ -232,16 +263,32 @@ private List<String> normalizePaths( Collection<String> relativePaths )
232
263
return normalizedPaths ;
233
264
}
234
265
235
- protected int compilerErrorCount ( List <CompilerMessage > messages )
266
+ private int compilerErrorCount (List <CompilerMessage > messages )
267
+ {
268
+ return countKind ( messages , Kind .ERROR );
269
+ }
270
+
271
+ private int compilerWarningCount (List <CompilerMessage > messages )
272
+ {
273
+ return messages .size () - (compilerErrorCount ( messages ) + compilerNoteCount ( messages ));
274
+ }
275
+
276
+ private int compilerNoteCount (List <CompilerMessage > messages )
236
277
{
237
- int count = 0 ;
278
+ return countKind ( messages , Kind .NOTE );
279
+ }
238
280
239
- for ( CompilerMessage message : messages )
281
+ private int countKind (List <CompilerMessage > messages , Kind kind )
282
+ {
283
+ int c = 0 ;
284
+ for (CompilerMessage message : messages )
240
285
{
241
- count += message .isError () ? 1 : 0 ;
286
+ if ( message .getKind () == kind )
287
+ {
288
+ c ++;
289
+ }
242
290
}
243
-
244
- return count ;
291
+ return c ;
245
292
}
246
293
247
294
protected int expectedErrors ()
@@ -254,6 +301,17 @@ protected int expectedWarnings()
254
301
return 0 ;
255
302
}
256
303
304
+ /**
305
+ * Count of output generated at the {@link Kind#NOTE} level.
306
+ *
307
+ * @return count
308
+ * @since 2.8.6
309
+ */
310
+ protected int expectedNotes ()
311
+ {
312
+ return 0 ;
313
+ }
314
+
257
315
protected Collection <String > expectedOutputFiles ()
258
316
{
259
317
return Collections .emptyList ();
0 commit comments