Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/jdk/sun/net/www/protocol/http/UserAuth.java
41159 views
1
/*
2
* Copyright (c) 2006, 2019, Oracle and/or its affiliates. All rights reserved.
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
*
5
* This code is free software; you can redistribute it and/or modify it
6
* under the terms of the GNU General Public License version 2 only, as
7
* published by the Free Software Foundation.
8
*
9
* This code is distributed in the hope that it will be useful, but WITHOUT
10
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12
* version 2 for more details (a copy is included in the LICENSE file that
13
* accompanied this code).
14
*
15
* You should have received a copy of the GNU General Public License version
16
* 2 along with this work; if not, write to the Free Software Foundation,
17
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18
*
19
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20
* or visit www.oracle.com if you need additional information or have any
21
* questions.
22
*/
23
24
/*
25
* @test
26
* @bug 6421122
27
* @modules jdk.httpserver
28
* @run main/othervm UserAuth
29
* @summary Authorization header removed for preemptive authentication by user code
30
*/
31
32
import java.net.*;
33
import com.sun.net.httpserver.*;
34
import java.util.*;
35
import java.io.*;
36
import java.util.concurrent.Executors;
37
import java.util.concurrent.ExecutorService;
38
import static java.net.Proxy.NO_PROXY;
39
40
public class UserAuth
41
{
42
com.sun.net.httpserver.HttpServer httpServer;
43
ExecutorService executorService;
44
45
public static void main(String[] args) {
46
new UserAuth();
47
}
48
49
public UserAuth() {
50
try {
51
startHttpServer();
52
doClient();
53
} catch (IOException ioe) {
54
ioe.printStackTrace();
55
}
56
}
57
58
void doClient() {
59
try {
60
InetSocketAddress address = httpServer.getAddress();
61
62
// GET Request
63
URL url = new URL("http://" + address.getHostName() + ":" + address.getPort() + "/redirect/");
64
HttpURLConnection uc = (HttpURLConnection)url.openConnection(NO_PROXY);
65
uc.setRequestProperty("Authorization", "testString:ValueDoesNotMatter");
66
int resp = uc.getResponseCode();
67
68
System.out.println("Response Code is " + resp);
69
if (resp != 200)
70
throw new RuntimeException("Failed: Authorization header was not retained after redirect");
71
72
} catch (IOException e) {
73
e.printStackTrace();
74
} finally {
75
httpServer.stop(1);
76
executorService.shutdown();
77
}
78
}
79
80
/**
81
* Http Server
82
*/
83
void startHttpServer() throws IOException {
84
InetAddress address = InetAddress.getLocalHost();
85
if (!InetAddress.getByName(address.getHostName()).equals(address)) {
86
// if this happens then we should possibly change the client
87
// side to use the address literal in its URL instead of
88
// the host name.
89
throw new IOException(address.getHostName()
90
+ " resolves to "
91
+ InetAddress.getByName(address.getHostName())
92
+ " not to "
93
+ address + ": check host configuration.");
94
}
95
96
httpServer = com.sun.net.httpserver.HttpServer.create(new InetSocketAddress(address, 0), 0);
97
98
// create HttpServer context
99
HttpContext ctx = httpServer.createContext("/redirect/", new RedirectHandler());
100
HttpContext ctx1 = httpServer.createContext("/doStuff/", new HasAuthHandler());
101
102
executorService = Executors.newCachedThreadPool();
103
httpServer.setExecutor(executorService);
104
httpServer.start();
105
}
106
107
class RedirectHandler implements HttpHandler {
108
public void handle(HttpExchange t) throws IOException {
109
InetSocketAddress address = httpServer.getAddress();
110
String redirectUrl = "http://" + address.getHostName() + ":" + address.getPort() + "/doStuff/";
111
112
Headers resHeaders = t.getResponseHeaders();
113
resHeaders.add("Location", redirectUrl);
114
115
t.sendResponseHeaders(307, -1);
116
t.close();
117
}
118
}
119
120
class HasAuthHandler implements HttpHandler {
121
public void handle(HttpExchange t) throws IOException {
122
Headers reqHeaders = t.getRequestHeaders();
123
124
List<String> auth = reqHeaders.get("Authorization");
125
126
if (auth == null || !auth.get(0).equals("testString:ValueDoesNotMatter"))
127
t.sendResponseHeaders(400, -1);
128
129
t.sendResponseHeaders(200, -1);
130
t.close();
131
}
132
}
133
134
135
136
}
137
138