📄 urltestcase.java
字号:
normalize("http://localhost/index.html/./?name=value",
"http://localhost/index.html/?name=value");
normalize("http://localhost/index.html/./?name=value#ref",
"http://localhost/index.html/?name=value#ref");
normalize("http://localhost:8080/index.html/./",
"http://localhost:8080/index.html/");
normalize("http://localhost:8080/index.html/./#ref",
"http://localhost:8080/index.html/#ref");
normalize("http://localhost:8080/index.html/./?name=value",
"http://localhost:8080/index.html/?name=value");
normalize("http://localhost:8080/index.html/./?name=value#ref",
"http://localhost:8080/index.html/?name=value#ref");
normalize("http://localhost/foo.html/../index.html",
"http://localhost/index.html");
normalize("http://localhost/foo.html/../index.html#ref",
"http://localhost/index.html#ref");
normalize("http://localhost/foo.html/../index.html?name=value",
"http://localhost/index.html?name=value");
normalize("http://localhost/foo.html/../index.html?name=value#ref",
"http://localhost/index.html?name=value#ref");
normalize("http://localhost:8080/foo.html/../index.html",
"http://localhost:8080/index.html");
normalize("http://localhost:8080/foo.html/../index.html#ref",
"http://localhost:8080/index.html#ref");
normalize("http://localhost:8080/foo.html/../index.html?name=value",
"http://localhost:8080/index.html?name=value");
normalize("http://localhost:8080/foo.html/../index.html?name=value#ref",
"http://localhost:8080/index.html?name=value#ref");
normalize("http://localhost/index.html/foo.html/..",
"http://localhost/index.html/");
normalize("http://localhost/index.html/foo.html/..#ref",
"http://localhost/index.html/#ref");
normalize("http://localhost/index.html/foo.html/..?name=value",
"http://localhost/index.html/?name=value");
normalize("http://localhost/index.html/foo.html/..?name=value#ref",
"http://localhost/index.html/?name=value#ref");
normalize("http://localhost:8080/index.html/foo.html/..",
"http://localhost:8080/index.html/");
normalize("http://localhost:8080/index.html/foo.html/..#ref",
"http://localhost:8080/index.html/#ref");
normalize("http://localhost:8080/index.html/foo.html/..?name=value",
"http://localhost:8080/index.html/?name=value");
normalize("http://localhost:8080/index.html/foo.html/..?name=value#ref",
"http://localhost:8080/index.html/?name=value#ref");
normalize("http://localhost/index.html/foo.html/../",
"http://localhost/index.html/");
normalize("http://localhost/index.html/foo.html/../#ref",
"http://localhost/index.html/#ref");
normalize("http://localhost/index.html/foo.html/../?name=value",
"http://localhost/index.html/?name=value");
normalize("http://localhost/index.html/foo.html/../?name=value#ref",
"http://localhost/index.html/?name=value#ref");
normalize("http://localhost:8080/index.html/foo.html/../",
"http://localhost:8080/index.html/");
normalize("http://localhost:8080/index.html/foo.html/../#ref",
"http://localhost:8080/index.html/#ref");
normalize("http://localhost:8080/index.html/foo.html/../?name=value",
"http://localhost:8080/index.html/?name=value");
normalize("http://localhost:8080/index.html/foo.html/../?name=value#ref",
"http://localhost:8080/index.html/?name=value#ref");
}
/**
* Positive tests for relative URL strings in various patterns.
*/
public void testPositiveRelative() {
// Test cases based on RFC 2396, Appendix C
positive("http://a/b/c/d;p?q", "http:h");
positive("http://a/b/c/d;p?q", "g");
positive("http://a/b/c/d;p?q", "./g");
positive("http://a/b/c/d;p?q", "g/");
positive("http://a/b/c/d;p?q", "/g");
// positive("http://a/b/c/d;p?q", "//g");
positive("http://a/b/c/d;p?q", "?y");
positive("http://a/b/c/d;p?q", "g?y");
// positive("http://a/b/c/d;p?q", "#s");
positive("http://a/b/c/d;p?q", "g#s");
positive("http://a/b/c/d;p?q", "g?y#s");
positive("http://a/b/c/d;p?q", ";x");
positive("http://a/b/c/d;p?q", "g;x");
positive("http://a/b/c/d;p?q", "g;x?y#s");
positive("http://a/b/c/d;p?q", ".");
positive("http://a/b/c/d;p?q", "./");
positive("http://a/b/c/d;p?q", "..");
positive("http://a/b/c/d;p?q", "../");
positive("http://a/b/c/d;p?q", "../g");
positive("http://a/b/c/d;p?q", "../..");
positive("http://a/b/c/d;p?q", "../../");
positive("http://a/b/c/d;p?q", "../../g");
// Commented because java.net.URL doesn't normalize out the "/./"????
// positive("http://a/b/c/d;p?q", "/./g");
positive("http://a/b/c/d;p?q", "g.");
positive("http://a/b/c/d;p?q", ".g");
positive("http://a/b/c/d;p?q", "g..");
positive("http://a/b/c/d;p?q", "..g");
positive("http://a/b/c/d;p?q", "./../g");
positive("http://a/b/c/d;p?q", "./g/.");
positive("http://a/b/c/d;p?q", "g/./h");
positive("http://a/b/c/d;p?q", "g/../h");
positive("http://a/b/c/d;p?q", "g;x=1/./y");
positive("http://a/b/c/d;p?q", "g;x=1/../y");
positive("http://a/b/c/d;p?q", "g?y/./x");
positive("http://a/b/c/d;p?q", "g?y/../x");
positive("http://a/b/c/d;p?q", "g#s/./x");
positive("http://a/b/c/d;p?q", "g#s/../x");
positive("http://a/b", "c");
positive("http://a/b/", "c");
}
// -------------------------------------------------------- Private Methods
/**
* Check that both our URL class and <code>java.net.URL</code> throw
* <code>MalformedURLException</code> on an absolute URL specification.
*
* @param spec Absolute URL specification to be checked
*/
private void negative(String spec) {
try {
java.net.URL url = new java.net.URL(spec);
fail(spec + " should have failed on java.net.URL " +
"but returned " + url.toExternalForm());
} catch (MalformedURLException e) {
; // Expected response
}
try {
URL url = new URL(spec);
fail(spec + " should have failed on tested URL " +
"but returned " + url.toExternalForm());
} catch (MalformedURLException e) {
; // Expected response
}
}
/**
* Check that both our URL class and <code>java.net.URL</code> throw
* <code>MalformedURLException</code> on an absolute URL specification
* plus the corresponding relative URL specification.
*
* @param abs Absolute URL specification to be checked
* @param rel Relative URL specification to be checked
*/
private void negative(String abs, String rel) {
java.net.URL baseNet = null;
URL baseUrl = null;
try {
baseNet = new java.net.URL(abs);
} catch (MalformedURLException e) {
fail(abs + " net URL threw " + e);
}
try {
baseUrl = new URL(abs);
} catch (MalformedURLException e) {
fail(abs + " url URL threw " + e);
}
try {
java.net.URL url = new java.net.URL(baseNet, rel);
fail(rel + " should have failed on java.net.URL " +
"but returned " + url.toExternalForm());
} catch (MalformedURLException e) {
; // Expected response
}
try {
URL url = new URL(baseUrl, rel);
fail(rel + " should have failed on tested URL " +
"but returned " + url.toExternalForm());
} catch (MalformedURLException e) {
; // Expected response
}
}
/**
* Attempts to normalize the specified URL should throw
* MalformedURLException.
*
* @param spec Unnormalized version of the URL specification
*/
private void normalize(String spec) {
URL url = null;
try {
url = new URL(spec);
} catch (Throwable t) {
fail(spec + " should not have thrown " + t);
}
try {
url.normalize();
fail(spec + ".normalize() should have thrown MUE");
} catch (MalformedURLException e) {
; // Expected result
}
}
/**
* It should be possible to normalize the specified URL into the
* specified normalized form.
*
* @param spec Unnormalized version of the URL specification
* @param norm Normalized version of the URL specification
*/
private void normalize(String spec, String norm) {
try {
URL url = new URL(spec);
url.normalize();
assertEquals(spec + ".normalize()", norm, url.toExternalForm());
} catch (Throwable t) {
fail(spec + ".normalize() threw " + t);
}
}
/**
* Check the details of our URL class against <code>java.net.URL</code>
* for an absolute URL specification.
*
* @param spec Absolute URL specification to be checked
*/
private void positive(String spec) {
// Compare results with what java.net.URL returns
try {
URL url = new URL(spec);
java.net.URL net = new java.net.URL(spec);
assertEquals(spec + " toExternalForm()",
net.toExternalForm(),
url.toExternalForm());
assertEquals(spec + ".getAuthority()",
net.getAuthority(),
url.getAuthority());
assertEquals(spec + ".getFile()",
net.getFile(),
url.getFile());
assertEquals(spec + ".getHost()",
net.getHost(),
url.getHost());
assertEquals(spec + ".getPath()",
net.getPath(),
url.getPath());
assertEquals(spec + ".getPort()",
net.getPort(),
url.getPort());
assertEquals(spec + ".getProtocol()",
net.getProtocol(),
url.getProtocol());
assertEquals(spec + ".getQuery()",
net.getQuery(),
url.getQuery());
assertEquals(spec + ".getRef()",
net.getRef(),
url.getRef());
assertEquals(spec + ".getUserInfo()",
net.getUserInfo(),
url.getUserInfo());
} catch (Throwable t) {
fail(spec + " positive test threw " + t);
}
}
/**
* Check the details of our URL class against <code>java.net.URL</code>
* for a relative URL specification.
*
* @param abs Absolute URL specification for base reference
* @param rel Relative URL specification to resolve
*/
private void positive(String abs, String rel) {
// Compare results with what java.net.URL returns
try {
URL urlBase = new URL(abs);
java.net.URL netBase = new java.net.URL(abs);
URL url = new URL(urlBase, rel);
java.net.URL net = new java.net.URL(netBase, rel);
assertEquals(rel + " toExternalForm()",
net.toExternalForm(),
url.toExternalForm());
assertEquals(rel + ".getAuthority()",
net.getAuthority(),
url.getAuthority());
assertEquals(rel + ".getFile()",
net.getFile(),
url.getFile());
assertEquals(rel + ".getHost()",
net.getHost(),
url.getHost());
assertEquals(rel + ".getPath()",
net.getPath(),
url.getPath());
assertEquals(rel + ".getPort()",
net.getPort(),
url.getPort());
assertEquals(rel + ".getProtocol()",
net.getProtocol(),
url.getProtocol());
assertEquals(rel + ".getQuery()",
net.getQuery(),
url.getQuery());
assertEquals(rel + ".getRef()",
net.getRef(),
url.getRef());
assertEquals(rel + ".getUserInfo()",
net.getUserInfo(),
url.getUserInfo());
} catch (Throwable t) {
fail(rel + " positive test threw " + t);
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -