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

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

Issue 1648793005: Adds SecurityContext.useCertificateChainBytes (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: *AsBytes -> *Bytes 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 in HttpClient. 5 // This test verifies that the bad certificate callback works in HttpClient.
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";
11 11
12 final HOST_NAME = 'localhost'; 12 final HOST_NAME = 'localhost';
13 13
14 String localFile(path) => Platform.script.resolve(path).toFilePath(); 14 String localFile(path) => Platform.script.resolve(path).toFilePath();
15 List<int> readLocalFile(path) => (new File(localFile(path))).readAsBytesSync(); 15 List<int> readLocalFile(path) => (new File(localFile(path))).readAsBytesSync();
16 16
17 SecurityContext serverContext = new SecurityContext() 17 SecurityContext serverContext = new SecurityContext()
18 ..useCertificateChain(localFile('certificates/server_chain.pem')) 18 ..useCertificateChainBytes(readLocalFile('certificates/server_chain.pem'))
19 ..usePrivateKeyAsBytes(readLocalFile('certificates/server_key.pem'), 19 ..usePrivateKeyBytes(readLocalFile('certificates/server_key.pem'),
20 password: 'dartdart'); 20 password: 'dartdart');
21 21
22 class CustomException {} 22 class CustomException {}
23 23
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 HttpServer.bindSecure(HOST, 0, serverContext, backlog: 5); 26 var server = await HttpServer.bindSecure(HOST, 0, serverContext, backlog: 5);
27 server.listen((request) { 27 server.listen((request) {
28 request.listen((_) { 28 request.listen((_) {
29 }, onDone: () { 29 }, onDone: () {
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 Expect.notEquals(result, 'pass'); 73 Expect.notEquals(result, 'pass');
74 if (result == 'fail') { 74 if (result == 'fail') {
75 Expect.isTrue(error is HandshakeException); 75 Expect.isTrue(error is HandshakeException);
76 } else if (result == 'throw') { 76 } else if (result == 'throw') {
77 Expect.isTrue(error is CustomException); 77 Expect.isTrue(error is CustomException);
78 } else { 78 } else {
79 Expect.fail('Unknown expectation $result'); 79 Expect.fail('Unknown expectation $result');
80 } 80 }
81 } 81 }
82 } 82 }
OLDNEW
« no previous file with comments | « tests/standalone/io/http_proxy_test.dart ('k') | tests/standalone/io/https_client_certificate_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698