Skip to content
Snippets Groups Projects
Commit 64d644d8 authored by akwizgran's avatar akwizgran
Browse files

Clean up output streams in unit test.

This fixes some lint warnings and may also fix dev task #102.
parent d94637b5
No related branches found
No related tags found
No related merge requests found
......@@ -31,7 +31,7 @@ public class StreamWriterImplTest extends BriarTestCase {
}
@Test
public void testFlushWithoutBufferedDataWritesFrame() throws Exception {
public void testFlushWithoutBufferedDataOnlyFlushes() throws Exception {
Mockery context = new Mockery();
final FrameWriter writer = context.mock(FrameWriter.class);
StreamWriterImpl w = new StreamWriterImpl(writer, FRAME_LENGTH);
......@@ -41,6 +41,16 @@ public class StreamWriterImplTest extends BriarTestCase {
}});
w.flush();
context.assertIsSatisfied();
// Clean up
context.checking(new Expectations() {{
// Closing the writer writes a final frame and flushes again
oneOf(writer).writeFrame(with(any(byte[].class)), with(0),
with(true));
oneOf(writer).flush();
}});
w.close();
context.assertIsSatisfied();
}
@Test
......@@ -59,6 +69,16 @@ public class StreamWriterImplTest extends BriarTestCase {
w.write(0);
w.flush();
context.assertIsSatisfied();
// Clean up
context.checking(new Expectations() {{
// Closing the writer writes a final frame and flushes again
oneOf(writer).writeFrame(with(any(byte[].class)), with(0),
with(true));
oneOf(writer).flush();
}});
w.close();
context.assertIsSatisfied();
}
@Test
......@@ -75,6 +95,16 @@ public class StreamWriterImplTest extends BriarTestCase {
w.write(0);
}
context.assertIsSatisfied();
// Clean up
context.checking(new Expectations() {{
// Closing the writer writes a final frame and flushes again
oneOf(writer).writeFrame(with(any(byte[].class)), with(0),
with(true));
oneOf(writer).flush();
}});
w.close();
context.assertIsSatisfied();
}
@Test
......@@ -96,6 +126,16 @@ public class StreamWriterImplTest extends BriarTestCase {
w.write(b);
w.write(b);
context.assertIsSatisfied();
// Clean up
context.checking(new Expectations() {{
// Closing the writer writes a final frame and flushes again
oneOf(writer).writeFrame(with(any(byte[].class)), with(0),
with(true));
oneOf(writer).flush();
}});
w.close();
context.assertIsSatisfied();
}
@Test
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment