OLD | NEW |
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 import "dart:io"; | 6 import "dart:io"; |
7 import "dart:isolate"; | 7 import "dart:isolate"; |
8 import "dart:async"; | 8 import "dart:async"; |
9 | 9 |
10 void testGoogleUrl() { | 10 void testGoogleUrl() { |
11 ReceivePort keepAlive = new ReceivePort(); | 11 ReceivePort keepAlive = new ReceivePort(); |
12 HttpClient client = new HttpClient(); | 12 HttpClient client = new HttpClient(); |
13 client.getUrl(Uri.parse('https://www.google.com')) | 13 client.getUrl(Uri.parse('https://www.google.com')) |
14 .then((request) => request.close()) | 14 .then((request) => request.close()) |
15 .then((response) => Expect.fail("Unexpected successful connection")) | 15 .then((response) => Expect.fail("Unexpected successful connection")) |
16 .catchError((error) { | 16 .catchError((error) { |
17 Expect.isTrue(error is SocketException); | 17 Expect.isTrue(error is SocketException); |
18 keepAlive.close(); | 18 keepAlive.close(); |
19 client.close(); | 19 client.close(); |
20 }); | 20 }); |
21 } | 21 } |
22 | 22 |
23 void InitializeSSL() { | 23 void InitializeSSL() { |
24 // If the built-in root certificates aren't loaded, the connection | 24 // If the built-in root certificates aren't loaded, the connection |
25 // should signal an error. Even when an external database is loaded, | 25 // should signal an error. Even when an external database is loaded, |
26 // they should not be loaded. | 26 // they should not be loaded. |
27 Path scriptDir = new Path(new Options().script).directoryPath; | 27 Path scriptDir = new Path(Platform.script).directoryPath; |
28 Path certificateDatabase = scriptDir.append('pkcert'); | 28 Path certificateDatabase = scriptDir.append('pkcert'); |
29 SecureSocket.initialize(database: certificateDatabase.toNativePath(), | 29 SecureSocket.initialize(database: certificateDatabase.toNativePath(), |
30 password: 'dartdart', | 30 password: 'dartdart', |
31 useBuiltinRoots: false); | 31 useBuiltinRoots: false); |
32 } | 32 } |
33 | 33 |
34 void main() { | 34 void main() { |
35 InitializeSSL(); | 35 InitializeSSL(); |
36 testGoogleUrl(); | 36 testGoogleUrl(); |
37 } | 37 } |
OLD | NEW |