blob: 60d05506b420c2b97078c264c61d9a5a8a5d03c9 [file] [log] [blame]
chegar1d735c22011-10-04 13:48:41 +01001/*
2 * Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved.
3 * 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 *
19 * 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.
22 */
23
24/*
25 * @test
26 * @bug 6953455
27 * @summary CookieStore.add() cannot handle null URI parameter
28 */
29
30import java.net.CookieManager;
31import java.net.CookieStore;
32import java.net.HttpCookie;
33import java.net.URI;
34import java.net.URISyntaxException;
35import java.util.List;
36
37public class NullUriCookieTest {
38 static boolean fail = false;
39
40 public static void main(String[] args) throws Exception {
41 checkCookieNullUri();
42 }
43
44 static void checkCookieNullUri() throws Exception {
45 //get a cookie store implementation and add a cookie to the store with null URI
46 CookieStore cookieStore = (new CookieManager()).getCookieStore();
47 HttpCookie cookie = new HttpCookie("MY_COOKIE", "MY_COOKIE_VALUE");
48 cookie.setDomain("foo.com");
49 cookieStore.add(null, cookie);
50
51 //Retrieve added cookie
52 URI uri = new URI("http://foo.com");
53 List<HttpCookie> addedCookieList = cookieStore.get(uri);
54
55 //Verify CookieStore behaves well
56 if (addedCookieList.size() != 1) {
57 fail = true;
58 }
59 checkFail("Abnormal size of cookie jar");
60
61 for (HttpCookie chip : addedCookieList) {
62 if (!chip.equals(cookie)) {
63 fail = true;
64 }
65 }
66 checkFail("Cookie not retrieved from Cookie Jar");
67 boolean ret = cookieStore.remove(null,cookie);
68 if (!ret) {
69 fail = true;
70 }
71 checkFail("Abnormal removal behaviour from Cookie Jar");
72 }
73
74 static void checkFail(String exp) {
75 if (fail) {
76 throw new RuntimeException(exp);
77 }
78 }
79}
80