Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/openjdk-multiarch-jdk8u
Path: blob/aarch64-shenandoah-jdk8u272-b10/jdk/test/sun/net/www/protocol/http/6550798/test.java
38889 views
1
/*
2
* Copyright (c) 2010, 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 6550798
27
* @summary Using InputStream.skip with ResponseCache will cause partial data to be cached
28
* @run main/othervm test
29
*/
30
31
import java.net.*;
32
import com.sun.net.httpserver.*;
33
import java.io.*;
34
35
public class test {
36
37
final static int LEN = 16 * 1024;
38
39
public static void main(String[] args) throws Exception {
40
41
TestCache.reset();
42
HttpServer s = HttpServer.create (new InetSocketAddress(0), 10);
43
s.createContext ("/", new HttpHandler () {
44
public void handle (HttpExchange e) {
45
try {
46
byte[] buf = new byte [LEN];
47
OutputStream o = e.getResponseBody();
48
e.sendResponseHeaders(200, LEN);
49
o.write (buf);
50
e.close();
51
} catch (IOException ex) {
52
ex.printStackTrace();
53
TestCache.fail = true;
54
}
55
}
56
});
57
s.start();
58
59
System.out.println("http request with cache hander");
60
URL u = new URL("http://127.0.0.1:"+s.getAddress().getPort()+"/f");
61
URLConnection conn = u.openConnection();
62
63
InputStream is = null;
64
try {
65
// this calls into TestCache.get
66
byte[] buf = new byte[8192];
67
is = new BufferedInputStream(conn.getInputStream());
68
69
is.skip(1000);
70
71
while (is.read(buf) != -1) {
72
}
73
} finally {
74
if (is != null) {
75
// this calls into TestCache.put
76
// TestCache.put will check if the resource
77
// should be cached
78
is.close();
79
}
80
s.stop(0);
81
}
82
83
if (TestCache.fail) {
84
System.out.println ("TEST FAILED");
85
throw new RuntimeException ();
86
} else {
87
System.out.println ("TEST OK");
88
}
89
}
90
}
91
92