use of com.github.bordertech.wcomponents.util.mock.servlet.MockHttpSession in project wcomponents by BorderTech.
the class WServletPerformance_Test method testOtherServletAppCorrectness.
/**
* Basic sanity-test to ensure that the other app is performing all the processing that it should.
*
* @throws Exception an exception
*/
@Test
public void testOtherServletAppCorrectness() throws Exception {
SimpleServlet servlet = new SimpleServlet();
servlet.init(new MockServletConfig());
MockHttpSession session = new MockHttpSession();
sendOtherServletRequest(servlet, session, 0);
sendOtherServletRequest(servlet, session, 1);
SimpleFormBean bean = servlet.getFormBean(new MockHttpServletRequest(session));
Assert.assertEquals("Incorrect property1 value", "p1_1", bean.getProperty1());
Assert.assertEquals("Incorrect property2 value", "p2_1", bean.getProperty2());
}
use of com.github.bordertech.wcomponents.util.mock.servlet.MockHttpSession in project wcomponents by BorderTech.
the class WServletPerformance_Test method timeOtherServlet.
/**
* Times the other servlet execution looping the given number of times and returns the elapsed time.
*
* @param count the number of times to loop.
* @return the elapsed time, in nanoseconds.
* @throws Exception an exception
*/
private long timeOtherServlet(final int count) throws Exception {
final SimpleServlet servlet = new SimpleServlet();
servlet.init(new MockServletConfig());
final MockHttpSession simpleServletSession = new MockHttpSession();
// JIT warm-up
for (int i = 0; i < count; i++) {
sendOtherServletRequest(servlet, simpleServletSession, i);
}
simpleServletSession.getAttributes().clear();
Runnable runnable = new Runnable() {
@Override
public void run() {
try {
for (int i = 0; i < count; i++) {
sendOtherServletRequest(servlet, simpleServletSession, i);
}
} catch (Exception e) {
LOG.error("Failed to execute test", e);
}
}
};
return time(runnable);
}
use of com.github.bordertech.wcomponents.util.mock.servlet.MockHttpSession in project wcomponents by BorderTech.
the class WServletPerformance_Test method testWServletAppCorrectness.
/**
* Basic sanity-test to ensure that the WComponent app is performing all the processing that it should.
*
* @throws Exception an exception
*/
@Test
public void testWServletAppCorrectness() throws Exception {
SimpleWServlet servlet = new SimpleWServlet();
servlet.init(new MockServletConfig());
MockHttpSession session = new MockHttpSession();
// First request
sendWServletRequest(servlet, session, 0, null);
// Second request
WServletHelper helper = new WServletHelper(servlet, new MockHttpServletRequest(session), new MockHttpServletResponse());
UIContext uic = helper.getUIContext();
SimpleApp app = (SimpleApp) uic.getUI();
sendWServletRequest(servlet, session, 1, uic.getEnvironment().getSessionToken());
setActiveContext(uic);
Assert.assertEquals("Incorrect step", 2, uic.getEnvironment().getStep());
Assert.assertEquals("Incorrect property1 value", "p1_1", ((SimpleFormBean) app.beanContainer.getBean()).getProperty1());
Assert.assertEquals("Incorrect property2 value", "p2_1", ((SimpleFormBean) app.beanContainer.getBean()).getProperty2());
}
Aggregations