blob: 0918b61ead80cb880e59b79a5d8e7831bcfdd2f1 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*/
package org.apache.mina.transport.nio;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;
import java.io.IOException;
import java.net.Socket;
import java.nio.ByteBuffer;
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.TimeUnit;
import org.apache.mina.api.AbstractIoHandler;
import org.apache.mina.api.IdleStatus;
import org.apache.mina.api.IoHandler;
import org.apache.mina.api.IoSession;
import org.apache.mina.transport.nio.FixedSelectorLoopPool;
import org.apache.mina.transport.nio.NioTcpServer;
import org.apache.mina.transport.nio.SelectorLoopPool;
import org.junit.Test;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* This class test the event dispatching of {@link NioTcpServer}. It tests if alls the {@link IoHandler} events are
* correctly generated.
*
* @author <a href="http://mina.apache.org">Apache MINA Project</a>
*/
public class NioTcpServerHandlerTest {
private static final Logger LOG = LoggerFactory.getLogger(NioTcpServerHandlerTest.class);
private static final int CLIENT_COUNT = 100;
private static final int WAIT_TIME = 5000;
private final CountDownLatch msgSentLatch = new CountDownLatch(CLIENT_COUNT);
private final CountDownLatch msgReadLatch = new CountDownLatch(CLIENT_COUNT);
private final CountDownLatch openLatch = new CountDownLatch(CLIENT_COUNT);
private final CountDownLatch closedLatch = new CountDownLatch(CLIENT_COUNT);
private final CountDownLatch idleLatch = new CountDownLatch(CLIENT_COUNT);
@Test
public void generate_all_kind_of_server_event() throws IOException, InterruptedException {
final NioTcpServer server = new NioTcpServer();
server.setFilters();
server.getSessionConfig().setIdleTimeInMillis(IdleStatus.READ_IDLE, 1000);
server.setIoHandler(new Handler());
server.bind(0);
// warm up
Thread.sleep(100);
final int port = server.getServerSocketChannel().socket().getLocalPort();
final Socket[] clients = new Socket[CLIENT_COUNT];
// connect some clients
for (int i = 0; i < CLIENT_COUNT; i++) {
clients[i] = new Socket("127.0.0.1", port);
}
// does the session open message was fired ?
assertTrue(openLatch.await(WAIT_TIME, TimeUnit.MILLISECONDS));
// write some messages
for (int i = 0; i < CLIENT_COUNT; i++) {
clients[i].getOutputStream().write(("test:" + i).getBytes());
clients[i].getOutputStream().flush();
}
// test is message was received by the server
assertTrue(msgReadLatch.await(WAIT_TIME, TimeUnit.MILLISECONDS));
// does response was wrote and sent ?
assertTrue(msgSentLatch.await(WAIT_TIME, TimeUnit.MILLISECONDS));
// read the echos
final byte[] buffer = new byte[1024];
for (int i = 0; i < CLIENT_COUNT; i++) {
final int bytes = clients[i].getInputStream().read(buffer);
final String text = new String(buffer, 0, bytes);
assertEquals("test:" + i, text);
}
// does the session idle event was fired ?
assertTrue(idleLatch.await(5 * WAIT_TIME, TimeUnit.MILLISECONDS));
// close the session
assertEquals(CLIENT_COUNT, closedLatch.getCount());
for (int i = 0; i < CLIENT_COUNT; i++) {
clients[i].close();
}
// does the session close event was fired ?
assertTrue(closedLatch.await(WAIT_TIME, TimeUnit.MILLISECONDS));
server.unbind();
}
@Test
public void generateAllKindOfServerEventOneSelector() throws IOException, InterruptedException {
SelectorLoopPool selectorLoopPool = new FixedSelectorLoopPool("Server", 1);
final NioTcpServer server = new NioTcpServer(selectorLoopPool.getSelectorLoop(), selectorLoopPool, null);
server.setFilters();
server.setIoHandler(new Handler());
server.bind(0);
// warm up
Thread.sleep(100);
final int port = server.getServerSocketChannel().socket().getLocalPort();
final Socket[] clients = new Socket[CLIENT_COUNT];
// connect some clients
for (int i = 0; i < CLIENT_COUNT; i++) {
clients[i] = new Socket("127.0.0.1", port);
}
// does the session open message was fired ?
assertTrue(openLatch.await(WAIT_TIME, TimeUnit.MILLISECONDS));
// write some messages
for (int i = 0; i < CLIENT_COUNT; i++) {
clients[i].getOutputStream().write(("test:" + i).getBytes());
clients[i].getOutputStream().flush();
}
// test is message was received by the server
assertTrue(msgReadLatch.await(WAIT_TIME, TimeUnit.MILLISECONDS));
// does response was wrote and sent ?
assertTrue(msgSentLatch.await(WAIT_TIME, TimeUnit.MILLISECONDS));
// read the echos
final byte[] buffer = new byte[1024];
for (int i = 0; i < CLIENT_COUNT; i++) {
final int bytes = clients[i].getInputStream().read(buffer);
final String text = new String(buffer, 0, bytes);
assertEquals("test:" + i, text);
}
// close the session
assertEquals(CLIENT_COUNT, closedLatch.getCount());
for (int i = 0; i < CLIENT_COUNT; i++) {
clients[i].close();
}
// does the session close event was fired ?
assertTrue(closedLatch.await(WAIT_TIME, TimeUnit.MILLISECONDS));
server.unbind();
}
private class Handler extends AbstractIoHandler {
@Override
public void sessionOpened(final IoSession session) {
LOG.debug("** session open");
openLatch.countDown();
}
@Override
public void sessionClosed(final IoSession session) {
LOG.debug("** session closed");
closedLatch.countDown();
}
@Override
public void messageReceived(final IoSession session, final Object message) {
LOG.debug("** message received {}", message);
msgReadLatch.countDown();
if (message instanceof ByteBuffer) {
ByteBuffer msg = (ByteBuffer) message;
session.write(ByteBuffer.allocate(msg.remaining()).put(msg).flip());
} else {
fail("non bytebuffer received??");
}
}
@Override
public void messageSent(final IoSession session, final Object message) {
LOG.debug("** message sent {}", message);
msgSentLatch.countDown();
}
@Override
public void sessionIdle(IoSession session, IdleStatus status) {
if (status == IdleStatus.READ_IDLE) {
idleLatch.countDown();
}
}
}
}