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

Unified Diff: tests/standalone/io/security_context_argument_test.dart

Issue 1616073004: Adds SecurityContext.usePrivateKeyBytes (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Address comments Created 4 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: tests/standalone/io/security_context_argument_test.dart
diff --git a/tests/standalone/io/security_context_argument_test.dart b/tests/standalone/io/security_context_argument_test.dart
index 5e263f63e6ede29617a18c8c82d2e214f1cb1b77..85426091f4f9fddfd7f0ea59bd065c9cc410ebdd 100644
--- a/tests/standalone/io/security_context_argument_test.dart
+++ b/tests/standalone/io/security_context_argument_test.dart
@@ -6,35 +6,39 @@ import "package:expect/expect.dart";
import "dart:io";
String localFile(path) => Platform.script.resolve(path).toFilePath();
+List<int> readLocalFile(path) => (new File(localFile(path))).readAsBytesSync();
bool printException(e) { print(e); return true; }
bool argumentError(e) => e is ArgumentError;
bool argumentOrTypeError(e) => e is ArgumentError || e is TypeError;
+bool fileSystemException(e) => e is FileSystemException;
bool tlsException(e) => e is TlsException;
void testUsePrivateKeyArguments() {
var c = new SecurityContext();
c.useCertificateChain(localFile('certificates/server_chain.pem'));
- Expect.throws(() => c.usePrivateKey(
- localFile('certificates/server_key.pem'), password: "dart" * 1000),
+ Expect.throws(() => c.usePrivateKeyAsBytes(
+ readLocalFile('certificates/server_key.pem'),
+ password: "dart" * 1000),
argumentError);
- Expect.throws(() => c.usePrivateKey(
- localFile('certificates/server_key.pem')),
+ Expect.throws(() => c.usePrivateKeyAsBytes(
+ readLocalFile('certificates/server_key.pem')),
tlsException);
- Expect.throws(() => c.usePrivateKey(
- localFile('certificates/server_key.pem'), password: "iHackSites"),
+ Expect.throws(() => c.usePrivateKeyAsBytes(
+ readLocalFile('certificates/server_key.pem'), password: "iHackSites"),
tlsException);
- Expect.throws(() => c.usePrivateKey(
- localFile('certificates/server_key_oops.pem'), password: "dartdart"),
- tlsException);
- Expect.throws(() => c.usePrivateKey(1), argumentOrTypeError);
- Expect.throws(() => c.usePrivateKey(null), argumentError);
- Expect.throws(() => c.usePrivateKey(
- localFile('certificates/server_key_oops.pem'), password: 3),
- argumentOrTypeError);
- c.usePrivateKey(
- localFile('certificates/server_key.pem'), password: "dartdart");
-}
+ Expect.throws(() => c.usePrivateKeyAsBytes(
+ readLocalFile('certificates/server_key_oops.pem'),
+ password: "dartdart"),
+ fileSystemException);
+ Expect.throws(() => c.usePrivateKeyAsBytes(1), argumentOrTypeError);
+ Expect.throws(() => c.usePrivateKeyAsBytes(null), argumentError);
+ Expect.throws(() => c.usePrivateKeyAsBytes(
+ readLocalFile('certificates/server_key_oops.pem'), password: 3),
+ fileSystemException);
+ c.usePrivateKeyAsBytes(
+ readLocalFile('certificates/server_key.pem'), password: "dartdart");
+}
void main() {
testUsePrivateKeyArguments();
« no previous file with comments | « tests/standalone/io/secure_unauthorized_test.dart ('k') | tests/standalone/io/socket_upgrade_to_secure_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698