public void testSuccess() throws Exception { int ticket = dealer.seekingSocket(seeker); request.addInput("ticket", ticket + ""); Response response = responder.makeResponse(context, request); response.sendTo(sender); assertEquals("", sender.sentData()); }
public void testMissingSeeker() throws Exception { request.addInput("ticket", "123"); Response response = responder.makeResponse(context, request); response.sendTo(sender); assertHasRegexp( "There are no clients waiting for a socket with ticketNumber 123", sender.sentData()); assertTrue(sender.isClosed()); assertEquals(404, response.getStatus()); }