21
21
import static org .junit .jupiter .api .Assertions .assertFalse ;
22
22
import static org .junit .jupiter .api .Assertions .assertNotEquals ;
23
23
import static org .junit .jupiter .api .Assertions .assertTrue ;
24
- import static org .junit .jupiter .api .Assertions .fail ;
25
24
26
25
import java .io .File ;
27
26
import java .io .FileInputStream ;
36
35
import org .apache .commons .io .file .AbstractTempDirTest ;
37
36
import org .apache .commons .lang3 .ArrayUtils ;
38
37
import org .apache .commons .lang3 .StringUtils ;
39
- import org .junit .jupiter .params .ParameterizedTest ;
40
- import org .junit .jupiter .params .provider .MethodSource ;
41
38
import org .junitpioneer .jupiter .cartesian .CartesianTest ;
42
39
import org .junitpioneer .jupiter .cartesian .CartesianTest .Values ;
43
40
@@ -53,41 +50,43 @@ enum FileChannelType {
53
50
private static final int SMALL_BUFFER_SIZE = 1024 ;
54
51
private static final String CONTENT = StringUtils .repeat ("x" , SMALL_BUFFER_SIZE );
55
52
56
- public static int [] getBufferSizes () {
57
- // 1 and 2 are unusual and slow edge cases, but edge cases nonetheless.
58
- return new int [] { 1 , 2 , IOUtils . DEFAULT_BUFFER_SIZE / 10 , IOUtils . DEFAULT_BUFFER_SIZE , IOUtils . DEFAULT_BUFFER_SIZE * 10 } ;
53
+ @ SuppressWarnings ( "resource" ) // Caller closes
54
+ private static FileChannel getChannel ( final FileInputStream inNotEmpty , final FileChannelType fileChannelType ) throws IOException {
55
+ return wrap ( inNotEmpty . getChannel (), fileChannelType ) ;
59
56
}
60
57
58
+ private static boolean isEmpty (final File empty ) {
59
+ return empty .length () == 0 ;
60
+ }
61
+
62
+ @ SuppressWarnings ("resource" ) // Caller closes
61
63
private static FileChannel open (final Path path , final FileChannelType fileChannelType ) throws IOException {
62
- final FileChannel fc = FileChannel .open (path );
63
- if (fileChannelType != null ) {
64
- switch (fileChannelType ) {
65
- case NON_BLOCKING :
66
- return new NonBlockingFileChannelProxy (fc );
67
- case STOCK :
68
- return fc ;
69
- case PROXY :
70
- return new FileChannelProxy (fc );
71
- default :
72
- fail ("Unexpected FileChannelType " + fileChannelType );
73
- }
74
- }
75
- return FileChannel .open (path );
64
+ return wrap (FileChannel .open (path ), fileChannelType );
76
65
}
77
66
78
- private static byte reverse (final byte b ) {
79
- return ( byte ) (~ b & 0xff );
67
+ private static FileChannel reset (final FileChannel fc ) throws IOException {
68
+ return fc . position ( 0 );
80
69
}
81
70
82
- private boolean isEmpty (final File empty ) {
83
- return empty . length () == 0 ;
71
+ private static byte reverse (final byte b ) {
72
+ return ( byte ) (~ b & 0xff ) ;
84
73
}
85
74
86
- private FileChannel reset (final FileChannel fc ) throws IOException {
87
- return fc .position (0 );
75
+ private static FileChannel wrap (final FileChannel fc , final FileChannelType fileChannelType ) throws IOException {
76
+ switch (fileChannelType ) {
77
+ case NON_BLOCKING :
78
+ return new NonBlockingFileChannelProxy (fc );
79
+ case STOCK :
80
+ return fc ;
81
+ case PROXY :
82
+ return new FileChannelProxy (fc );
83
+ default :
84
+ throw new UnsupportedOperationException ("Unexpected FileChannelType " + fileChannelType );
85
+ }
88
86
}
89
87
90
- private void testContentEquals (final String content1 , final String content2 , final int bufferSize ) throws IOException {
88
+ private void testContentEquals (final String content1 , final String content2 , final int bufferSize , final FileChannelType fileChannelType )
89
+ throws IOException {
91
90
assertTrue (FileChannels .contentEquals (null , null , bufferSize ));
92
91
// Prepare test files with same size but different content
93
92
// (first 3 bytes are different, followed by a large amount of equal content)
@@ -99,34 +98,37 @@ private void testContentEquals(final String content1, final String content2, fin
99
98
assertNotEquals (FileUtils .checksumCRC32 (file1 ), FileUtils .checksumCRC32 (file2 ));
100
99
try (FileInputStream in1 = new FileInputStream (file1 );
101
100
FileInputStream in2 = new FileInputStream (file2 );
102
- FileChannel channel1 = in1 . getChannel ();
103
- FileChannel channel2 = in2 . getChannel ()) {
101
+ FileChannel channel1 = getChannel (in1 , fileChannelType );
102
+ FileChannel channel2 = getChannel (in2 , fileChannelType )) {
104
103
assertFalse (FileChannels .contentEquals (channel1 , channel2 , bufferSize ));
105
104
}
106
105
try (FileInputStream in1 = new FileInputStream (file1 );
107
106
FileInputStream in2 = new FileInputStream (file2 );
108
- FileChannel channel1 = in1 . getChannel ();
109
- FileChannel channel2 = in2 . getChannel ()) {
107
+ FileChannel channel1 = getChannel (in1 , fileChannelType );
108
+ FileChannel channel2 = getChannel (in2 , fileChannelType )) {
110
109
assertTrue (FileChannels .contentEquals (channel1 , channel1 , bufferSize ));
111
110
assertTrue (FileChannels .contentEquals (channel2 , channel2 , bufferSize ));
112
111
}
113
112
}
114
113
115
- @ ParameterizedTest ()
116
- @ MethodSource ("getBufferSizes" )
117
- public void testContentEqualsDifferentPostfix (final int bufferSize ) throws IOException {
118
- testContentEquals (CONTENT + "ABC" , CONTENT + "XYZ" , bufferSize );
114
+ @ CartesianTest ()
115
+ public void testContentEqualsDifferentPostfix (
116
+ @ Values (ints = { 1 , 2 , IOUtils .DEFAULT_BUFFER_SIZE / 10 , IOUtils .DEFAULT_BUFFER_SIZE , IOUtils .DEFAULT_BUFFER_SIZE * 10 }) final int bufferSize ,
117
+ @ CartesianTest .Enum final FileChannelType fileChannelType ) throws IOException {
118
+ testContentEquals (CONTENT + "ABC" , CONTENT + "XYZ" , bufferSize , fileChannelType );
119
119
}
120
120
121
- @ ParameterizedTest ()
122
- @ MethodSource ("getBufferSizes" )
123
- public void testContentEqualsDifferentPrefix (final int bufferSize ) throws IOException {
124
- testContentEquals ("ABC" + CONTENT , "XYZ" + CONTENT , bufferSize );
121
+ @ CartesianTest ()
122
+ public void testContentEqualsDifferentPrefix (
123
+ @ Values (ints = { 1 , 2 , IOUtils .DEFAULT_BUFFER_SIZE / 10 , IOUtils .DEFAULT_BUFFER_SIZE , IOUtils .DEFAULT_BUFFER_SIZE * 10 }) final int bufferSize ,
124
+ @ CartesianTest .Enum final FileChannelType fileChannelType ) throws IOException {
125
+ testContentEquals ("ABC" + CONTENT , "XYZ" + CONTENT , bufferSize , fileChannelType );
125
126
}
126
127
127
- @ ParameterizedTest ()
128
- @ MethodSource ("getBufferSizes" )
129
- public void testContentEqualsEmpty (final int bufferSize ) throws IOException {
128
+ @ CartesianTest ()
129
+ public void testContentEqualsEmpty (
130
+ @ Values (ints = { 1 , 2 , IOUtils .DEFAULT_BUFFER_SIZE / 10 , IOUtils .DEFAULT_BUFFER_SIZE , IOUtils .DEFAULT_BUFFER_SIZE * 10 }) final int bufferSize ,
131
+ @ CartesianTest .Enum final FileChannelType fileChannelType ) throws IOException {
130
132
assertTrue (FileChannels .contentEquals (null , null , bufferSize ));
131
133
// setup fixtures
132
134
final File empty = new File (tempDirFile , "empty.txt" );
@@ -139,8 +141,8 @@ public void testContentEqualsEmpty(final int bufferSize) throws IOException {
139
141
assertNotEquals (FileUtils .checksumCRC32 (empty ), FileUtils .checksumCRC32 (notEmpty ));
140
142
try (FileInputStream inEmpty = new FileInputStream (empty );
141
143
FileInputStream inNotEmpty = new FileInputStream (notEmpty );
142
- FileChannel channelEmpty = inEmpty . getChannel ();
143
- FileChannel channelNotEmpty = inNotEmpty . getChannel ()) {
144
+ FileChannel channelEmpty = getChannel (inEmpty , fileChannelType );
145
+ FileChannel channelNotEmpty = getChannel (inNotEmpty , fileChannelType )) {
144
146
assertFalse (FileChannels .contentEquals (channelEmpty , channelNotEmpty , bufferSize ));
145
147
assertFalse (FileChannels .contentEquals (null , channelNotEmpty , bufferSize ));
146
148
assertFalse (FileChannels .contentEquals (channelNotEmpty , null , bufferSize ));
@@ -155,6 +157,7 @@ public void testContentEqualsEmpty(final int bufferSize) throws IOException {
155
157
public void testContentEqualsFileChannel (
156
158
@ Values (ints = { 1 , 2 , IOUtils .DEFAULT_BUFFER_SIZE / 10 , IOUtils .DEFAULT_BUFFER_SIZE , IOUtils .DEFAULT_BUFFER_SIZE * 10 }) final int bufferSize )
157
159
throws IOException {
160
+ final FileChannelType fileChannelType = FileChannelType .STOCK ;
158
161
final Path bigFile1 = Files .createTempFile (getClass ().getSimpleName (), "-1.bin" );
159
162
final Path bigFile2 = Files .createTempFile (getClass ().getSimpleName (), "-2.bin" );
160
163
final Path bigFile3 = Files .createTempFile (getClass ().getSimpleName (), "-3.bin" );
@@ -170,7 +173,7 @@ public void testContentEqualsFileChannel(
170
173
bytes2 [0 ] = 2 ;
171
174
Files .write (bigFile1 , bytes1 );
172
175
Files .write (bigFile2 , bytes2 );
173
- try (FileChannel fc1 = open (bigFile1 , null ); FileChannel fc2 = open (bigFile2 , null )) {
176
+ try (FileChannel fc1 = open (bigFile1 , fileChannelType ); FileChannel fc2 = open (bigFile2 , fileChannelType )) {
174
177
assertFalse (FileChannels .contentEquals (fc1 , fc2 , bufferSize ));
175
178
assertFalse (FileChannels .contentEquals (reset (fc2 ), reset (fc1 ), bufferSize ));
176
179
assertTrue (FileChannels .contentEquals (reset (fc1 ), reset (fc1 ), bufferSize ));
@@ -180,7 +183,7 @@ public void testContentEqualsFileChannel(
180
183
final int last = bytes3 .length - 1 ;
181
184
bytes3 [last ] = reverse (bytes3 [last ]);
182
185
Files .write (bigFile3 , bytes3 );
183
- try (FileChannel fc1 = open (bigFile1 , null ); FileChannel fc3 = open (bigFile3 , null )) {
186
+ try (FileChannel fc1 = open (bigFile1 , fileChannelType ); FileChannel fc3 = open (bigFile3 , fileChannelType )) {
184
187
assertFalse (FileChannels .contentEquals (fc1 , fc3 , bufferSize ));
185
188
assertFalse (FileChannels .contentEquals (reset (fc3 ), reset (fc1 ), bufferSize ));
186
189
// Test just the last byte
@@ -191,7 +194,7 @@ public void testContentEqualsFileChannel(
191
194
// Make the LAST byte equal.
192
195
bytes3 = bytes1 .clone ();
193
196
Files .write (bigFile3 , bytes3 );
194
- try (FileChannel fc1 = open (bigFile1 , null ); FileChannel fc3 = open (bigFile3 , null )) {
197
+ try (FileChannel fc1 = open (bigFile1 , fileChannelType ); FileChannel fc3 = open (bigFile3 , fileChannelType )) {
195
198
// Test just the last byte
196
199
fc1 .position (last );
197
200
fc3 .position (last );
@@ -202,7 +205,7 @@ public void testContentEqualsFileChannel(
202
205
final int middle = bytes3 .length / 2 ;
203
206
bytes3 [middle ] = reverse (bytes3 [middle ]);
204
207
Files .write (bigFile3 , bytes3 );
205
- try (FileChannel fc1 = open (bigFile1 , null ); FileChannel fc3 = open (bigFile3 , null )) {
208
+ try (FileChannel fc1 = open (bigFile1 , fileChannelType ); FileChannel fc3 = open (bigFile3 , fileChannelType )) {
206
209
assertFalse (FileChannels .contentEquals (fc1 , fc3 , bufferSize ));
207
210
assertFalse (FileChannels .contentEquals (reset (fc3 ), reset (fc1 ), bufferSize ));
208
211
}
0 commit comments