0N/A/*
2362N/A * Copyright (c) 2002, Oracle and/or its affiliates. All rights reserved.
0N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A *
0N/A * This code is free software; you can redistribute it and/or modify it
0N/A * under the terms of the GNU General Public License version 2 only, as
0N/A * published by the Free Software Foundation.
0N/A *
0N/A * This code is distributed in the hope that it will be useful, but WITHOUT
0N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A * version 2 for more details (a copy is included in the LICENSE file that
0N/A * accompanied this code).
0N/A *
0N/A * You should have received a copy of the GNU General Public License version
0N/A * 2 along with this work; if not, write to the Free Software Foundation,
0N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A *
2362N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2362N/A * or visit www.oracle.com if you need additional information or have any
2362N/A * questions.
0N/A */
0N/A
0N/A/*
0N/A * @test
0N/A * @bug 4635698
0N/A * @summary Check that HttpURLConnection.getResponseCode returns -1 for
0N/A * malformed status-lines in the http response.
0N/A */
0N/Aimport java.net.*;
0N/Aimport java.io.*;
0N/A
0N/Apublic class Responses {
0N/A
0N/A /*
0N/A * Test cases :-
0N/A * "Response from server" expected getResponse() and
0N/A * getResponseMessage() results
0N/A */
0N/A static Object[][] getTests() {
0N/A return new Object[][] {
0N/A { "HTTP/1.1 200 OK", "200", "OK" },
0N/A { "HTTP/1.1 404 ", "404", null },
0N/A { "HTTP/1.1 200", "200", null },
0N/A { "HTTP/1.1", "-1", null },
0N/A { "Invalid", "-1", null },
0N/A { null, "-1" , null },
0N/A };
0N/A }
0N/A
0N/A /*
0N/A * Simple http server used by test
0N/A *
0N/A * GET /<n> HTTP/1.x results in http response with the status line
0N/A * set to geTests()[<n>][0] -- eg: GET /2 results in a response of
0N/A * "HTTP/1.1 404 "
0N/A */
0N/A static class HttpServer implements Runnable {
0N/A ServerSocket ss;
0N/A
0N/A public HttpServer() {
0N/A try {
0N/A ss = new ServerSocket(0);
0N/A } catch (IOException ioe) {
0N/A throw new Error("Unable to create ServerSocket: " + ioe);
0N/A }
0N/A }
0N/A
0N/A public int port() {
0N/A return ss.getLocalPort();
0N/A }
0N/A
0N/A public void shutdown() throws IOException {
0N/A ss.close();
0N/A }
0N/A
0N/A public void run() {
0N/A Object[][] tests = getTests();
0N/A
0N/A try {
0N/A for (;;) {
0N/A Socket s = ss.accept();
0N/A
0N/A BufferedReader in = new BufferedReader(
0N/A new InputStreamReader(
0N/A s.getInputStream()));
0N/A String req = in.readLine();
0N/A int pos1 = req.indexOf(' ');
0N/A int pos2 = req.indexOf(' ', pos1+1);
0N/A
0N/A int i = Integer.parseInt(req.substring(pos1+2, pos2));
0N/A
0N/A PrintStream out = new PrintStream(
0N/A new BufferedOutputStream(
0N/A s.getOutputStream() ));
0N/A
0N/A out.print( tests[i][0] );
0N/A out.print("\r\n");
0N/A out.print("Content-Length: 0\r\n");
0N/A out.print("Connection: close\r\n");
0N/A out.print("\r\n");
0N/A out.flush();
0N/A
0N/A s.shutdownOutput();
0N/A s.close();
0N/A }
0N/A } catch (Exception e) {
0N/A }
0N/A }
0N/A }
0N/A
0N/A
0N/A public static void main(String args[]) throws Exception {
0N/A
0N/A /* start the http server */
0N/A HttpServer svr = new HttpServer();
0N/A (new Thread(svr)).start();
0N/A
0N/A int port = svr.port();
0N/A
0N/A /*
0N/A * Iterate through each test case and check that getResponseCode
0N/A * returns the expected result.
0N/A */
0N/A int failures = 0;
0N/A Object tests[][] = getTests();
0N/A for (int i=0; i<tests.length; i++) {
0N/A
0N/A System.out.println("******************");
0N/A System.out.println("Test with response: >" + tests[i][0] + "<");
0N/A
0N/A URL url = new URL("http://localhost:" + port + "/" + i);
0N/A HttpURLConnection http = (HttpURLConnection)url.openConnection();
0N/A
0N/A try {
0N/A
0N/A // test getResponseCode
0N/A //
0N/A int expectedCode = Integer.parseInt((String)tests[i][1]);
0N/A int actualCode = http.getResponseCode();
0N/A if (actualCode != expectedCode) {
0N/A System.out.println("getResponseCode returned: " + actualCode +
0N/A ", expected: " + expectedCode);
0N/A failures++;
0N/A continue;
0N/A }
0N/A
0N/A // test getResponseMessage
0N/A //
0N/A String expectedPhrase = (String)tests[i][2];
0N/A String actualPhrase = http.getResponseMessage();
0N/A if (actualPhrase == null && expectedPhrase == null) {
0N/A continue;
0N/A }
0N/A if (!actualPhrase.equals(expectedPhrase)) {
0N/A System.out.println("getResponseMessage returned: " +
0N/A actualPhrase + ", expected: " + expectedPhrase);
0N/A }
0N/A } catch (IOException e) {
0N/A e.printStackTrace();
0N/A failures++;
0N/A }
0N/A }
0N/A
0N/A /* shutdown http server */
0N/A svr.shutdown();
0N/A
0N/A if (failures > 0) {
0N/A throw new Exception(failures + " sub-test(s) failed.");
0N/A }
0N/A }
0N/A}