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

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

Issue 1665433002: Adds SecurityContext.setTrustedCertificatesBytes (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: 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 import "dart:async"; 5 import "dart:async";
6 import "dart:io"; 6 import "dart:io";
7 7
8 import "package:async_helper/async_helper.dart"; 8 import "package:async_helper/async_helper.dart";
9 import "package:expect/expect.dart"; 9 import "package:expect/expect.dart";
10 import "package:path/path.dart"; 10 import "package:path/path.dart";
11 11
12 const HOST_NAME = "localhost"; 12 const HOST_NAME = "localhost";
13 String localFile(path) => Platform.script.resolve(path).toFilePath(); 13 String localFile(path) => Platform.script.resolve(path).toFilePath();
14 List<int> readLocalFile(path) => (new File(localFile(path))).readAsBytesSync();
15 14
16 SecurityContext serverContext = new SecurityContext() 15 SecurityContext serverContext = new SecurityContext()
17 ..useCertificateChainBytes(readLocalFile('certificates/server_chain.pem')) 16 ..useCertificateChainSync(localFile('certificates/server_chain.pem'))
18 ..usePrivateKeyBytes(readLocalFile('certificates/server_key.pem'), 17 ..usePrivateKeySync(localFile('certificates/server_key.pem'),
19 password: 'dartdart'); 18 password: 'dartdart');
20 // TODO: Specify which client certificate roots to trust. 19 // TODO: Specify which client certificate roots to trust.
21 20
22 SecurityContext clientContext = new SecurityContext() 21 SecurityContext clientContext = new SecurityContext()
23 ..setTrustedCertificates(file: localFile('certificates/trusted_certs.pem')) 22 ..setTrustedCertificatesSync(localFile('certificates/trusted_certs.pem'))
24 // TODO: Set a client certificate here. 23 // TODO: Set a client certificate here.
25 ..useCertificateChainBytes(readLocalFile('certificates/server_chain.pem')) 24 ..useCertificateChainSync(localFile('certificates/server_chain.pem'))
26 ..usePrivateKeyBytes(readLocalFile('certificates/server_key.pem'), 25 ..usePrivateKeySync(localFile('certificates/server_key.pem'),
27 password: 'dartdart'); 26 password: 'dartdart');
28 27
29 void main() { 28 void main() {
30 asyncStart(); 29 asyncStart();
31 HttpServer.bindSecure(HOST_NAME, 30 HttpServer.bindSecure(HOST_NAME,
32 0, 31 0,
33 serverContext, 32 serverContext,
34 backlog: 5, 33 backlog: 5,
35 requestClientCertificate: true).then((server) { 34 requestClientCertificate: true).then((server) {
36 server.listen((HttpRequest request) { 35 server.listen((HttpRequest request) {
37 Expect.isNotNull(request.certificate); 36 Expect.isNotNull(request.certificate);
(...skipping 13 matching lines...) Expand all
51 }) 50 })
52 .then((message) { 51 .then((message) {
53 String received = new String.fromCharCodes(message); 52 String received = new String.fromCharCodes(message);
54 Expect.equals(received, "Hello"); 53 Expect.equals(received, "Hello");
55 client.close(); 54 client.close();
56 server.close(); 55 server.close();
57 asyncEnd(); 56 asyncEnd();
58 }); 57 });
59 }); 58 });
60 } 59 }
OLDNEW
« no previous file with comments | « tests/standalone/io/https_bad_certificate_test.dart ('k') | tests/standalone/io/https_server_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698