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 * @summary Tests for HeaderParser and MessageHeader
0N/A *
0N/A * Test of HeaderParser, MessageHeader changes
0N/A * introduced for bug fix 4722333.
0N/A */
0N/A
0N/Aimport sun.net.www.HeaderParser;
0N/Aimport sun.net.www.MessageHeader;
0N/Aimport sun.net.www.protocol.http.AuthenticationHeader;
0N/Aimport java.io.*;
0N/Aimport java.util.Iterator;
0N/A
0N/Apublic class HeaderTests {
0N/A
0N/A static MessageHeader createMessageHeader (String s) {
0N/A ByteArrayInputStream bis = new ByteArrayInputStream (s.getBytes());
0N/A MessageHeader h = new MessageHeader ();
0N/A try {
0N/A h.parseHeader (bis);
0N/A } catch (IOException e) {
0N/A throw new RuntimeException ("IOException parsing header");
0N/A }
0N/A return h;
0N/A }
0N/A
0N/A /* String to parse */
0N/A
0N/A static String s1 =
0N/A "Foo: bar\r\n"+
0N/A "Fub: abc\r\n"+
0N/A "Foo:\r\n"+
0N/A "Fub: \r\n"+
0N/A "Foo: param1=one param2=\"two\" param3 param4=\"value=4\"\r\n"+
0N/A "Fub: xparam1=one xparam2=\"two\" xparam3 xparam4=\"value=4\"\r\n";
0N/A
0N/A static String s2 = "p1=1 p2=2 p3=3 p4=4 p5=5 p6=\"six\" p7=7 p8=8 p9=9 p10=10 p11=11 p12=12";
0N/A
0N/A static String s3 = "p1=1, p2=2, p3=3, p4=4, p5=5, p6=\"six\", p7=7, p8=8, p9=9, p10=10, p11=11, p12=12";
0N/A
0N/A static String s23_expect[][] = {{"p2","2"},{"p3","3"},{"p4","4"},{"p5","5"},{"p6","six"},
0N/A {"p7","7"},{"p8","8"},{"p9","9"},{"p10","10"},{"p11","11"},{"p12","12"}};
0N/A
0N/A static String s23_expect1[][] = {{"p1","1"},{"p2","2"},{"p3","3"},{"p4","4"},{"p5","5"},{"p6","six"},
0N/A {"p7","7"},{"p8","8"},{"p9","9"},{"p10","10"},{"p11","11"}};
0N/A
0N/A static String s23_expect2[][] = {{"p5","5"},{"p6","six"}};
0N/A
0N/A /* Expected header parser contents for Foo headers */
0N/A static String s1_Foo[][][] = {{{"bar", null}
0N/A },
0N/A {{"param1","one"},{"param2","two"},
0N/A {"param3", null},{"param4","value=4"}
0N/A }
0N/A };
0N/A
0N/A /* Expected header parser contents for Fub headers */
0N/A static String s1_Fub[][][] = {{{"abc", null}
0N/A },
0N/A {{"xparam1","one"},{"xparam2","two"},
0N/A {"xparam3", null},{"xparam4","value=4"}
0N/A }
0N/A };
0N/A
0N/A public static void main (String args[]) {
0N/A MessageHeader head = createMessageHeader (s1);
0N/A Iterator iter = head.multiValueIterator ("Foo");
0N/A checkHeader (iter, s1_Foo);
0N/A iter = head.multiValueIterator ("Fub");
0N/A checkHeader (iter, s1_Fub);
0N/A
0N/A HeaderParser hp = new HeaderParser (s2).subsequence (1,12);
0N/A check (hp, s23_expect);
0N/A
0N/A hp = new HeaderParser (s3).subsequence (1,12);
0N/A check (hp, s23_expect);
0N/A
0N/A hp = new HeaderParser (s3).subsequence (0,11);
0N/A check (hp, s23_expect1);
0N/A
0N/A hp = new HeaderParser (s2).subsequence (4,6);
0N/A check (hp, s23_expect2);
0N/A }
0N/A
0N/A static void checkHeader (Iterator iter, String[][][] expect) {
0N/A for (int i=0; iter.hasNext (); ) {
0N/A String s = (String) iter.next();
0N/A HeaderParser p = new HeaderParser (s);
0N/A boolean empty = check (p, expect[i]);
0N/A if (!empty) {
0N/A i++;
0N/A }
0N/A }
0N/A }
0N/A
0N/A static boolean check (HeaderParser p, String[][]expect) {
0N/A Iterator keys = p.keys();
0N/A Iterator vals = p.values();
0N/A boolean empty = true;
0N/A for (int j=0; keys.hasNext(); j++) {
0N/A empty = false;
0N/A String key = (String)keys.next();
0N/A String ival = (String)vals.next();
0N/A String val = p.findValue (key);
0N/A if (val == null && ival == null)
0N/A continue;
0N/A if (!val.equals(ival)) {
0N/A throw new RuntimeException ("Error " + val + "/" + ival);
0N/A }
0N/A if (!expect[j][0].equals (key)) {
0N/A throw new RuntimeException ("Error "+key+"/" + expect[j][0]);
0N/A }
0N/A if (expect[j][1] != null && !expect[j][1].equals (val)) {
0N/A throw new RuntimeException ("Error "+val+"/" + expect[j][1]);
0N/A }
0N/A }
0N/A return empty;
0N/A }
0N/A}