Chromium Code Reviews

Unified Diff: tests/corelib/uri_path_test.dart

Issue 16108003: Avoid parsing path and query string more than once (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: tests/corelib/uri_path_test.dart
diff --git a/tests/corelib/uri_path_test.dart b/tests/corelib/uri_path_test.dart
index bc62d3e1b3ee54756b33485be6fc2ce39170e91a..653402c84b0e2ed3f0c45788931d11fc0276cf62 100644
--- a/tests/corelib/uri_path_test.dart
+++ b/tests/corelib/uri_path_test.dart
@@ -76,8 +76,19 @@ void testPathSegments() {
test(encoded + "/" + encoded, [unencoded, unencoded]);
}
+testPathSegmentsParsedOnce() {
+ var uri = Uri.parse("a/b");
+ Expect.isTrue(identical(uri.pathSegments, uri.pathSegments));
Lasse Reichstein Nielsen 2013/05/30 11:57:50 I wouldn't guarantee that - it means you can't thr
Søren Gjesse 2013/05/30 13:38:25 You are probably right. I put it in to make sure m
+
+ var list = ["a", "b"];
+ uri = new Uri(pathSegments: list);
+ Expect.isFalse(identical(list, uri.pathSegments));
+ Expect.isTrue(identical(uri.pathSegments, uri.pathSegments));
+}
+
main() {
testInvalidArguments();
testPath();
testPathSegments();
+ testPathSegmentsParsedOnce();
}

Powered by Google App Engine