blob: dfd664c9cfe62e532e40dc06bfbfef32daf5c468 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
package com.vaadin.tests.requesthandlers;
import javax.servlet.http.HttpServletRequest;
import com.vaadin.server.ExternalResource;
import com.vaadin.server.VaadinServletService;
import com.vaadin.tests.components.TestBase;
import com.vaadin.tests.integration.FlagSeResource;
import com.vaadin.ui.Link;
public class AppResource404 extends TestBase {
@Override
protected void setup() {
// Add one existing resource
final FlagSeResource resource = new FlagSeResource();
resource.setCacheTime(0);
HttpServletRequest request = VaadinServletService
.getCurrentServletRequest();
String baseUrl = request.getContextPath() + request.getServletPath();
addComponent(new Link("Existing resource", resource));
addComponent(new Link("Non-existing resource", new ExternalResource(
baseUrl + "/APP/connector/0/4/asdfasdf")));
addComponent(new Link("/APP url that should give 404",
new ExternalResource(baseUrl + "/APP")));
addComponent(new Link("/APPLE url that should go to UI providers",
new ExternalResource(baseUrl + "/APPLE")));
}
@Override
protected String getDescription() {
return "Accessing the URL of a resource that has been removed or the URL following the resource URL pattern but not currently mapped to a resource should give a 404 error message";
}
@Override
protected Integer getTicketNumber() {
return Integer.valueOf(6702);
}
}
|