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

Side by Side Diff: tests/corelib/uri_query_test.dart

Issue 16107006: Fix deprecation warning (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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
« no previous file with comments | « no previous file | 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() {
11 // This exact data is from posting a form in Chrome 26 with the one 11 // This exact data is from posting a form in Chrome 26 with the one
12 // exception that * is encoded as %30 and ~ is not encoded as %7E. 12 // exception that * is encoded as %30 and ~ is not encoded as %7E.
13 Expect.equals( 13 Expect.equals(
14 "%21%22%23%24%25%26%27%28%29%2A%2B%2C-.%2F%" 14 "%21%22%23%24%25%26%27%28%29%2A%2B%2C-.%2F%"
15 "3A%3B%3C%3D%3E%3F%40%5B%5C%5D%5E_%60%7B%7C%7D~", 15 "3A%3B%3C%3D%3E%3F%40%5B%5C%5D%5E_%60%7B%7C%7D~",
16 Uri.encodeQueryComponent("!\"#\$%&'()*+,-./:;<=>?@[\\]^_`{|}~")); 16 Uri.encodeQueryComponent("!\"#\$%&'()*+,-./:;<=>?@[\\]^_`{|}~"));
17 Expect.equals("+%2B+", Uri.encodeQueryComponent(" + ")); 17 Expect.equals("+%2B+", Uri.encodeQueryComponent(" + "));
18 Expect.equals("%2B+%2B", Uri.encodeQueryComponent("+ +")); 18 Expect.equals("%2B+%2B", Uri.encodeQueryComponent("+ +"));
19 } 19 }
20 20
21 void testQueryParameters() { 21 void testQueryParameters() {
22 test(String query, Map<String, String> parameters, [String normalizedQuery]) { 22 test(String query, Map<String, String> parameters, [String normalizedQuery]) {
23 if (normalizedQuery === null) normalizedQuery = query; 23 if (normalizedQuery == null) normalizedQuery = query;
24 check(uri) { 24 check(uri) {
25 Expect.equals(normalizedQuery, uri.query); 25 Expect.equals(normalizedQuery, uri.query);
26 if (query.isEmpty) { 26 if (query.isEmpty) {
27 Expect.equals(normalizedQuery, uri.toString()); 27 Expect.equals(normalizedQuery, uri.toString());
28 } else { 28 } else {
29 Expect.equals("?$normalizedQuery", uri.toString()); 29 Expect.equals("?$normalizedQuery", uri.toString());
30 } 30 }
31 if (parameters.containsValue(null)) { 31 if (parameters.containsValue(null)) {
32 } else { 32 } else {
33 Expect.mapEquals(parameters, uri.queryParameters); 33 Expect.mapEquals(parameters, uri.queryParameters);
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
160 test(new Uri(queryParameters: {"a": "b", "c": "d"}).queryParameters); 160 test(new Uri(queryParameters: {"a": "b", "c": "d"}).queryParameters);
161 } 161 }
162 162
163 main() { 163 main() {
164 testInvalidArguments(); 164 testInvalidArguments();
165 testEncodeQueryComponent(); 165 testEncodeQueryComponent();
166 testQueryParameters(); 166 testQueryParameters();
167 testInvalidQueryParameters(); 167 testInvalidQueryParameters();
168 testQueryParametersImmutableMap(); 168 testQueryParametersImmutableMap();
169 } 169 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698