9d6a64e81b
This merges the dart:uri library into dart:core removing the dart:uri library. Besides moving the library the Url class has been changed. * Removed existing Uri constructor as it was equivalent with Uri.parse * Remamed constructor Uri.fromComponents to Uri * Moved toplevel function encodeUriComponent to static method Uri.encodeComponent * Moved toplevel function decodeUriComponent to static method Uri.decodeComponent * Moved toplevel function encodeUri to static method Uri.encodeFull * Moved toplevel function decodeUri to static method Uri.decodeFull * Rename domain to host * Added static methods Uri.encodeQueryComponent and Uri.decodeQueryComponent * Added support for path generation and splitting * Added support for query generation and splitting * Added some level of normalization R=floitsch@google.com, lrn@google.com, nweiz@google.com, scheglov@google.com BUG= Review URL: https://codereview.chromium.org//16019002 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@23266 260f80e4-7a28-3924-810f-c04153c831b5
24 lines
727 B
Dart
24 lines
727 B
Dart
// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
import "package:expect/expect.dart";
|
|
import "dart:io";
|
|
import "dart:isolate";
|
|
|
|
void testBadHostName() {
|
|
HttpClient client = new HttpClient();
|
|
ReceivePort port = new ReceivePort();
|
|
client.getUrl(Uri.parse("https://some.bad.host.name.7654321/"))
|
|
.then((HttpClientRequest request) {
|
|
Expect.fail("Should not open a request on bad hostname");
|
|
})
|
|
.catchError((error) {
|
|
port.close(); // Should throw an error on bad hostname.
|
|
});
|
|
}
|
|
|
|
void main() {
|
|
testBadHostName();
|
|
}
|