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

Side by Side Diff: tests/standalone/io/raw_secure_server_socket_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 String localFile(path) => Platform.script.resolve(path).toFilePath(); 17 String localFile(path) => Platform.script.resolve(path).toFilePath();
18 18
19 SecurityContext serverContext = new SecurityContext() 19 SecurityContext serverContext = new SecurityContext()
20 ..useCertificateChainSync(localFile('certificates/server_chain.pem')) 20 ..useCertificateChain(localFile('certificates/server_chain.pem'))
21 ..usePrivateKeySync(localFile('certificates/server_key.pem'), 21 ..usePrivateKey(localFile('certificates/server_key.pem'),
22 password: 'dartdart'); 22 password: 'dartdart');
23 23
24 SecurityContext clientContext = new SecurityContext() 24 SecurityContext clientContext = new SecurityContext()
25 ..setTrustedCertificatesSync(localFile('certificates/trusted_certs.pem')); 25 ..setTrustedCertificates(localFile('certificates/trusted_certs.pem'));
26 26
27 void testSimpleBind() { 27 void testSimpleBind() {
28 asyncStart(); 28 asyncStart();
29 RawSecureServerSocket.bind(HOST, 0, serverContext).then((s) { 29 RawSecureServerSocket.bind(HOST, 0, serverContext).then((s) {
30 Expect.isTrue(s.port > 0); 30 Expect.isTrue(s.port > 0);
31 s.close(); 31 s.close();
32 asyncEnd(); 32 asyncEnd();
33 }); 33 });
34 } 34 }
35 35
(...skipping 531 matching lines...) Expand 10 before | Expand all | Expand 10 after
567 runTests() { 567 runTests() {
568 testSimpleBind(); 568 testSimpleBind();
569 testInvalidBind(); 569 testInvalidBind();
570 testSimpleConnect(); 570 testSimpleConnect();
571 SecurityContext context = new SecurityContext(); 571 SecurityContext context = new SecurityContext();
572 testSimpleConnectFail(context, false); 572 testSimpleConnectFail(context, false);
573 testSimpleConnectFail(context, true); 573 testSimpleConnectFail(context, true);
574 var chain = 574 var chain =
575 Platform.script.resolve('certificates/untrusted_server_chain.pem') 575 Platform.script.resolve('certificates/untrusted_server_chain.pem')
576 .toFilePath(); 576 .toFilePath();
577 context.useCertificateChainSync(chain); 577 context.useCertificateChain(chain);
578 testSimpleConnectFail(context, false); 578 testSimpleConnectFail(context, false);
579 testSimpleConnectFail(context, true); 579 testSimpleConnectFail(context, true);
580 var key = 580 var key =
581 Platform.script.resolve('certificates/untrusted_server_key.pem') 581 Platform.script.resolve('certificates/untrusted_server_key.pem')
582 .toFilePath(); 582 .toFilePath();
583 context.usePrivateKeySync(key, password: 'dartdart'); 583 context.usePrivateKey(key, password: 'dartdart');
584 testSimpleConnectFail(context, false); 584 testSimpleConnectFail(context, false);
585 testSimpleConnectFail(context, true); 585 testSimpleConnectFail(context, true);
586 testServerListenAfterConnect(); 586 testServerListenAfterConnect();
587 587
588 testSimpleReadWrite(listenSecure: true, 588 testSimpleReadWrite(listenSecure: true,
589 connectSecure: true, 589 connectSecure: true,
590 handshakeBeforeSecure: false, 590 handshakeBeforeSecure: false,
591 postponeSecure: false, 591 postponeSecure: false,
592 dropReads: false); 592 dropReads: false);
593 testSimpleReadWrite(listenSecure: true, 593 testSimpleReadWrite(listenSecure: true,
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
625 testSimpleReadWrite(listenSecure: false, 625 testSimpleReadWrite(listenSecure: false,
626 connectSecure: false, 626 connectSecure: false,
627 handshakeBeforeSecure: true, 627 handshakeBeforeSecure: true,
628 postponeSecure: true, 628 postponeSecure: true,
629 dropReads: true); 629 dropReads: true);
630 testPausedSecuringSubscription(false, false); 630 testPausedSecuringSubscription(false, false);
631 testPausedSecuringSubscription(true, false); 631 testPausedSecuringSubscription(true, false);
632 testPausedSecuringSubscription(false, true); 632 testPausedSecuringSubscription(false, true);
633 testPausedSecuringSubscription(true, true); 633 testPausedSecuringSubscription(true, true);
634 } 634 }
OLDNEW
« no previous file with comments | « tests/standalone/io/raw_secure_server_closing_test.dart ('k') | tests/standalone/io/raw_secure_socket_pause_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698