jdk/test/java/net/CookieHandler/NullUriCookieTest.java
changeset 12192 dd8301ce22b6
parent 10698 b2da906f8080
child 14342 8435a30053c1
--- a/jdk/test/java/net/CookieHandler/NullUriCookieTest.java	Thu Mar 15 16:46:47 2012 +0000
+++ b/jdk/test/java/net/CookieHandler/NullUriCookieTest.java	Thu Mar 15 13:21:16 2012 -0700
@@ -23,8 +23,9 @@
 
 /*
  * @test
- * @bug 6953455
+ * @bug 6953455 7045655
  * @summary CookieStore.add() cannot handle null URI parameter
+ *     and An empty InMemoryCookieStore should not return true for removeAll
  */
 
 import java.net.CookieManager;
@@ -44,6 +45,11 @@
     static void checkCookieNullUri() throws Exception {
         //get a cookie store implementation and add a cookie to the store with null URI
         CookieStore cookieStore = (new CookieManager()).getCookieStore();
+        //Check if removeAll() retrurns false on an empty CookieStore
+        if (cookieStore.removeAll()) {
+            fail = true;
+        }
+        checkFail("removeAll on empty store should return false");
         HttpCookie cookie = new HttpCookie("MY_COOKIE", "MY_COOKIE_VALUE");
         cookie.setDomain("foo.com");
         cookieStore.add(null, cookie);