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

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

Issue 1687533002: Adds support for PKCS12 containers to SecurityContext (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Address comments 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
« no previous file with comments | « tests/standalone/io/secure_socket_test.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2015, 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 "package:expect/expect.dart"; 5 import "package:expect/expect.dart";
6 import "dart:io"; 6 import "dart:io";
7 7
8 String localFile(path) => Platform.script.resolve(path).toFilePath(); 8 String localFile(path) => Platform.script.resolve(path).toFilePath();
9 9
10 bool printException(e) { print(e); return true; } 10 bool printException(e) { print(e); return true; }
(...skipping 16 matching lines...) Expand all
27 tlsException); 27 tlsException);
28 Expect.throws(() => c.usePrivateKeySync( 28 Expect.throws(() => c.usePrivateKeySync(
29 localFile('certificates/server_key_oops.pem'), 29 localFile('certificates/server_key_oops.pem'),
30 password: "dartdart"), 30 password: "dartdart"),
31 fileSystemException); 31 fileSystemException);
32 Expect.throws(() => c.usePrivateKeySync(1), argumentOrTypeError); 32 Expect.throws(() => c.usePrivateKeySync(1), argumentOrTypeError);
33 Expect.throws(() => c.usePrivateKeySync(null), argumentError); 33 Expect.throws(() => c.usePrivateKeySync(null), argumentError);
34 Expect.throws(() => c.usePrivateKeySync( 34 Expect.throws(() => c.usePrivateKeySync(
35 localFile('certificates/server_key.pem'), password: 3), 35 localFile('certificates/server_key.pem'), password: 3),
36 argumentOrTypeError); 36 argumentOrTypeError);
37
38 // Malformed PEM certs.
39 Expect.throws(() => c.usePrivateKeySync(
40 localFile('certificates/client1_key_malformed.pem'),
41 password: "dartdart"),
42 tlsException);
43 Expect.throws(() => c.setTrustedCertificatesSync(
44 localFile('certificates/trusted_certs_malformed.pem')),
45 tlsException);
46 Expect.throws(() => c.useCertificateChainSync(
47 localFile('certificates/server_chain_malformed1.pem')),
48 tlsException);
49 Expect.throws(() => c.useCertificateChainSync(
50 localFile('certificates/server_chain_malformed2.pem')),
51 tlsException);
52 Expect.throws(() => c.setClientAuthoritiesSync(
53 localFile('certificates/client_authority_malformed.pem')),
54 argumentError);
55
37 c.usePrivateKeySync( 56 c.usePrivateKeySync(
38 localFile('certificates/server_key.pem'), password: "dartdart"); 57 localFile('certificates/server_key.pem'), password: "dartdart");
39 } 58 }
40 59
41 void main() { 60 void main() {
42 testUsePrivateKeyArguments(); 61 testUsePrivateKeyArguments();
43 } 62 }
OLDNEW
« no previous file with comments | « tests/standalone/io/secure_socket_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698