| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |