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

Side by Side Diff: tests/corelib/uri_query_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
« sdk/lib/core/uri.dart ('K') | « tests/corelib/uri_path_test.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 testEncodeQueryComponent() { 10 void testEncodeQueryComponent() {
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 } else if (unreserved.indexOf(new String.fromCharCode(i)) != -1) { 64 } else if (unreserved.indexOf(new String.fromCharCode(i)) != -1) {
65 encoded.writeCharCode(i); 65 encoded.writeCharCode(i);
66 } else { 66 } else {
67 encoded.write("%"); 67 encoded.write("%");
68 encoded.write(i.toRadixString(16).toUpperCase()); 68 encoded.write(i.toRadixString(16).toUpperCase());
69 } 69 }
70 unencoded.writeCharCode(i); 70 unencoded.writeCharCode(i);
71 } 71 }
72 encoded = encoded.toString(); 72 encoded = encoded.toString();
73 unencoded = unencoded.toString(); 73 unencoded = unencoded.toString();
74 print(encoded);
75 print(unencoded);
76 test("a=$encoded", {"a": unencoded}); 74 test("a=$encoded", {"a": unencoded});
77 test("a=$encoded&b=$encoded", {"a": unencoded, "b": unencoded}); 75 test("a=$encoded&b=$encoded", {"a": unencoded, "b": unencoded});
78 76
79 var map = new Map(); 77 var map = new Map();
80 map[unencoded] = unencoded; 78 map[unencoded] = unencoded;
81 test("$encoded=$encoded", map); 79 test("$encoded=$encoded", map);
82 } 80 }
83 81
84 testInvalidQueryParameters() { 82 testInvalidQueryParameters() {
85 test(String query, Map<String, String> parameters) { 83 test(String query, Map<String, String> parameters) {
(...skipping 20 matching lines...) Expand all
106 test("=", {}); 104 test("=", {});
107 test("=xxx", {}); 105 test("=xxx", {});
108 test("===", {}); 106 test("===", {});
109 test("=xxx=yyy=zzz", {}); 107 test("=xxx=yyy=zzz", {});
110 test("=&=&=", {}); 108 test("=&=&=", {});
111 test("=xxx&=yyy&=zzz", {}); 109 test("=xxx&=yyy&=zzz", {});
112 test("&=&=&", {}); 110 test("&=&=&", {});
113 test("&=xxx&=xxx&", {}); 111 test("&=xxx&=xxx&", {});
114 } 112 }
115 113
114 testQueryParametersImmutableMap() {
115 test(map) {
116 Expect.isTrue(map.containsValue("b"));
117 Expect.isTrue(map.containsKey("a"));
118 Expect.equals("b", map["a"]);
119 Expect.throws(() => map["a"] = "c", (e) => e is StateError);
120 Expect.throws(() => map.putIfAbsent("b", () => "e"), (e) => e is StateError) ;
121 Expect.throws(() => map.remove("a"), (e) => e is StateError);
122 Expect.throws(() => map.clear(), (e) => e is StateError);
123 var count = 0;
124 map.forEach((key, value) => count++);
125 Expect.equals(2, count);
126 Expect.equals(2, map.keys.length);
127 Expect.equals(2, map.values.length);
128 Expect.equals(2, map.length);
129 Expect.isFalse(map.isEmpty);
130 Expect.isTrue(map.isNotEmpty);
131 }
132
133 test(Uri.parse("?a=b&c=d").queryParameters);
134 test(new Uri(queryParameters: {"a": "b", "c": "d"}).queryParameters);
135 }
136
116 main() { 137 main() {
117 testInvalidArguments(); 138 testInvalidArguments();
118 testEncodeQueryComponent(); 139 testEncodeQueryComponent();
119 testQueryParameters(); 140 testQueryParameters();
120 testInvalidQueryParameters(); 141 testInvalidQueryParameters();
142 testQueryParametersImmutableMap();
121 } 143 }
OLDNEW
« sdk/lib/core/uri.dart ('K') | « tests/corelib/uri_path_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698