-
Notifications
You must be signed in to change notification settings - Fork 109
/
TestServlet7.java
85 lines (75 loc) · 2.72 KB
/
TestServlet7.java
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/*
* Copyright (c) 2017, 2018 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* This Source Code may also be made available under the following Secondary
* Licenses when the conditions for such availability set forth in the
* Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
* version 2 with the GNU Classpath Exception, which is available at
* https://www.gnu.org/software/classpath/license.html.
*
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
*/
package com.sun.ts.tests.servlet.spec.serverpush;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.PushBuilder;
import java.io.IOException;
import java.io.PrintWriter;
public class TestServlet7 extends HttpServlet {
private final static String[] METHODS = { "", "POST", "PUT", "DELETE",
"CONNECT", "OPTIONS", "TRACE" };
@Override
protected void doGet(HttpServletRequest req, HttpServletResponse resp)
throws ServletException, IOException {
PrintWriter pw = resp.getWriter();
PushBuilder pb = req.newPushBuilder();
boolean pass = true;
try {
pb.push();
pw.println(
"IllegalStateException should be thrown if there was no call to path(java.lang.String) on this instance between its instantiation.");
pass = false;
} catch (IllegalStateException e) {
}
pb = req.newPushBuilder();
pb.path("index.html");
pb.push();
try {
pb.push();
pw.println(
"IllegalStateException should be thrown if there was no call to path(java.lang.String) on this instance between the last call to push() that did not throw an IllegalStateException.");
pass = false;
} catch (IllegalStateException e) {
}
pb = req.newPushBuilder();
try {
pb.method(null);
pw.println(
"NullPointerException should be thrown if the argument of method() is null");
pass = false;
} catch (NullPointerException e) {
}
for (String method : METHODS) {
if (!testMethod(pb, pw, method))
pass = false;
}
if (pass)
pw.println("test passed");
}
private boolean testMethod(PushBuilder pb, PrintWriter pw, String method) {
try {
pb.method(method);
pw.println("IllegalArgumentException should be thrown if set method \""
+ method + "\" to be used for the push");
return false;
} catch (IllegalArgumentException e) {
}
return true;
}
}