多线程测试

时间:2012-06-14 16:48:29

标签: java multithreading testing

我的任务是首先编写一个多线程客户端服务器应用程序,然后用很多客户端(每个发送1000条消息的100个客户端)对其进行测试。所以我已经正常工作控制台客户端 - 服务器。客户端有两个线程,一个用于输出另一个输出。现在我开始写测试了。在我看来,它的工作模式应该是:执行应该等待接受新客户端的服务器线程,之后我将执行InputThreads(将其连接到服务器)并在循环中写入测试协议。我是对的吗?

所以我写了这样的话:

public class ServerLoadTest {
    private static final Logger LOG = Logger.getLogger(ServerLoadTest.class);
    private ExecutorService clientExec = Executors.newFixedThreadPool(100);
    private ExecutorService serverExec = Executors.newFixedThreadPool(100);

    @Test
    public void test() throws IOException, JAXBException, XMLStreamException, ParserConfigurationException, SAXException, InterruptedException {        
        LOG.trace("Start testing");     
        serverExec.execute(new TestServerThread());     

        for (int i = 0; i < 100; i++) { 
            clientExec.execute(new TestClientThread());
        }

        Assert.assertTrue(true);
        LOG.trace("All working fine");
        clientExec.shutdown();
    }

}


class TestClientThread implements Runnable {
    private static final Logger LOG = Logger.getLogger(TestClientThread.class);
    private ExecutorService outputExec = Executors.newFixedThreadPool(2);

    public TestClientThread() {
        new Thread(this);
    }

    @Override
    public void run() {

        try {
            LOG.trace("Starting Socket");
            Socket s = new Socket("localhost", 4444);
            OutputThread spamming = new OutputThread(s, new PrintWriter(s.getOutputStream(), true), new BufferedReader(
                    new InputStreamReader(s.getInputStream())));
            exec.execute(spamming);

            spamming.getOut().println("HO HO Ho HO HO");

            InputThread getSpamAnswer = new InputThread(s, new BufferedReader(new InputStreamReader(s.getInputStream())));
            outputExec.execute(getSpamAnswer);

        } catch (IOException | JAXBException | XMLStreamException | ParserConfigurationException | SAXException e) {
            e.printStackTrace();
        }
    }
}

class TestServerThread implements Runnable {
    private Server king = mock(Server.class);

    public TestServerThread() {
        new Thread(this);
    }

    @SuppressWarnings("static-access")
    @Override
    public void run() {
        try {
            king.main(null);
        } catch (IOException | JAXBException | ParserConfigurationException | SAXException e) {
            Assert.assertFalse(false);
        }
    }
}

首先,服务器上有很多LOG.trace,但我在控制台中没有任何一个,当我调试时,我收到一个异常,我的客户端无法连接(我认为它没有时间为了这)。我该怎么同步呢?

P.S。服务器是多线程的,并且支持许多客户端。现在我只想从源头测试它。

1 个答案:

答案 0 :(得分:0)

您的防火墙是否打开,允许该端口上的传入连接?

此外,您并没有真正复制客户端 - 服务器体系结构,因为只有一个套接字被所有“客户端”线程共享。这可能是您的错误的来源(多个线程访问同一个对象 - 在这种情况下是一个流)。

请参阅Oracle的此文档,了解如何使用单独的进程和套接字正确设置客户端/服务器演示:http://docs.oracle.com/javase/tutorial/networking/sockets/clientServer.html这将允许您模拟实际发生的情况,并附带对代码的详细说明。