-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
Copy pathuri_parse_test.dart
76 lines (71 loc) · 2.57 KB
/
uri_parse_test.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
// 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.
import "package:expect/expect.dart";
void testUriCombi() {
var schemes = ["", "file", "ws", "ftp"];
var fragments = ["", "#", "#f", "#fragment", "#l:?/"];
var queries = ["", "?", "?q", "?query", "?q:/"];
var paths = ["/", "/x", "/x/y", "/x/y/", "/x:y", "x", "x/y", "x/y/"];
var userInfos = ["", "x", "xxx", "x:4", "xxx:444", "x:4:x"];
var hosts = ["", "h", "hhh", "h:4", "hhh:444", "[::1.2.3.4]"];
void check(uriString, scheme, fragment, query, path, user, host) {
for (var uri in [
Uri.parse(uriString),
Uri.parse(">\u{10000}>$uriString<\u{10000}<", 4, uriString.length + 4),
Uri.parse(
"http://example.com/$uriString#?:/[]\"",
19,
uriString.length + 19,
),
Uri.parse(uriString * 3, uriString.length, uriString.length * 2),
]) {
String name = "$uriString -> $uri";
Expect.equals(scheme, uri.scheme, name);
var uriFragment = uri.fragment;
if (fragment.startsWith('#')) uriFragment = "#$uriFragment";
Expect.equals(fragment, uriFragment, name);
var uriQuery = uri.query;
if (query.startsWith('?')) uriQuery = "?$uriQuery";
Expect.equals(query, uriQuery, name);
Expect.equals(path, uri.path, name);
Expect.equals(user, uri.userInfo, name);
var uriHost = uri.host;
if (host.startsWith("[")) uriHost = "[$uriHost]";
if (uri.port != 0) uriHost += ":${uri.port}";
Expect.equals(host, uriHost, name);
}
}
for (var scheme in schemes) {
for (var fragment in fragments) {
for (var query in queries) {
for (var path in paths) {
// File scheme URIs always get a leading slash.
if (scheme == "file" && !path.startsWith('/')) continue;
for (var user in userInfos) {
for (var host in hosts) {
var auth = host;
var s = scheme;
if (user.isNotEmpty) auth = "$user@$auth";
if (auth.isNotEmpty) auth = "//$auth";
if (auth.isNotEmpty && !path.startsWith('/')) continue;
check(
"$scheme${scheme.isEmpty ? "" : ":"}"
"$auth$path$query$fragment",
scheme,
fragment,
query,
path,
user,
host,
);
}
}
}
}
}
}
}
void main() {
testUriCombi();
}