From b5dc3f1ff84d55e02b8c6e8e59878d34c2638a48 Mon Sep 17 00:00:00 2001 From: Jesse Wilson Date: Wed, 30 Sep 2009 15:09:17 -0700 Subject: Fixing a lame test that was relying on hashmap iteration order. --- .../java/tests/api/java/net/JarURLConnectionTest.java | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/libcore/luni/src/test/java/tests/api/java/net/JarURLConnectionTest.java b/libcore/luni/src/test/java/tests/api/java/net/JarURLConnectionTest.java index 8303db357..7a67bf848 100644 --- a/libcore/luni/src/test/java/tests/api/java/net/JarURLConnectionTest.java +++ b/libcore/luni/src/test/java/tests/api/java/net/JarURLConnectionTest.java @@ -34,6 +34,8 @@ import java.security.cert.Certificate; import java.util.Collection; import java.util.Map; import java.util.Set; +import java.util.Arrays; +import java.util.HashSet; import java.util.jar.Attributes; import java.util.jar.JarEntry; import java.util.jar.JarFile; @@ -151,8 +153,7 @@ public class JarURLConnectionTest extends junit.framework.TestCase { args = {} ) public void test_getManifest() throws Exception { - - String [] expected = {"plus.bmp", "swt.dll"}; + //URL u = new URL("jar:" // + BASE.toString()+"/lf.jar!/swt.dll"); @@ -161,15 +162,9 @@ public class JarURLConnectionTest extends junit.framework.TestCase { juc = (JarURLConnection) u.openConnection(); Manifest manifest = juc.getManifest(); Map attr = manifest.getEntries(); - assertEquals(expected.length, attr.size()); - Set keys = attr.keySet(); - String [] result = new String[expected.length]; - keys.toArray(result); + assertEquals(new HashSet(Arrays.asList("plus.bmp", "swt.dll")), + attr.keySet()); - for(int i = 0; i < result.length; i++) { - assertEquals(expected[i], result[i]); - } - //URL invURL = new URL("jar:" // + BASE.toString()+"/InvalidJar.jar!/Test.class"); -- cgit v1.2.3