package org.jooby.ws; import static org.junit.Assert.assertEquals; import java.nio.ByteBuffer; import java.util.LinkedList; import java.util.concurrent.CountDownLatch; import java.util.concurrent.TimeUnit; import org.jooby.test.ServerFeature; import org.junit.After; import org.junit.Before; import org.junit.Test; import com.google.common.collect.ImmutableMap; import com.ning.http.client.AsyncHttpClient; import com.ning.http.client.AsyncHttpClientConfig; import com.ning.http.client.ws.WebSocket; import com.ning.http.client.ws.WebSocketTextListener; import com.ning.http.client.ws.WebSocketUpgradeHandler; public class TextByteBufferOnWsFeature extends ServerFeature { { renderer((value, ctx) -> ctx.send(ByteBuffer.wrap(value.toString().getBytes()))); ws("/ws/text/buff", (ws) -> { ws.send(ImmutableMap.builder().put("k", "v").build()); }).produces("json"); } private AsyncHttpClient client; @Before public void before() { client = new AsyncHttpClient(new AsyncHttpClientConfig.Builder().build()); } @After public void after() { client.close(); } @Test public void textFromByteBuff() throws Exception { LinkedList<String> messages = new LinkedList<>(); CountDownLatch latch = new CountDownLatch(1); client.prepareGet(ws("ws", "text", "buff").toString()) .execute(new WebSocketUpgradeHandler.Builder().addWebSocketListener( new WebSocketTextListener() { @Override public void onMessage(final String message) { messages.add(message); latch.countDown(); } @Override public void onOpen(final WebSocket websocket) { } @Override public void onClose(final WebSocket websocket) { } @Override public void onError(final Throwable t) { } }).build()).get(); if (latch.await(1L, TimeUnit.SECONDS)) { assertEquals("{k=v}", messages.get(0)); } } }