Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/jdk/sun/net/www/protocol/http/SetChunkedStreamingMode.java
41159 views
1
/*
2
* Copyright (c) 2004, 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 5049976
27
* @modules java.base/sun.net.www
28
* @library ../../httptest/
29
* @library /test/lib
30
* @build HttpCallback TestHttpServer ClosedChannelList HttpTransaction
31
* @run main SetChunkedStreamingMode
32
* @summary Unspecified NPE is thrown when streaming output mode is enabled
33
*/
34
35
import java.io.*;
36
import java.net.*;
37
import jdk.test.lib.net.URIBuilder;
38
39
public class SetChunkedStreamingMode implements HttpCallback {
40
41
void okReply (HttpTransaction req) throws IOException {
42
req.setResponseEntityBody ("Hello .");
43
req.sendResponse (200, "Ok");
44
System.out.println ("Server: sent response");
45
req.orderlyClose();
46
}
47
48
public void request (HttpTransaction req) {
49
try {
50
okReply (req);
51
} catch (IOException e) {
52
e.printStackTrace();
53
}
54
}
55
56
static void read (InputStream is) throws IOException {
57
int c;
58
System.out.println ("reading");
59
while ((c=is.read()) != -1) {
60
System.out.write (c);
61
}
62
System.out.println ("");
63
System.out.println ("finished reading");
64
}
65
66
static TestHttpServer server;
67
68
public static void main (String[] args) throws Exception {
69
try {
70
server = new TestHttpServer(new SetChunkedStreamingMode(), 1, 10,
71
InetAddress.getLoopbackAddress(), 0);
72
System.out.println ("Server: listening on port: " + server.getLocalPort());
73
URL url = URIBuilder.newBuilder()
74
.scheme("http")
75
.loopback()
76
.port(server.getLocalPort())
77
.path("/")
78
.toURL();
79
System.out.println ("Client: connecting to " + url);
80
HttpURLConnection urlc = (HttpURLConnection)url.openConnection();
81
urlc.setChunkedStreamingMode (0);
82
urlc.setRequestMethod("POST");
83
urlc.setDoOutput(true);
84
InputStream is = urlc.getInputStream();
85
} catch (Exception e) {
86
if (server != null) {
87
server.terminate();
88
}
89
throw e;
90
}
91
server.terminate();
92
}
93
94
public static void except (String s) {
95
server.terminate();
96
throw new RuntimeException (s);
97
}
98
}
99
100