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

Side by Side Diff: tests/standalone/io/secure_server_socket_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 // 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 17
18 String localFile(path) => Platform.script.resolve(path).toFilePath(); 18 String localFile(path) => Platform.script.resolve(path).toFilePath();
19 List<int> readLocalFile(path) => (new File(localFile(path))).readAsBytesSync(); 19 List<int> readLocalFile(path) => (new File(localFile(path))).readAsBytesSync();
20 20
21 SecurityContext serverContext = new SecurityContext() 21 SecurityContext serverContext = new SecurityContext()
22 ..useCertificateChainBytes(readLocalFile('certificates/server_chain.pem')) 22 ..useCertificateChainBytes(readLocalFile('certificates/server_chain.pem'))
23 ..usePrivateKeyBytes(readLocalFile('certificates/server_key.pem'), 23 ..usePrivateKeyBytes(readLocalFile('certificates/server_key.pem'),
24 password: 'dartdart'); 24 password: 'dartdart');
25 25
26 SecurityContext clientContext = new SecurityContext() 26 SecurityContext clientContext = new SecurityContext()
27 ..setTrustedCertificates(file: localFile('certificates/trusted_certs.pem')); 27 ..setTrustedCertificatesBytes(
28 readLocalFile('certificates/trusted_certs.pem'));
28 29
29 void testSimpleBind() { 30 void testSimpleBind() {
30 asyncStart(); 31 asyncStart();
31 SecureServerSocket.bind(HOST, 0, serverContext).then((s) { 32 SecureServerSocket.bind(HOST, 0, serverContext).then((s) {
32 Expect.isTrue(s.port > 0); 33 Expect.isTrue(s.port > 0);
33 s.close(); 34 s.close();
34 asyncEnd(); 35 asyncEnd();
35 }); 36 });
36 } 37 }
37 38
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after
233 for (bool cancelOnError in [true, false]) { 234 for (bool cancelOnError in [true, false]) {
234 if (server == null || client == null) { 235 if (server == null || client == null) {
235 testSimpleConnectFail(server, client, cancelOnError); 236 testSimpleConnectFail(server, client, cancelOnError);
236 } 237 }
237 } 238 }
238 } 239 }
239 } 240 }
240 testServerListenAfterConnect(); 241 testServerListenAfterConnect();
241 testSimpleReadWrite(); 242 testSimpleReadWrite();
242 } 243 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698