Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3)

Side by Side 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: Addressed review comments Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 import "package:expect/expect.dart"; 5 import "package:expect/expect.dart";
6 6
7 void testInvalidArguments() { 7 void testInvalidArguments() {
8 } 8 }
9 9
10 void testPath() { 10 void testPath() {
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 if (pchar.indexOf(new String.fromCharCode(i)) != -1) { 63 if (pchar.indexOf(new String.fromCharCode(i)) != -1) {
64 encoded.writeCharCode(i); 64 encoded.writeCharCode(i);
65 } else { 65 } else {
66 encoded.write("%"); 66 encoded.write("%");
67 encoded.write(i.toRadixString(16).toUpperCase()); 67 encoded.write(i.toRadixString(16).toUpperCase());
68 } 68 }
69 unencoded.writeCharCode(i); 69 unencoded.writeCharCode(i);
70 } 70 }
71 encoded = encoded.toString(); 71 encoded = encoded.toString();
72 unencoded = unencoded.toString(); 72 unencoded = unencoded.toString();
73 print(encoded);
74 print(unencoded);
75 test(encoded, [unencoded]); 73 test(encoded, [unencoded]);
76 test(encoded + "/" + encoded, [unencoded, unencoded]); 74 test(encoded + "/" + encoded, [unencoded, unencoded]);
77 } 75 }
78 76
77 testPathSegmentsImmutableList() {
78 test(list) {
79 Expect.equals("a", list[0]);
80 Expect.throws(() => list[0] = "c", (e) => e is StateError);
81 Expect.equals(2, list.length);
82 Expect.throws(() => list.length = 1, (e) => e is StateError);
83 Expect.throws(() => list.add("c"), (e) => e is StateError);
84 Expect.throws(() => list.addAll(["c", "d"]), (e) => e is StateError);
85 Expect.listEquals(["b", "a"], list.reversed.toList());
86 Expect.throws(() => list.sort(), (e) => e is StateError);
87 Expect.equals(0, list.indexOf("a"));
88 Expect.equals(0, list.lastIndexOf("a"));
89 Expect.throws(() => list.clear(), (e) => e is StateError);
90 Expect.throws(() => list.insert(1, "c"), (e) => e is StateError);
91 Expect.throws(() => list.insertAll(1, ["c", "d"]), (e) => e is StateError);
92 Expect.throws(() => list.setAll(1, ["c", "d"]), (e) => e is StateError);
93 Expect.throws(() => list.remove("a"), (e) => e is StateError);
94 Expect.throws(() => list.removeAt(0), (e) => e is StateError);
95 Expect.throws(() => list.removeLast(), (e) => e is StateError);
96 Expect.throws(() => list.removeWhere((e) => true), (e) => e is StateError);
97 Expect.throws(() => list.retainWhere((e) => false), (e) => e is StateError);
98 Expect.listEquals(["a"], list.sublist(0, 1));
99 Expect.listEquals(["a"], list.getRange(0, 1).toList());
100 Expect.throws(() => list.setRange(0, 1, ["c"]), (e) => e is StateError);
101 Expect.throws(() => list.removeRange(0, 1), (e) => e is StateError);
102 Expect.throws(() => list.fillRange(0, 1, "c"), (e) => e is StateError);
103 Expect.throws(() => list.replaceRange(0, 1, ["c"]), (e) => e is StateError);
104 Map map = new Map();
105 map[0] = "a";
106 map[1] = "b";
107 Expect.mapEquals(list.asMap(), map);
108 }
109
110 test(Uri.parse("a/b").pathSegments);
111 test(new Uri(pathSegments: ["a", "b"]).pathSegments);
112 }
113
79 main() { 114 main() {
80 testInvalidArguments(); 115 testInvalidArguments();
81 testPath(); 116 testPath();
82 testPathSegments(); 117 testPathSegments();
118 testPathSegmentsImmutableList();
83 } 119 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698