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 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193
|
/*
* Copyright (c) 2001, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/**
*
* @bug 4333920
* @bug 4394548
* @summary Check that chunked encoding response doesn't cause
* getInputStream to block until last chunk arrives.
* Also regression against NPE in ChunkedInputStream.
*/
import java.net.*;
import java.io.*;
import java.util.Random;
public class ChunkedEncoding implements Runnable {
ServerSocket ss;
/*
* Our "http" server to return a chunked response
*/
public void run() {
try {
Socket s = ss.accept();
PrintStream out = new PrintStream(
new BufferedOutputStream(
s.getOutputStream() ));
/* send the header */
out.print("HTTP/1.1 200\r\n");
out.print("Transfer-Encoding: chunked\r\n");
out.print("Content-Type: text/html\r\n");
out.print("\r\n");
out.flush();
/* delay the server before first chunk */
Thread.sleep(5000);
/*
* Our response will be of random length
* but > 32k
*/
Random rand = new Random();
int len;
do {
len = rand.nextInt(128*1024);
} while (len < 32*1024);
/*
* Our chunk size will be 2-32k
*/
int chunkSize;
do {
chunkSize = rand.nextInt(len / 3);
} while (chunkSize < 2*1024);
/*
* Generate random content and check sum it
*/
byte buf[] = new byte[len];
int cs = 0;
for (int i=0; i<len; i++) {
buf[i] = (byte)('a' + rand.nextInt(26));
cs = (cs + buf[i]) % 65536;
}
/*
* Stream the chunks to the client
*/
int remaining = len;
int pos = 0;
while (remaining > 0) {
int size = Math.min(remaining, chunkSize);
out.print( Integer.toHexString(size) );
out.print("\r\n");
out.write( buf, pos, size );
pos += size;
remaining -= size;
out.print("\r\n");
out.flush();
}
/* send EOF chunk */
out.print("0\r\n");
out.flush();
/*
* Send trailer with checksum
*/
String trailer = "Checksum:" + cs + "\r\n";
out.print(trailer);
out.print("\r\n");
out.flush();
s.close();
ss.close();
} catch (Exception e) {
e.printStackTrace();
}
}
ChunkedEncoding() throws Exception {
/* start the server */
ss = new ServerSocket(0);
(new Thread(this)).start();
/* establish http connection to server */
String uri = "http://localhost:" +
Integer.toString(ss.getLocalPort()) +
"/foo";
URL url = new URL(uri);
HttpURLConnection http = (HttpURLConnection)url.openConnection();
/*
* Server should only send headers if TE:trailers
* specified - see updated HTTP 1.1 spec.
*/
http.setRequestProperty("TE", "trailers");
/* Time how long the getInputStream takes */
long ts = System.currentTimeMillis();
InputStream in = http.getInputStream();
long te = System.currentTimeMillis();
/*
* If getInputStream takes >2 seconds it probably means
* that the implementation is waiting for the chunks to
* arrive.
*/
if ( (te-ts) > 2000) {
throw new Exception("getInputStream didn't return immediately");
}
/*
* Read the stream and checksum it as it arrives
*/
int nread;
int cs = 0;
byte b[] = new byte[1024];
do {
nread = in.read(b);
if (nread > 0) {
for (int i=0; i<nread; i++) {
cs = (cs + b[i]) % 65536;
}
}
} while (nread > 0);
/*
* Verify that the checksums match
*/
String trailer = http.getHeaderField("Checksum");
if (trailer == null) {
throw new Exception("Checksum trailer missing from response");
}
int rcvd_cs = Integer.parseInt(trailer);
if (rcvd_cs != cs) {
throw new Exception("Trailer checksum doesn't equal calculated checksum");
}
http.disconnect();
}
public static void main(String args[]) throws Exception {
new ChunkedEncoding();
}
}
|