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

Side by Side Diff: tests/standalone/io/secure_builtin_roots_database_test.dart

Issue 17406010: Move getters from Options to Platform (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fixed Dart_GetType Created 7 years, 5 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
OLDNEW
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)=> response.last) 15 .then((response)=> response.last)
16 .then((_) { 16 .then((_) {
17 client.close(); 17 client.close();
18 keepAlive.close(); 18 keepAlive.close();
19 }); 19 });
20 } 20 }
21 21
22 void InitializeSSL() { 22 void InitializeSSL() {
23 // If the built-in root certificates aren't loaded, the connection 23 // If the built-in root certificates aren't loaded, the connection
24 // should signal an error. Even when an external database is loaded, 24 // should signal an error. Even when an external database is loaded,
25 // they should not be loaded. 25 // they should not be loaded.
26 Path scriptDir = new Path(new Options().script).directoryPath; 26 Path scriptDir = new Path(Platform.script).directoryPath;
27 Path certificateDatabase = scriptDir.append('pkcert'); 27 Path certificateDatabase = scriptDir.append('pkcert');
28 SecureSocket.initialize(database: certificateDatabase.toNativePath(), 28 SecureSocket.initialize(database: certificateDatabase.toNativePath(),
29 password: 'dartdart', 29 password: 'dartdart',
30 useBuiltinRoots: true); 30 useBuiltinRoots: true);
31 } 31 }
32 32
33 void main() { 33 void main() {
34 InitializeSSL(); 34 InitializeSSL();
35 testGoogleUrl(); 35 testGoogleUrl();
36 } 36 }
OLDNEW
« no previous file with comments | « tests/standalone/io/regress_7679_test.dart ('k') | tests/standalone/io/secure_client_raw_server_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698