Search in sources :

Example 11 with MockServletConfig

use of com.github.bordertech.wcomponents.util.mock.servlet.MockServletConfig 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);
}
Also used : MockServletConfig(com.github.bordertech.wcomponents.util.mock.servlet.MockServletConfig) MockHttpSession(com.github.bordertech.wcomponents.util.mock.servlet.MockHttpSession) ServletException(javax.servlet.ServletException)

Example 12 with MockServletConfig

use of com.github.bordertech.wcomponents.util.mock.servlet.MockServletConfig 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());
}
Also used : WServletHelper(com.github.bordertech.wcomponents.servlet.WServlet.WServletHelper) UIContext(com.github.bordertech.wcomponents.UIContext) MockHttpServletRequest(com.github.bordertech.wcomponents.util.mock.servlet.MockHttpServletRequest) MockServletConfig(com.github.bordertech.wcomponents.util.mock.servlet.MockServletConfig) MockHttpSession(com.github.bordertech.wcomponents.util.mock.servlet.MockHttpSession) MockHttpServletResponse(com.github.bordertech.wcomponents.util.mock.servlet.MockHttpServletResponse) Test(org.junit.Test)

Aggregations

MockServletConfig (com.github.bordertech.wcomponents.util.mock.servlet.MockServletConfig)12 MockHttpServletRequest (com.github.bordertech.wcomponents.util.mock.servlet.MockHttpServletRequest)9 MockHttpSession (com.github.bordertech.wcomponents.util.mock.servlet.MockHttpSession)9 Test (org.junit.Test)9 MockHttpServletResponse (com.github.bordertech.wcomponents.util.mock.servlet.MockHttpServletResponse)8 WText (com.github.bordertech.wcomponents.WText)6 UIContext (com.github.bordertech.wcomponents.UIContext)2 WServletHelper (com.github.bordertech.wcomponents.servlet.WServlet.WServletHelper)2 ServletException (javax.servlet.ServletException)2 MockContainer (com.github.bordertech.wcomponents.MockContainer)1 Before (org.junit.Before)1