@Test public void testSessionIdRemoval() throws MalformedURLException { String[][] testURIs = new String[][] { // meaning: original uri, stripped version new String[] {"http://test.de/bla.php?phpsessionid=asdf", "http://test.de/bla.php"}, new String[] { "http://test.de/bla?phpsessionid=asdf&fdsa=asdf", "http://test.de/bla?fdsa=asdf" }, new String[] { "http://test.de/bla?asdf=fdsa&phpsessionid=asdf", "http://test.de/bla?asdf=fdsa" }, new String[] { "http://test.de/bla?asdf=fdsa&phpsessionid=asdf&fdsa=asdf", "http://test.de/bla?asdf=fdsa&fdsa=asdf" }, }; TreeSet<String> idNames = new TreeSet<String>(); idNames.add("phpsessionid"); MultiProtocolURL.initSessionIDNames(idNames); for (int i = 0; i < testURIs.length; i++) { MultiProtocolURL uri = new MultiProtocolURL(testURIs[i][0]); assertEquals(uri.toNormalform(true, true), testURIs[i][1]); } }
/** * Test of isLocal method, of class MultiProtocolURL. including IPv6 url data * * @throws java.net.MalformedURLException */ @Test public void testIsLocal() throws MalformedURLException { LinkedHashMap<String, Boolean> testurls = new LinkedHashMap<String, Boolean>(); // <url,expected_result> // valid IPv6 local loopback addresses testurls.put("http://[0:0:0:0:0:0:0:1]/index.html", Boolean.TRUE); testurls.put("http://[::1]/index.html", Boolean.TRUE); testurls.put("http://[::1]:8090/index.html", Boolean.TRUE); testurls.put("http://[0::1]/index.html", Boolean.TRUE); testurls.put("http://[::0:1]:80/index.html", Boolean.TRUE); testurls.put("http://[fc00:0:0:0:0:0:0:1]/index.html", Boolean.TRUE); testurls.put("http://[fc00::fa01:ff]/index.html", Boolean.TRUE); testurls.put("http://[fD00:0:0:0:0:0:0:1]/index.html", Boolean.TRUE); testurls.put("http://[fe80:0:0:0:0:0:0:1]/index.html", Boolean.TRUE); testurls.put("http://[fe80::1]/index.html", Boolean.TRUE); // test urls for possible issue with IPv6 misinterpretation testurls.put("http://fcedit.com", Boolean.FALSE); testurls.put("http://fdedit.com", Boolean.FALSE); testurls.put("http://fe8edit.com", Boolean.FALSE); // valid IPv6 examples taken from http://www.ietf.org/rfc/rfc2732.txt cap 2. testurls.put( "http://[FEDC:BA98:7654:3210:FEDC:BA98:7654:3210]:80/index.html", Boolean.TRUE); // ip is link-local (fe80/10) testurls.put("http://[1080:0:0:0:8:800:200C:417A]/index.html", Boolean.FALSE); testurls.put("http://[3ffe:2a00:100:7031::1]", Boolean.FALSE); testurls.put("http://[1080::8:800:200C:417A]/foo", Boolean.FALSE); testurls.put("http://[::192.9.5.5]/ipng", Boolean.FALSE); testurls.put("http://[::FFFF:129.144.52.38]:80/index.html", Boolean.FALSE); testurls.put("http://[2010:836B:4179::836B:4179]", Boolean.FALSE); for (String u : testurls.keySet()) { MultiProtocolURL uri = new MultiProtocolURL(u); boolean result = uri.isLocal(); System.out.println("testIsLocal: " + u + " -> " + result); assertEquals(u, testurls.get(u), result); } }
/** Test of getAttribute method, of class MultiProtocolURL. */ @Test public void testGetAttribute() throws Exception { // some test url/uri with problems in the past String[][] testStrings = new String[][] { // teststring , expectedresult new String[] {"http://yacy.net?&test", "test"} }; for (String[] testString : testStrings) { // desired conversion result System.out.print("test getAttribute: " + testString[0]); String shouldBe = testString[1]; MultiProtocolURL resultUrl = new MultiProtocolURL(testString[0]); Map<String, String> attr = resultUrl.getAttributes(); assertEquals("", attr.get(shouldBe)); System.out.println(" -> " + resultUrl.toNormalform(false)); } }