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

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

Issue 37033002: dart:io | Remove uses of Options class from standalone tests. Mark Options deprecated. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Remove commented lines from standalone.status. Created 7 years, 1 month 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) 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 // This test verifies that secure connections that fail due to 5 // This test verifies that secure connections that fail due to
6 // unauthenticated certificates throw exceptions in HttpClient. 6 // unauthenticated certificates throw exceptions in HttpClient.
7 7
8 import "package:expect/expect.dart"; 8 import "package:expect/expect.dart";
9 import "package:path/path.dart"; 9 import "package:path/path.dart";
10 import "dart:async"; 10 import "dart:async";
11 import "dart:io"; 11 import "dart:io";
12 12
13 const HOST_NAME = "localhost"; 13 const HOST_NAME = "localhost";
14 const CERTIFICATE = "localhost_cert"; 14 const CERTIFICATE = "localhost_cert";
15 15
16 Future<SecureServerSocket> runServer() { 16 Future<SecureServerSocket> runServer() {
17 SecureSocket.initialize( 17 SecureSocket.initialize(
18 database: join(dirname(new Options().script), 'pkcert'), 18 database: join(dirname(Platform.script), 'pkcert'),
19 password: 'dartdart'); 19 password: 'dartdart');
20 20
21 return HttpServer.bindSecure( 21 return HttpServer.bindSecure(
22 HOST_NAME, 0, backlog: 5, certificateName: 'localhost_cert') 22 HOST_NAME, 0, backlog: 5, certificateName: 'localhost_cert')
23 .then((server) { 23 .then((server) {
24 server.listen((HttpRequest request) { 24 server.listen((HttpRequest request) {
25 request.listen((_) { }, onDone: () { request.response.close(); }); 25 request.listen((_) { }, onDone: () { request.response.close(); });
26 }, onError: (e) { if (e is! HandshakeException) throw e; }); 26 }, onError: (e) { if (e is! HandshakeException) throw e; });
27 return server; 27 return server;
28 }); 28 });
29 } 29 }
30 30
31 void main() { 31 void main() {
32 final options = new Options(); 32 var clientScript = join(dirname(Platform.script),
33 var clientScript = join(dirname(options.script),
34 'https_unauthorized_client.dart'); 33 'https_unauthorized_client.dart');
35 34
36 Future clientProcess(int port) { 35 Future clientProcess(int port) {
37 return Process.run(options.executable, 36 return Process.run(Platform.executable,
38 [clientScript, port.toString()]) 37 [clientScript, port.toString()])
39 .then((ProcessResult result) { 38 .then((ProcessResult result) {
40 if (result.exitCode != 0 || !result.stdout.contains('SUCCESS')) { 39 if (result.exitCode != 0 || !result.stdout.contains('SUCCESS')) {
41 print("Client failed"); 40 print("Client failed");
42 print(" stdout:"); 41 print(" stdout:");
43 print(result.stdout); 42 print(result.stdout);
44 print(" stderr:"); 43 print(" stderr:");
45 print(result.stderr); 44 print(result.stderr);
46 Expect.fail('Client subprocess exit code: ${result.exitCode}'); 45 Expect.fail('Client subprocess exit code: ${result.exitCode}');
47 } 46 }
48 }); 47 });
49 } 48 }
50 49
51 runServer().then((server) { 50 runServer().then((server) {
52 clientProcess(server.port).then((_) { 51 clientProcess(server.port).then((_) {
53 server.close(); 52 server.close();
54 }); 53 });
55 }); 54 });
56 } 55 }
OLDNEW
« no previous file with comments | « tests/standalone/io/https_unauthorized_client.dart ('k') | tests/standalone/io/platform_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698