c10172597f
BUG= http://dartbug.com/8504 Review URL: https://codereview.chromium.org//12254010 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@18505 260f80e4-7a28-3924-810f-c04153c831b5
219 lines
9.5 KiB
Dart
219 lines
9.5 KiB
Dart
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
library uriTest;
|
|
|
|
import 'dart:utf';
|
|
import 'dart:uri';
|
|
|
|
testUri(String uri, bool isAbsolute) {
|
|
Expect.equals(isAbsolute, Uri.parse(uri).isAbsolute);
|
|
Expect.equals(isAbsolute, new Uri(uri).isAbsolute);
|
|
Expect.stringEquals(uri, Uri.parse(uri).toString());
|
|
Expect.stringEquals(uri, new Uri(uri).toString());
|
|
|
|
// Test equals and hashCode members.
|
|
Expect.equals(new Uri(uri), new Uri(uri));
|
|
Expect.equals(new Uri(uri).hashCode, new Uri(uri).hashCode);
|
|
}
|
|
|
|
testEncodeDecode(String orig, String encoded) {
|
|
var e = encodeUri(orig);
|
|
Expect.stringEquals(encoded, e);
|
|
var d = decodeUri(encoded);
|
|
Expect.stringEquals(orig, d);
|
|
}
|
|
|
|
testEncodeDecodeComponent(String orig, String encoded) {
|
|
var e = encodeUriComponent(orig);
|
|
Expect.stringEquals(encoded, e);
|
|
var d = decodeUriComponent(encoded);
|
|
Expect.stringEquals(orig, d);
|
|
}
|
|
|
|
testUriPerRFCs(Uri base) {
|
|
// From RFC 3986.
|
|
Expect.stringEquals("g:h", base.resolve("g:h").toString());
|
|
Expect.stringEquals("http://a/b/c/g", base.resolve("g").toString());
|
|
Expect.stringEquals("http://a/b/c/g", base.resolve("./g").toString());
|
|
Expect.stringEquals("http://a/b/c/g/", base.resolve("g/").toString());
|
|
Expect.stringEquals("http://a/g", base.resolve("/g").toString());
|
|
Expect.stringEquals("http://g", base.resolve("//g").toString());
|
|
Expect.stringEquals("http://a/b/c/d;p?y", base.resolve("?y").toString());
|
|
Expect.stringEquals("http://a/b/c/g?y", base.resolve("g?y").toString());
|
|
Expect.stringEquals("http://a/b/c/d;p?q#s", base.resolve("#s").toString());
|
|
Expect.stringEquals("http://a/b/c/g#s", base.resolve("g#s").toString());
|
|
Expect.stringEquals("http://a/b/c/g?y#s", base.resolve("g?y#s").toString());
|
|
Expect.stringEquals("http://a/b/c/;x", base.resolve(";x").toString());
|
|
Expect.stringEquals("http://a/b/c/g;x", base.resolve("g;x").toString());
|
|
Expect.stringEquals("http://a/b/c/g;x?y#s",
|
|
base.resolve("g;x?y#s").toString());
|
|
Expect.stringEquals("http://a/b/c/d;p?q", base.resolve("").toString());
|
|
Expect.stringEquals("http://a/b/c/", base.resolve(".").toString());
|
|
Expect.stringEquals("http://a/b/c/", base.resolve("./").toString());
|
|
Expect.stringEquals("http://a/b/", base.resolve("..").toString());
|
|
Expect.stringEquals("http://a/b/", base.resolve("../").toString());
|
|
Expect.stringEquals("http://a/b/g", base.resolve("../g").toString());
|
|
Expect.stringEquals("http://a/", base.resolve("../..").toString());
|
|
Expect.stringEquals("http://a/", base.resolve("../../").toString());
|
|
Expect.stringEquals("http://a/g", base.resolve("../../g").toString());
|
|
Expect.stringEquals("http://a/g", base.resolve("../../../g").toString());
|
|
Expect.stringEquals("http://a/g", base.resolve("../../../../g").toString());
|
|
Expect.stringEquals("http://a/g", base.resolve("/./g").toString());
|
|
Expect.stringEquals("http://a/g", base.resolve("/../g").toString());
|
|
Expect.stringEquals("http://a/b/c/g.", base.resolve("g.").toString());
|
|
Expect.stringEquals("http://a/b/c/.g", base.resolve(".g").toString());
|
|
Expect.stringEquals("http://a/b/c/g..", base.resolve("g..").toString());
|
|
Expect.stringEquals("http://a/b/c/..g", base.resolve("..g").toString());
|
|
Expect.stringEquals("http://a/b/g", base.resolve("./../g").toString());
|
|
Expect.stringEquals("http://a/b/c/g/", base.resolve("./g/.").toString());
|
|
Expect.stringEquals("http://a/b/c/g/h", base.resolve("g/./h").toString());
|
|
Expect.stringEquals("http://a/b/c/h", base.resolve("g/../h").toString());
|
|
Expect.stringEquals("http://a/b/c/g;x=1/y",
|
|
base.resolve("g;x=1/./y").toString());
|
|
Expect.stringEquals("http://a/b/c/y", base.resolve("g;x=1/../y").toString());
|
|
Expect.stringEquals("http://a/b/c/g?y/./x",
|
|
base.resolve("g?y/./x").toString());
|
|
Expect.stringEquals("http://a/b/c/g?y/../x",
|
|
base.resolve("g?y/../x").toString());
|
|
Expect.stringEquals("http://a/b/c/g#s/./x",
|
|
base.resolve("g#s/./x").toString());
|
|
Expect.stringEquals("http://a/b/c/g#s/../x",
|
|
base.resolve("g#s/../x").toString());
|
|
Expect.stringEquals("http:g", base.resolve("http:g").toString());
|
|
|
|
// Additional tests (not from RFC 3986).
|
|
Expect.stringEquals("http://a/b/g;p/h;s",
|
|
base.resolve("../g;p/h;s").toString());
|
|
}
|
|
|
|
main() {
|
|
testUri("http:", true);
|
|
testUri("file://", true);
|
|
testUri("file", false);
|
|
testUri("http://user@example.com:80/fisk?query=89&hest=silas", true);
|
|
testUri("http://user@example.com:80/fisk?query=89&hest=silas#fragment",
|
|
false);
|
|
Expect.stringEquals("http://user@example.com:80/a/b/c?query#fragment",
|
|
const Uri.fromComponents(
|
|
scheme: "http",
|
|
userInfo: "user",
|
|
domain: "example.com",
|
|
port: 80,
|
|
path: "/a/b/c",
|
|
query: "query",
|
|
fragment: "fragment").toString());
|
|
Expect.stringEquals("null://null@null/a/b/c/?null#null",
|
|
const Uri.fromComponents(
|
|
scheme: null,
|
|
userInfo: null,
|
|
domain: null,
|
|
port: 0,
|
|
path: "/a/b/c/",
|
|
query: null,
|
|
fragment: null).toString());
|
|
Expect.stringEquals("file://", Uri.parse("file:").toString());
|
|
Expect.stringEquals("file://", new Uri("file:").toString());
|
|
Expect.stringEquals("/a/g", removeDotSegments("/a/b/c/./../../g"));
|
|
Expect.stringEquals("mid/6", removeDotSegments("mid/content=5/../6"));
|
|
Expect.stringEquals("a/b/e", removeDotSegments("a/b/c/d/../../e"));
|
|
Expect.stringEquals("a/b/e", removeDotSegments("../a/b/c/d/../../e"));
|
|
Expect.stringEquals("a/b/e", removeDotSegments("./a/b/c/d/../../e"));
|
|
Expect.stringEquals("a/b/e", removeDotSegments("../a/b/./c/d/../../e"));
|
|
Expect.stringEquals("a/b/e", removeDotSegments("./a/b/./c/d/../../e"));
|
|
Expect.stringEquals("a/b/e/", removeDotSegments("./a/b/./c/d/../../e/."));
|
|
Expect.stringEquals("a/b/e/", removeDotSegments("./a/b/./c/d/../../e/./."));
|
|
Expect.stringEquals("a/b/e/", removeDotSegments("./a/b/./c/d/../../e/././."));
|
|
|
|
final urisSample = "http://a/b/c/d;p?q";
|
|
Uri baseFromString = Uri.parse(urisSample);
|
|
testUriPerRFCs(baseFromString);
|
|
Uri base = new Uri(urisSample);
|
|
testUriPerRFCs(base);
|
|
|
|
Expect.stringEquals(
|
|
"http://example.com",
|
|
Uri.parse("http://example.com/a/b/c").origin);
|
|
Expect.stringEquals(
|
|
"https://example.com",
|
|
Uri.parse("https://example.com/a/b/c").origin);
|
|
Expect.stringEquals(
|
|
"http://example.com:1234",
|
|
Uri.parse("http://example.com:1234/a/b/c").origin);
|
|
Expect.stringEquals(
|
|
"https://example.com:1234",
|
|
Uri.parse("https://example.com:1234/a/b/c").origin);
|
|
Expect.throws(
|
|
() => Uri.parse("http:").origin,
|
|
(e) { return e is ArgumentError; },
|
|
"origin for uri with empty domain should fail");
|
|
Expect.throws(
|
|
() => const Uri.fromComponents(
|
|
scheme: "http",
|
|
userInfo: null,
|
|
domain: "",
|
|
port: 80,
|
|
path: "/a/b/c",
|
|
query: "query",
|
|
fragment: "fragment").origin,
|
|
(e) { return e is ArgumentError; },
|
|
"origin for uri with empty domain should fail");
|
|
Expect.throws(
|
|
() => const Uri.fromComponents(
|
|
scheme: null,
|
|
userInfo: null,
|
|
domain: "",
|
|
port: 80,
|
|
path: "/a/b/c",
|
|
query: "query",
|
|
fragment: "fragment").origin,
|
|
(e) { return e is ArgumentError; },
|
|
"origin for uri with empty scheme should fail");
|
|
Expect.throws(
|
|
() => const Uri.fromComponents(
|
|
scheme: "http",
|
|
userInfo: null,
|
|
domain: null,
|
|
port: 80,
|
|
path: "/a/b/c",
|
|
query: "query",
|
|
fragment: "fragment").origin,
|
|
(e) { return e is ArgumentError; },
|
|
"origin for uri with empty domain should fail");
|
|
Expect.throws(
|
|
() => Uri.parse("http://:80").origin,
|
|
(e) { return e is ArgumentError; },
|
|
"origin for uri with empty domain should fail");
|
|
Expect.throws(
|
|
() => Uri.parse("file://localhost/test.txt").origin,
|
|
(e) { return e is ArgumentError; },
|
|
"origin for non-http/https uri should fail");
|
|
|
|
// URI encode tests
|
|
// Create a string with code point 0x10000 encoded as a surrogate pair.
|
|
var s = decodeUtf8([0xf0, 0x90, 0x80, 0x80]);
|
|
|
|
Expect.stringEquals("\u{10000}", s);
|
|
|
|
testEncodeDecode("A + B", "A+%2B+B");
|
|
testEncodeDecode("\uFFFE", "%EF%BF%BE");
|
|
testEncodeDecode("\uFFFF", "%EF%BF%BF");
|
|
testEncodeDecode("\uFFFE", "%EF%BF%BE");
|
|
testEncodeDecode("\uFFFF", "%EF%BF%BF");
|
|
testEncodeDecode("\x7f", "%7F");
|
|
testEncodeDecode("\x80", "%C2%80");
|
|
testEncodeDecode("\u0800", "%E0%A0%80");
|
|
testEncodeDecode(":/@',;?&=+\$", ":/@',;?&=%2B\$");
|
|
testEncodeDecode(s, "%F0%90%80%80");
|
|
testEncodeDecodeComponent("\uFFFE", "%EF%BF%BE");
|
|
testEncodeDecodeComponent("\uFFFF", "%EF%BF%BF");
|
|
testEncodeDecodeComponent("\uFFFE", "%EF%BF%BE");
|
|
testEncodeDecodeComponent("\uFFFF", "%EF%BF%BF");
|
|
testEncodeDecodeComponent("\x7f", "%7F");
|
|
testEncodeDecodeComponent("\x80", "%C2%80");
|
|
testEncodeDecodeComponent("\u0800", "%E0%A0%80");
|
|
testEncodeDecodeComponent(":/@',;?&=+\$", "%3A%2F%40'%2C%3B%3F%26%3D%2B%24");
|
|
testEncodeDecodeComponent(s, "%F0%90%80%80");
|
|
}
|