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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
|
/*
* Copyright (C) 2009-2010, Google Inc. and others
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Distribution License v. 1.0 which is available at
* https://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
package org.eclipse.jgit.util.io;
import static org.junit.Assert.assertArrayEquals;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;
import java.io.IOException;
import java.io.InterruptedIOException;
import java.io.OutputStream;
import java.io.PipedInputStream;
import java.io.PipedOutputStream;
import java.util.Arrays;
import java.util.List;
import org.eclipse.jgit.util.IO;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
public class TimeoutOutputStreamTest {
private static final int timeout = 250;
private PipedOutputStream out;
private FullPipeInputStream in;
private InterruptTimer timer;
private TimeoutOutputStream os;
private long start;
@Before
public void setUp() throws Exception {
out = new PipedOutputStream();
in = new FullPipeInputStream(out);
timer = new InterruptTimer();
os = new TimeoutOutputStream(out, timer);
os.setTimeout(timeout);
}
@After
public void tearDown() throws Exception {
timer.terminate();
for (Thread t : active())
assertFalse(t instanceof InterruptTimer.AlarmThread);
}
@Test
public void testTimeout_writeByte_Success1() throws IOException {
in.free(1);
os.write('a');
in.want(1);
assertEquals('a', in.read());
}
@Test
public void testTimeout_writeByte_Success2() throws IOException {
final byte[] exp = new byte[] { 'a', 'b', 'c' };
final byte[] act = new byte[exp.length];
in.free(exp.length);
os.write(exp[0]);
os.write(exp[1]);
os.write(exp[2]);
in.want(exp.length);
in.read(act);
assertArrayEquals(exp, act);
}
@Test
public void testTimeout_writeByte_Timeout() throws IOException {
beginWrite();
try {
os.write('\n');
fail("incorrectly write a byte");
} catch (InterruptedIOException e) {
// expected
}
assertTimeout();
}
@Test
public void testTimeout_writeBuffer_Success1() throws IOException {
final byte[] exp = new byte[] { 'a', 'b', 'c' };
final byte[] act = new byte[exp.length];
in.free(exp.length);
os.write(exp);
in.want(exp.length);
in.read(act);
assertArrayEquals(exp, act);
}
@Test
public void testTimeout_writeBuffer_Timeout() throws IOException {
beginWrite();
try {
os.write(new byte[512]);
fail("incorrectly wrote bytes");
} catch (InterruptedIOException e) {
// expected
}
assertTimeout();
}
@Test
public void testTimeout_flush_Success() throws IOException {
final boolean[] called = new boolean[1];
os = new TimeoutOutputStream(new OutputStream() {
@Override
public void write(int b) throws IOException {
fail("should not have written");
}
@Override
public void flush() throws IOException {
called[0] = true;
}
}, timer);
os.setTimeout(timeout);
os.flush();
assertTrue(called[0]);
}
@Test
public void testTimeout_flush_Timeout() throws IOException {
final boolean[] called = new boolean[1];
os = new TimeoutOutputStream(new OutputStream() {
@Override
public void write(int b) throws IOException {
fail("should not have written");
}
@Override
public void flush() throws IOException {
called[0] = true;
for (;;) {
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
InterruptedIOException e1 = new InterruptedIOException();
e1.initCause(e);
throw e1;
}
}
}
}, timer);
os.setTimeout(timeout);
beginWrite();
try {
os.flush();
fail("incorrectly flushed");
} catch (InterruptedIOException e) {
// expected
}
assertTimeout();
assertTrue(called[0]);
}
@Test
public void testTimeout_close_Success() throws IOException {
final boolean[] called = new boolean[1];
os = new TimeoutOutputStream(new OutputStream() {
@Override
public void write(int b) throws IOException {
fail("should not have written");
}
@Override
public void close() throws IOException {
called[0] = true;
}
}, timer);
os.setTimeout(timeout);
os.close();
assertTrue(called[0]);
}
@Test
public void testTimeout_close_Timeout() throws IOException {
final boolean[] called = new boolean[1];
os = new TimeoutOutputStream(new OutputStream() {
@Override
public void write(int b) throws IOException {
fail("should not have written");
}
@Override
public void close() throws IOException {
called[0] = true;
for (;;) {
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
InterruptedIOException e1 = new InterruptedIOException();
e1.initCause(e);
throw e1;
}
}
}
}, timer);
os.setTimeout(timeout);
beginWrite();
try {
os.close();
fail("incorrectly closed");
} catch (InterruptedIOException e) {
// expected
}
assertTimeout();
assertTrue(called[0]);
}
private void beginWrite() {
start = now();
}
private void assertTimeout() {
// Our timeout was supposed to be ~250 ms. Since this is a timing
// test we can't assume we spent *exactly* the timeout period, as
// there may be other activity going on in the system. Instead we
// look for the delta between the start and end times to be within
// 50 ms of the expected timeout.
//
final long wait = now() - start;
assertTrue("waited only " + wait + " ms", timeout - wait < 50);
}
private static List<Thread> active() {
Thread[] all = new Thread[16];
int n = Thread.currentThread().getThreadGroup().enumerate(all);
while (n == all.length) {
all = new Thread[all.length * 2];
n = Thread.currentThread().getThreadGroup().enumerate(all);
}
return Arrays.asList(all).subList(0, n);
}
private static long now() {
return System.currentTimeMillis();
}
private static final class FullPipeInputStream extends PipedInputStream {
FullPipeInputStream(PipedOutputStream src) throws IOException {
super(src);
src.write(new byte[PIPE_SIZE]);
}
void want(int cnt) throws IOException {
IO.skipFully(this, PIPE_SIZE - cnt);
}
void free(int cnt) throws IOException {
IO.skipFully(this, cnt);
}
}
}
|