use of io.netty.handler.codec.http.HttpObject in project jocean-http by isdom.
the class RxNettysTestCase method test_BUILD_FULLRESPONSE_WhenNoResponse.
@Test
public final void test_BUILD_FULLRESPONSE_WhenNoResponse() {
final HttpContent[] resp_contents = Nettys4Test.buildContentArray(REQ_CONTENT.getBytes(Charsets.UTF_8), 1);
final List<HttpObject> resps = new ArrayList<HttpObject>() {
private static final long serialVersionUID = 1L;
{
this.addAll(Arrays.asList(resp_contents));
this.add(LastHttpContent.EMPTY_LAST_CONTENT);
}
};
final FullHttpResponse fullresp = RxNettys.BUILD_FULL_RESPONSE.call(resps.toArray(new HttpObject[0]));
assertNull(fullresp);
}
use of io.netty.handler.codec.http.HttpObject in project jocean-http by isdom.
the class RxNettysTestCase method test_BUILD_FULL_RESPONSE_WhenNoLastContent.
@Test
public final void test_BUILD_FULL_RESPONSE_WhenNoLastContent() {
final DefaultHttpResponse response = new DefaultHttpResponse(HttpVersion.HTTP_1_1, HttpResponseStatus.OK);
final HttpContent[] resp_contents = Nettys4Test.buildContentArray(REQ_CONTENT.getBytes(Charsets.UTF_8), 1);
final List<HttpObject> resps = new ArrayList<HttpObject>() {
private static final long serialVersionUID = 1L;
{
this.add(response);
this.addAll(Arrays.asList(resp_contents));
}
};
final FullHttpResponse fullresp = RxNettys.BUILD_FULL_RESPONSE.call(resps.toArray(new HttpObject[0]));
assertNull(fullresp);
}
use of io.netty.handler.codec.http.HttpObject in project jocean-http by isdom.
the class RxNettysTestCase method testAsHttpResponseOp.
@Test
public final void testAsHttpResponseOp() {
final TestSubscriber<HttpResponse> testSubscriber = new TestSubscriber<>();
Observable.<HttpObject>just(new HttpObject() {
@Override
public DecoderResult decoderResult() {
return null;
}
@Override
public void setDecoderResult(DecoderResult result) {
}
@Override
public DecoderResult getDecoderResult() {
return null;
}
}).compose(RxNettys.asHttpResponse()).subscribe(testSubscriber);
testSubscriber.assertNoValues();
testSubscriber.assertNotCompleted();
testSubscriber.assertError(RuntimeException.class);
}
use of io.netty.handler.codec.http.HttpObject in project jocean-http by isdom.
the class RxNettysTestCase method test_BUILD_FULL_REQUEST_ForFullRequestAsArray.
@Test
public final void test_BUILD_FULL_REQUEST_ForFullRequestAsArray() throws Exception {
final DefaultHttpRequest request = new DefaultHttpRequest(HttpVersion.HTTP_1_1, HttpMethod.POST, "/");
final HttpContent[] req_contents = Nettys4Test.buildContentArray(REQ_CONTENT.getBytes(Charsets.UTF_8), 1);
final List<HttpObject> reqs = new ArrayList<HttpObject>() {
private static final long serialVersionUID = 1L;
{
this.add(request);
this.addAll(Arrays.asList(req_contents));
this.add(LastHttpContent.EMPTY_LAST_CONTENT);
}
};
RxActions.applyArrayBy(req_contents, new Action1<HttpContent>() {
@Override
public void call(final HttpContent c) {
assertEquals(1, c.refCnt());
}
});
final FullHttpRequest fullreq = RxNettys.BUILD_FULL_REQUEST.call(reqs.toArray(new HttpObject[0]));
assertNotNull(fullreq);
RxActions.applyArrayBy(req_contents, new Action1<HttpContent>() {
@Override
public void call(final HttpContent c) {
assertEquals(2, c.refCnt());
}
});
assertEquals(REQ_CONTENT, new String(Nettys.dumpByteBufAsBytes(fullreq.content()), Charsets.UTF_8));
}
use of io.netty.handler.codec.http.HttpObject in project jocean-http by isdom.
the class RxNettysTestCase method test_BUILD_FULL_RESPONSE_ForFullResponseAsArray.
@Test
public final void test_BUILD_FULL_RESPONSE_ForFullResponseAsArray() throws Exception {
final DefaultHttpResponse response = new DefaultHttpResponse(HttpVersion.HTTP_1_1, HttpResponseStatus.OK);
final HttpContent[] resp_contents = Nettys4Test.buildContentArray(REQ_CONTENT.getBytes(Charsets.UTF_8), 1);
final List<HttpObject> reqs = new ArrayList<HttpObject>() {
private static final long serialVersionUID = 1L;
{
this.add(response);
this.addAll(Arrays.asList(resp_contents));
this.add(LastHttpContent.EMPTY_LAST_CONTENT);
}
};
RxActions.applyArrayBy(resp_contents, new Action1<HttpContent>() {
@Override
public void call(final HttpContent c) {
assertEquals(1, c.refCnt());
}
});
final FullHttpResponse fullresp = RxNettys.BUILD_FULL_RESPONSE.call(reqs.toArray(new HttpObject[0]));
assertNotNull(fullresp);
RxActions.applyArrayBy(resp_contents, new Action1<HttpContent>() {
@Override
public void call(final HttpContent c) {
assertEquals(2, c.refCnt());
}
});
assertEquals(REQ_CONTENT, new String(Nettys.dumpByteBufAsBytes(fullresp.content()), Charsets.UTF_8));
}
Aggregations