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

Side by Side Diff: tests/standalone/io/https_client_certificate_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 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 14
15 SecurityContext serverContext = new SecurityContext() 15 SecurityContext serverContext = new SecurityContext()
16 ..useCertificateChainSync(localFile('certificates/server_chain.pem')) 16 ..useCertificateChain(localFile('certificates/server_chain.pem'))
17 ..usePrivateKeySync(localFile('certificates/server_key.pem'), 17 ..usePrivateKey(localFile('certificates/server_key.pem'),
18 password: 'dartdart'); 18 password: 'dartdart');
19 // TODO: Specify which client certificate roots to trust. 19 // TODO: Specify which client certificate roots to trust.
20 20
21 SecurityContext clientContext = new SecurityContext() 21 SecurityContext clientContext = new SecurityContext()
22 ..setTrustedCertificatesSync(localFile('certificates/trusted_certs.pem')) 22 ..setTrustedCertificates(localFile('certificates/trusted_certs.pem'))
23 // TODO: Set a client certificate here. 23 // TODO: Set a client certificate here.
24 ..useCertificateChainSync(localFile('certificates/server_chain.pem')) 24 ..useCertificateChain(localFile('certificates/server_chain.pem'))
25 ..usePrivateKeySync(localFile('certificates/server_key.pem'), 25 ..usePrivateKey(localFile('certificates/server_key.pem'),
26 password: 'dartdart'); 26 password: 'dartdart');
27 27
28 void main() { 28 void main() {
29 asyncStart(); 29 asyncStart();
30 HttpServer.bindSecure(HOST_NAME, 30 HttpServer.bindSecure(HOST_NAME,
31 0, 31 0,
32 serverContext, 32 serverContext,
33 backlog: 5, 33 backlog: 5,
34 requestClientCertificate: true).then((server) { 34 requestClientCertificate: true).then((server) {
35 server.listen((HttpRequest request) { 35 server.listen((HttpRequest request) {
36 Expect.isNotNull(request.certificate); 36 Expect.isNotNull(request.certificate);
(...skipping 13 matching lines...) Expand all
50 }) 50 })
51 .then((message) { 51 .then((message) {
52 String received = new String.fromCharCodes(message); 52 String received = new String.fromCharCodes(message);
53 Expect.equals(received, "Hello"); 53 Expect.equals(received, "Hello");
54 client.close(); 54 client.close();
55 server.close(); 55 server.close();
56 asyncEnd(); 56 asyncEnd();
57 }); 57 });
58 }); 58 });
59 } 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