18
18
public class NonBlockingPipedOutputStreamTest {
19
19
@ Test (groups = { "unit" })
20
20
public void testRead () throws Exception {
21
- NonBlockingPipedOutputStream stream = new NonBlockingPipedOutputStream (4 , 3 , 1 , null );
21
+ NonBlockingPipedOutputStream stream = new NonBlockingPipedOutputStream (4 , 3 , 1 , CapacityPolicy .fixedCapacity (3 ),
22
+ null );
22
23
Assert .assertEquals (stream .queue .size (), 0 );
23
24
try (InputStream in = stream .getInputStream ()) {
24
25
in .read ();
@@ -76,7 +77,8 @@ public void testRead() throws Exception {
76
77
77
78
@ Test (groups = { "unit" })
78
79
public void testReadBytes () throws Exception {
79
- NonBlockingPipedOutputStream stream = new NonBlockingPipedOutputStream (4 , 3 , 1 , null );
80
+ NonBlockingPipedOutputStream stream = new NonBlockingPipedOutputStream (4 , 3 , 1 , CapacityPolicy .fixedCapacity (3 ),
81
+ null );
80
82
Assert .assertEquals (stream .queue .size (), 0 );
81
83
byte [] bytes = new byte [3 ];
82
84
try (InputStream in = stream .getInputStream ()) {
@@ -138,7 +140,8 @@ public void testReadBytes() throws Exception {
138
140
139
141
@ Test (groups = { "unit" })
140
142
public void testWrite () throws Exception {
141
- NonBlockingPipedOutputStream stream = new NonBlockingPipedOutputStream (2 , 3 , 2 , null );
143
+ NonBlockingPipedOutputStream stream = new NonBlockingPipedOutputStream (2 , 3 , 2 , CapacityPolicy .fixedCapacity (3 ),
144
+ null );
142
145
Assert .assertEquals (stream .queue .size (), 0 );
143
146
try (OutputStream out = stream ) {
144
147
out .write (5 );
@@ -153,7 +156,7 @@ public void testWrite() throws Exception {
153
156
Assert .assertEquals (stream .queue .poll (), new byte [] { (byte ) 7 });
154
157
}
155
158
156
- stream = new NonBlockingPipedOutputStream (1 , 1 , 2 , null );
159
+ stream = new NonBlockingPipedOutputStream (1 , 1 , 2 , CapacityPolicy . fixedCapacity ( 1 ), null );
157
160
Assert .assertEquals (stream .queue .size (), 0 );
158
161
try (OutputStream out = stream ) {
159
162
out .write (5 );
@@ -178,7 +181,8 @@ public void testWrite() throws Exception {
178
181
179
182
@ Test (groups = { "unit" })
180
183
public void testWriteBytes () throws Exception {
181
- NonBlockingPipedOutputStream stream = new NonBlockingPipedOutputStream (2 , 3 , 2 , null );
184
+ NonBlockingPipedOutputStream stream = new NonBlockingPipedOutputStream (2 , 3 , 2 , CapacityPolicy .fixedCapacity (3 ),
185
+ null );
182
186
Assert .assertEquals (stream .queue .size (), 0 );
183
187
try (OutputStream out = stream ) {
184
188
out .write (new byte [] { (byte ) 9 , (byte ) 10 });
@@ -204,12 +208,12 @@ public void testWriteBytes() throws Exception {
204
208
205
209
@ Test (groups = { "unit" })
206
210
public void testPipedStream () throws Exception {
207
- final int timeout = 60000 ;
211
+ final int timeout = 10000 ;
208
212
ExecutorService executor = Executors .newFixedThreadPool (2 );
209
213
for (int bufferSize = -1 ; bufferSize < 10 ; bufferSize ++) {
210
214
for (int queueLength = -1 ; queueLength < 10 ; queueLength ++) {
211
215
final NonBlockingPipedOutputStream stream = new NonBlockingPipedOutputStream (bufferSize , queueLength ,
212
- timeout , null );
216
+ timeout , CapacityPolicy . fixedCapacity ( queueLength ), null );
213
217
try (InputStream in = stream .getInputStream (); OutputStream out = stream ) {
214
218
int count = 10000 ;
215
219
CountDownLatch latch = new CountDownLatch (count + 1 );
0 commit comments