use of org.apache.wicket.protocol.http.mock.MockServletContext in project wicket by apache.
the class RequestCycleListenerTest method setUp.
/**
*/
@Before
public void setUp() {
DummyApplication application = new DummyApplication();
application.setName("dummyTestApplication");
ThreadContext.setApplication(application);
application.setServletContext(new MockServletContext(application, "/"));
application.initApplication();
errorCode = 0;
}
use of org.apache.wicket.protocol.http.mock.MockServletContext in project wicket by apache.
the class MetaInfStaticResourceReferenceTest method testWithServlet30.
/**
* Test with Servlet 3.0 container
*
* @throws MalformedURLException
* should not happen
*/
@Test
public void testWithServlet30() throws MalformedURLException {
MockApplication application = new MockApplication();
MockServletContext servletContext = new MockServletContext(application, "/");
BaseWicketTester tester = new BaseWicketTester(application, servletContext);
MetaInfStaticResourceReference metaRes = new MetaInfStaticResourceReference(getClass(), STATIC_RESOURCE_NAME);
PackageResourceReference packRes = new PackageResourceReference(getClass(), STATIC_RESOURCE_NAME);
Url packUrl = tester.getRequestCycle().mapUrlFor(packRes, null);
Url metaUrl = tester.getRequestCycle().mapUrlFor(metaRes, null);
Assert.assertNotNull(metaUrl);
Assert.assertNotNull(packUrl);
Assert.assertFalse("Meta and pack resource should not map to the same url under servlet 3.0.", metaUrl.equals(packUrl));
String metaUrlStr = metaUrl.toString();
if (metaUrlStr.charAt(1) != '/') {
metaUrlStr = "/" + metaUrlStr;
}
// meta resource is served by the servlet container under 3.0
URL metaNetUrl = servletContext.getResource(metaUrlStr);
Assert.assertNotNull("Meta resource is not found by the 3.0 servlet container.", metaNetUrl);
MockWebRequest request = new MockWebRequest(packUrl);
IRequestHandler requestHandler = tester.getApplication().getRootRequestMapper().mapRequest(request);
// the pack resource is still served by wicket
Assert.assertNotNull(requestHandler);
}
Aggregations