Improve the unit test for #1742

This commit is contained in:
Trustin Lee 2013-12-16 21:55:14 +09:00
parent af07cc95fa
commit 61ed9476ae

View File

@ -82,6 +82,7 @@ public class HttpServerCodecTest {
// Ensure the aggregator writes a 100 Continue response.
ByteBuf continueResponse = (ByteBuf) ch.readOutbound();
assertThat(continueResponse.toString(CharsetUtil.UTF_8), is("HTTP/1.1 100 Continue\r\n\r\n"));
continueResponse.release();
// But nothing more.
assertThat(ch.readOutbound(), is(nullValue()));
@ -99,6 +100,17 @@ public class HttpServerCodecTest {
// But nothing more.
assertThat(ch.readInbound(), is(nullValue()));
// Send the actual response.
FullHttpResponse res = new DefaultFullHttpResponse(HttpVersion.HTTP_1_1, HttpResponseStatus.CREATED);
res.content().writeBytes("OK".getBytes(CharsetUtil.UTF_8));
res.headers().set(CONTENT_LENGTH, 2);
ch.writeOutbound(res);
// Ensure the encoder handles the response after handling 100 Continue.
ByteBuf encodedRes = (ByteBuf) ch.readOutbound();
assertThat(encodedRes.toString(CharsetUtil.UTF_8), is("HTTP/1.1 201 Created\r\nContent-Length: 2\r\n\r\nOK"));
encodedRes.release();
ch.finish();
}