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

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

Issue 1757453002: Rolls back fix of SecurityContext method names. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 9 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
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 // VMOptions= 5 // VMOptions=
6 // VMOptions=--short_socket_read 6 // VMOptions=--short_socket_read
7 // VMOptions=--short_socket_write 7 // VMOptions=--short_socket_write
8 // VMOptions=--short_socket_read --short_socket_write 8 // VMOptions=--short_socket_read --short_socket_write
9 9
10 import "dart:async"; 10 import "dart:async";
11 import "dart:io"; 11 import "dart:io";
12 12
13 import "package:async_helper/async_helper.dart"; 13 import "package:async_helper/async_helper.dart";
14 import "package:expect/expect.dart"; 14 import "package:expect/expect.dart";
15 15
16 InternetAddress HOST; 16 InternetAddress HOST;
17 17
18 String localFile(path) => Platform.script.resolve(path).toFilePath(); 18 String localFile(path) => Platform.script.resolve(path).toFilePath();
19 19
20 SecurityContext serverContext = new SecurityContext() 20 SecurityContext serverContext = new SecurityContext()
21 ..useCertificateChainSync(localFile('certificates/server_chain.pem')) 21 ..useCertificateChain(localFile('certificates/server_chain.pem'))
22 ..usePrivateKeySync(localFile('certificates/server_key.pem'), 22 ..usePrivateKey(localFile('certificates/server_key.pem'),
23 password: 'dartdart'); 23 password: 'dartdart');
24 24
25 SecurityContext clientContext = new SecurityContext() 25 SecurityContext clientContext = new SecurityContext()
26 ..setTrustedCertificatesSync( 26 ..setTrustedCertificates(localFile('certificates/trusted_certs.pem'));
27 localFile('certificates/trusted_certs.pem'));
28 27
29 void testCloseOneEnd(String toClose) { 28 void testCloseOneEnd(String toClose) {
30 asyncStart(); 29 asyncStart();
31 Completer serverDone = new Completer(); 30 Completer serverDone = new Completer();
32 Completer serverEndDone = new Completer(); 31 Completer serverEndDone = new Completer();
33 Completer clientEndDone = new Completer(); 32 Completer clientEndDone = new Completer();
34 Future.wait([serverDone.future, serverEndDone.future, clientEndDone.future]) 33 Future.wait([serverDone.future, serverEndDone.future, clientEndDone.future])
35 .then((_) { 34 .then((_) {
36 asyncEnd(); 35 asyncEnd();
37 }); 36 });
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 175
177 runTests() { 176 runTests() {
178 testCloseOneEnd("client"); 177 testCloseOneEnd("client");
179 testCloseOneEnd("server"); 178 testCloseOneEnd("server");
180 testCloseBothEnds(); 179 testCloseBothEnds();
181 testPauseServerSocket(); 180 testPauseServerSocket();
182 testCloseServer(); 181 testCloseServer();
183 // TODO(whesse): Add testPauseSocket from raw_socket_test.dart. 182 // TODO(whesse): Add testPauseSocket from raw_socket_test.dart.
184 // TODO(whesse): Add testCancelResubscribeSocket from raw_socket_test.dart. 183 // TODO(whesse): Add testCancelResubscribeSocket from raw_socket_test.dart.
185 } 184 }
OLDNEW
« no previous file with comments | « tests/standalone/io/secure_server_client_certificate_test.dart ('k') | tests/standalone/io/secure_server_socket_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698