blob: 6f7a0269b7e377177a040c1f03758315a08379f7 [file] [log] [blame]
duke6e45e102007-12-01 00:00:00 +00001/*
ohairbf91ea12011-04-06 22:06:11 -07002 * Copyright (c) 2003, 2011, Oracle and/or its affiliates. All rights reserved.
duke6e45e102007-12-01 00:00:00 +00003 * 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 *
ohair2283b9d2010-05-25 15:58:33 -070019 * 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.
duke6e45e102007-12-01 00:00:00 +000022 */
23
24/*
25 * @test
26 * @bug 4802209
27 * @summary check that the right utf-8 encoder is used
28 */
29
30import java.io.*;
31import java.net.*;
32
33public class Encode implements Runnable {
34 public static void main(String args[]) throws Exception {
35 new Encode();
36 }
37
smarks40863b92011-03-01 15:05:32 -080038 final ServerSocket ss = new ServerSocket(0);
39
duke6e45e102007-12-01 00:00:00 +000040 Encode() throws Exception {
duke6e45e102007-12-01 00:00:00 +000041 (new Thread(this)).start();
42 String toEncode = "\uD800\uDC00 \uD801\uDC01 ";
43 String enc1 = URLEncoder.encode(toEncode, "UTF-8");
44 byte bytes[] = {};
45 ByteArrayInputStream bais = new ByteArrayInputStream(bytes);
46 InputStreamReader reader = new InputStreamReader( bais, "8859_1");
47 String url = "http://localhost:" + Integer.toString(ss.getLocalPort()) +
48 "/missing.nothtml";
49 HttpURLConnection uc = (HttpURLConnection)new URL(url).openConnection();
50 uc.connect();
smarks40863b92011-03-01 15:05:32 -080051 try {
52 String enc2 = URLEncoder.encode(toEncode, "UTF-8");
53 if (!enc1.equals(enc2)) {
54 System.out.println("test failed");
55 throw new RuntimeException("test failed");
56 }
57 } finally {
58 uc.disconnect();
59 }
duke6e45e102007-12-01 00:00:00 +000060 }
61
duke6e45e102007-12-01 00:00:00 +000062 public void run() {
smarks40863b92011-03-01 15:05:32 -080063 try (ServerSocket serv = ss;
64 Socket s = serv.accept();
65 BufferedReader in =
66 new BufferedReader(new InputStreamReader(s.getInputStream())))
67 {
duke6e45e102007-12-01 00:00:00 +000068 String req = in.readLine();
smarks40863b92011-03-01 15:05:32 -080069 try (OutputStream os = s.getOutputStream();
70 BufferedOutputStream bos = new BufferedOutputStream(os);
71 PrintStream out = new PrintStream(bos))
72 {
73 out.print("HTTP/1.1 403 Forbidden\r\n");
74 out.print("\r\n");
75 }
duke6e45e102007-12-01 00:00:00 +000076 } catch (Exception e) {
77 e.printStackTrace();
78 }
79 }
80}