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