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

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

Issue 1665433002: Adds SecurityContext.setTrustedCertificatesBytes (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Adds MemBIOScope Created 4 years, 10 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 // This test verifies that the bad certificate callback works. 5 // This test verifies that the bad certificate callback works.
6 6
7 import "dart:async"; 7 import "dart:async";
8 import "dart:io"; 8 import "dart:io";
9 9
10 import "package:expect/expect.dart"; 10 import "package:expect/expect.dart";
(...skipping 13 matching lines...) Expand all
24 main() async { 24 main() async {
25 var HOST = (await InternetAddress.lookup(HOST_NAME)).first; 25 var HOST = (await InternetAddress.lookup(HOST_NAME)).first;
26 var server = await SecureServerSocket.bind(HOST_NAME, 0, serverContext); 26 var server = await SecureServerSocket.bind(HOST_NAME, 0, serverContext);
27 server.listen((SecureSocket socket) { 27 server.listen((SecureSocket socket) {
28 socket.listen((_) {}, onDone: () { 28 socket.listen((_) {}, onDone: () {
29 socket.close(); 29 socket.close();
30 }); 30 });
31 }, onError: (e) { if (e is! HandshakeException) throw e; }); 31 }, onError: (e) { if (e is! HandshakeException) throw e; });
32 32
33 SecurityContext goodContext = new SecurityContext() 33 SecurityContext goodContext = new SecurityContext()
34 ..setTrustedCertificates(file: localFile('certificates/trusted_certs.pem')); 34 ..setTrustedCertificatesBytes(
35 readLocalFile('certificates/trusted_certs.pem'));
35 SecurityContext badContext = new SecurityContext(); 36 SecurityContext badContext = new SecurityContext();
36 SecurityContext defaultContext = SecurityContext.defaultContext; 37 SecurityContext defaultContext = SecurityContext.defaultContext;
37 38
38 await runClient(server.port, goodContext, true, 'pass'); 39 await runClient(server.port, goodContext, true, 'pass');
39 await runClient(server.port, goodContext, false, 'pass'); 40 await runClient(server.port, goodContext, false, 'pass');
40 await runClient(server.port, goodContext, 'fisk', 'pass'); 41 await runClient(server.port, goodContext, 'fisk', 'pass');
41 await runClient(server.port, goodContext, 'exception', 'pass'); 42 await runClient(server.port, goodContext, 'exception', 'pass');
42 await runClient(server.port, badContext, true, 'pass'); 43 await runClient(server.port, badContext, true, 'pass');
43 await runClient(server.port, badContext, false, 'fail'); 44 await runClient(server.port, badContext, false, 'fail');
44 await runClient(server.port, badContext, 'fisk', 'fail'); 45 await runClient(server.port, badContext, 'fisk', 'fail');
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 Expect.notEquals(result, 'pass'); 77 Expect.notEquals(result, 'pass');
77 if (result == 'fail') { 78 if (result == 'fail') {
78 Expect.isTrue(error is HandshakeException || error is ArgumentError); 79 Expect.isTrue(error is HandshakeException || error is ArgumentError);
79 } else if (result == 'throw') { 80 } else if (result == 'throw') {
80 Expect.isTrue(error is CustomException); 81 Expect.isTrue(error is CustomException);
81 } else { 82 } else {
82 Expect.fail('Unknown expectation $result'); 83 Expect.fail('Unknown expectation $result');
83 } 84 }
84 } 85 }
85 } 86 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698