HeaderTests.java revision 2362
7321N/A/*
7321N/A * Copyright (c) 2002, Oracle and/or its affiliates. All rights reserved.
7321N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7321N/A *
7321N/A * This code is free software; you can redistribute it and/or modify it
7321N/A * under the terms of the GNU General Public License version 2 only, as
7321N/A * published by the Free Software Foundation.
7321N/A *
7321N/A * This code is distributed in the hope that it will be useful, but WITHOUT
7321N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
7321N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
7321N/A * version 2 for more details (a copy is included in the LICENSE file that
7321N/A * accompanied this code).
7321N/A *
7321N/A * You should have received a copy of the GNU General Public License version
7321N/A * 2 along with this work; if not, write to the Free Software Foundation,
7321N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
7321N/A *
7321N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
7321N/A * or visit www.oracle.com if you need additional information or have any
7321N/A * questions.
7321N/A */
7321N/A
7321N/A/**
7321N/A * @test
7321N/A * @summary Tests for HeaderParser and MessageHeader
7321N/A *
7321N/A * Test of HeaderParser, MessageHeader changes
7321N/A * introduced for bug fix 4722333.
7321N/A */
7321N/A
7321N/Aimport sun.net.www.HeaderParser;
7321N/Aimport sun.net.www.MessageHeader;
7321N/Aimport sun.net.www.protocol.http.AuthenticationHeader;
7321N/Aimport java.io.*;
7321N/Aimport java.util.Iterator;
7321N/A
7321N/Apublic class HeaderTests {
7321N/A
7321N/A static MessageHeader createMessageHeader (String s) {
7321N/A ByteArrayInputStream bis = new ByteArrayInputStream (s.getBytes());
7321N/A MessageHeader h = new MessageHeader ();
7321N/A try {
7321N/A h.parseHeader (bis);
7321N/A } catch (IOException e) {
7321N/A throw new RuntimeException ("IOException parsing header");
7321N/A }
7321N/A return h;
7321N/A }
7321N/A
7321N/A /* String to parse */
7321N/A
7321N/A static String s1 =
7321N/A "Foo: bar\r\n"+
7321N/A "Fub: abc\r\n"+
7321N/A "Foo:\r\n"+
7321N/A "Fub: \r\n"+
7321N/A "Foo: param1=one param2=\"two\" param3 param4=\"value=4\"\r\n"+
7321N/A "Fub: xparam1=one xparam2=\"two\" xparam3 xparam4=\"value=4\"\r\n";
7321N/A
7321N/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";
7321N/A
7321N/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";
7321N/A
7321N/A static String s23_expect[][] = {{"p2","2"},{"p3","3"},{"p4","4"},{"p5","5"},{"p6","six"},
7321N/A {"p7","7"},{"p8","8"},{"p9","9"},{"p10","10"},{"p11","11"},{"p12","12"}};
7321N/A
7321N/A static String s23_expect1[][] = {{"p1","1"},{"p2","2"},{"p3","3"},{"p4","4"},{"p5","5"},{"p6","six"},
7321N/A {"p7","7"},{"p8","8"},{"p9","9"},{"p10","10"},{"p11","11"}};
7321N/A
7321N/A static String s23_expect2[][] = {{"p5","5"},{"p6","six"}};
7321N/A
7321N/A /* Expected header parser contents for Foo headers */
7321N/A static String s1_Foo[][][] = {{{"bar", null}
7321N/A },
7321N/A {{"param1","one"},{"param2","two"},
7321N/A {"param3", null},{"param4","value=4"}
7321N/A }
7321N/A };
7321N/A
7321N/A /* Expected header parser contents for Fub headers */
7321N/A static String s1_Fub[][][] = {{{"abc", null}
7321N/A },
7321N/A {{"xparam1","one"},{"xparam2","two"},
7321N/A {"xparam3", null},{"xparam4","value=4"}
7321N/A }
7321N/A };
7321N/A
7321N/A public static void main (String args[]) {
7321N/A MessageHeader head = createMessageHeader (s1);
7321N/A Iterator iter = head.multiValueIterator ("Foo");
7321N/A checkHeader (iter, s1_Foo);
7321N/A iter = head.multiValueIterator ("Fub");
7321N/A checkHeader (iter, s1_Fub);
7321N/A
7321N/A HeaderParser hp = new HeaderParser (s2).subsequence (1,12);
7321N/A check (hp, s23_expect);
7321N/A
7321N/A hp = new HeaderParser (s3).subsequence (1,12);
7321N/A check (hp, s23_expect);
7321N/A
7321N/A hp = new HeaderParser (s3).subsequence (0,11);
7321N/A check (hp, s23_expect1);
7321N/A
7321N/A hp = new HeaderParser (s2).subsequence (4,6);
7321N/A check (hp, s23_expect2);
7321N/A }
7321N/A
7321N/A static void checkHeader (Iterator iter, String[][][] expect) {
7321N/A for (int i=0; iter.hasNext (); ) {
7321N/A String s = (String) iter.next();
7321N/A HeaderParser p = new HeaderParser (s);
7321N/A boolean empty = check (p, expect[i]);
7321N/A if (!empty) {
7321N/A i++;
7321N/A }
7321N/A }
7321N/A }
7321N/A
7321N/A static boolean check (HeaderParser p, String[][]expect) {
7321N/A Iterator keys = p.keys();
7321N/A Iterator vals = p.values();
7321N/A boolean empty = true;
7321N/A for (int j=0; keys.hasNext(); j++) {
7321N/A empty = false;
7321N/A String key = (String)keys.next();
7321N/A String ival = (String)vals.next();
7321N/A String val = p.findValue (key);
7321N/A if (val == null && ival == null)
7321N/A continue;
7321N/A if (!val.equals(ival)) {
7321N/A throw new RuntimeException ("Error " + val + "/" + ival);
7321N/A }
7321N/A if (!expect[j][0].equals (key)) {
7321N/A throw new RuntimeException ("Error "+key+"/" + expect[j][0]);
7321N/A }
7321N/A if (expect[j][1] != null && !expect[j][1].equals (val)) {
7321N/A throw new RuntimeException ("Error "+val+"/" + expect[j][1]);
7321N/A }
7321N/A }
7321N/A return empty;
7321N/A }
7321N/A}
7321N/A