16
16
* limitations under the License.
17
17
*/
18
18
19
- import static org .junit .Assert .assertTrue ;
19
+ import org .junit .jupiter .api .BeforeEach ;
20
+ import org .junit .jupiter .api .TestInfo ;
21
+
22
+ import static org .junit .jupiter .api .Assertions .assertArrayEquals ;
23
+ import static org .junit .jupiter .api .Assertions .assertEquals ;
24
+ import static org .junit .jupiter .api .Assertions .assertTrue ;
25
+ import static org .junit .jupiter .api .Assertions .fail ;
20
26
21
27
import java .io .BufferedOutputStream ;
22
28
import java .io .ByteArrayOutputStream ;
27
33
import java .io .PrintStream ;
28
34
import java .io .PrintWriter ;
29
35
import java .io .Writer ;
36
+ import java .lang .reflect .Method ;
30
37
import java .nio .file .Files ;
31
38
import java .util .Arrays ;
32
39
33
- import junit .framework .AssertionFailedError ;
34
-
35
40
/**
36
41
* Base class for testcases doing tests with files.
37
42
*
@@ -43,6 +48,8 @@ public abstract class FileBasedTestCase
43
48
{
44
49
private static File testDir ;
45
50
51
+ private TestInfo testInfo ;
52
+
46
53
/**
47
54
* <p>getTestDirectory.</p>
48
55
*
@@ -186,7 +193,7 @@ protected File newFile( String filename )
186
193
protected void checkFile ( final File file , final File referenceFile )
187
194
throws Exception
188
195
{
189
- assertTrue ( "Check existence of output file" , file . exists () );
196
+ assertTrue ( file . exists (), "Check existence of output file" );
190
197
assertEqualContent ( referenceFile , file );
191
198
}
192
199
@@ -205,7 +212,7 @@ protected void checkWrite( final OutputStream output )
205
212
}
206
213
catch ( final Throwable t )
207
214
{
208
- throw new AssertionFailedError ( "The copy() method closed the stream " + "when it shouldn't have. "
215
+ fail ( "The copy() method closed the stream " + "when it shouldn't have. "
209
216
+ t .getMessage () );
210
217
}
211
218
}
@@ -225,7 +232,7 @@ protected void checkWrite( final Writer output )
225
232
}
226
233
catch ( final Throwable t )
227
234
{
228
- throw new AssertionFailedError ( "The copy() method closed the stream " + "when it shouldn't have. "
235
+ fail ( "The copy() method closed the stream " + "when it shouldn't have. "
229
236
+ t .getMessage () );
230
237
}
231
238
}
@@ -241,7 +248,7 @@ protected void deleteFile( final File file )
241
248
{
242
249
if ( file .exists () )
243
250
{
244
- assertTrue ( "Couldn't delete file: " + file , file . delete () );
251
+ assertTrue ( file . delete (), "Couldn't delete file: " + file );
245
252
}
246
253
}
247
254
@@ -258,37 +265,10 @@ private void assertEqualContent( final File f0, final File f1 )
258
265
* + " and " + f1 + " have differing file sizes (" + f0.length() + " vs " + f1.length() + ")", ( f0.length() ==
259
266
* f1.length() ) );
260
267
*/
261
- final InputStream is0 = Files .newInputStream ( f0 .toPath () );
262
- try
263
- {
264
- final InputStream is1 = Files .newInputStream ( f1 .toPath () );
265
- try
266
- {
267
- final byte [] buf0 = new byte [1024 ];
268
- final byte [] buf1 = new byte [1024 ];
269
- int n0 = 0 ;
270
- int n1 = 0 ;
271
-
272
- while ( -1 != n0 )
273
- {
274
- n0 = is0 .read ( buf0 );
275
- n1 = is1 .read ( buf1 );
276
- assertTrue ( "The files " + f0 + " and " + f1 + " have differing number of bytes available (" + n0
277
- + " vs " + n1 + ")" , ( n0 == n1 ) );
278
-
279
- assertTrue ( "The files " + f0 + " and " + f1 + " have different content" ,
280
- Arrays .equals ( buf0 , buf1 ) );
281
- }
282
- }
283
- finally
284
- {
285
- is1 .close ();
286
- }
287
- }
288
- finally
289
- {
290
- is0 .close ();
291
- }
268
+ byte [] buf0 = Files .readAllBytes ( f0 .toPath () );
269
+ byte [] buf1 = Files .readAllBytes ( f0 .toPath () );
270
+ assertArrayEquals ( buf0 , buf1 ,
271
+ "The files " + f0 + " and " + f1 + " have different content" );
292
272
}
293
273
294
274
/**
@@ -301,20 +281,8 @@ private void assertEqualContent( final File f0, final File f1 )
301
281
protected void assertEqualContent ( final byte [] b0 , final File file )
302
282
throws IOException
303
283
{
304
- final InputStream is = Files .newInputStream ( file .toPath () );
305
- try
306
- {
307
- byte [] b1 = new byte [b0 .length ];
308
- int numRead = is .read ( b1 );
309
- assertTrue ( "Different number of bytes" , numRead == b0 .length && is .available () == 0 );
310
- for ( int i = 0 ; i < numRead ; assertTrue ( "Byte " + i + " differs (" + b0 [i ] + " != " + b1 [i ] + ")" ,
311
- b0 [i ] == b1 [i ] ), i ++ )
312
- ;
313
- }
314
- finally
315
- {
316
- is .close ();
317
- }
284
+ byte [] b1 = Files .readAllBytes ( file .toPath () );
285
+ assertArrayEquals (b0 , b1 , "Content differs" );
318
286
}
319
287
320
288
/**
@@ -324,9 +292,9 @@ protected void assertEqualContent( final byte[] b0, final File file )
324
292
*/
325
293
protected void assertIsDirectory ( File file )
326
294
{
327
- assertTrue ( "The File doesn't exists: " + file .getAbsolutePath (), file . exists () );
295
+ assertTrue ( file . exists (), "The File doesn't exists: " + file .getAbsolutePath () );
328
296
329
- assertTrue ( "The File isn't a directory: " + file .getAbsolutePath (), file . isDirectory () );
297
+ assertTrue ( file . isDirectory (), "The File isn't a directory: " + file .getAbsolutePath () );
330
298
}
331
299
332
300
/**
@@ -336,8 +304,18 @@ protected void assertIsDirectory( File file )
336
304
*/
337
305
protected void assertIsFile ( File file )
338
306
{
339
- assertTrue ( "The File doesn't exists: " + file .getAbsolutePath (), file .exists () );
307
+ assertTrue ( file .exists (), "The File doesn't exists: " + file .getAbsolutePath () );
308
+
309
+ assertTrue ( file .isFile (), "The File isn't a file: " + file .getAbsolutePath () );
310
+ }
340
311
341
- assertTrue ( "The File isn't a file: " + file .getAbsolutePath (), file .isFile () );
312
+ @ BeforeEach
313
+ void init (TestInfo testInfo ) {
314
+ this .testInfo = testInfo ;
342
315
}
316
+
317
+ protected String getTestMethodName () {
318
+ return testInfo .getTestMethod ().map (Method ::getName ).orElse (null );
319
+ }
320
+
343
321
}
0 commit comments