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

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

Issue 2771453003: Format all tests. (Closed)
Patch Set: Format files Created 3 years, 8 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/https_client_certificate_test.dart
diff --git a/tests/standalone/io/https_client_certificate_test.dart b/tests/standalone/io/https_client_certificate_test.dart
index dc11a45d84a579bb1318453a117e7a0fa74c238e..93d0f7fac7d0654317647ba0ba8e6cd82e0ae789 100644
--- a/tests/standalone/io/https_client_certificate_test.dart
+++ b/tests/standalone/io/https_client_certificate_test.dart
@@ -15,7 +15,7 @@ String localFile(path) => Platform.script.resolve(path).toFilePath();
SecurityContext serverContext = new SecurityContext()
..useCertificateChain(localFile('certificates/server_chain.pem'))
..usePrivateKey(localFile('certificates/server_key.pem'),
- password: 'dartdart');
+ password: 'dartdart');
// TODO: Specify which client certificate roots to trust.
SecurityContext clientContext = new SecurityContext()
@@ -23,15 +23,14 @@ SecurityContext clientContext = new SecurityContext()
// TODO: Set a client certificate here.
..useCertificateChain(localFile('certificates/server_chain.pem'))
..usePrivateKey(localFile('certificates/server_key.pem'),
- password: 'dartdart');
+ password: 'dartdart');
void main() {
asyncStart();
- HttpServer.bindSecure(HOST_NAME,
- 0,
- serverContext,
- backlog: 5,
- requestClientCertificate: true).then((server) {
+ HttpServer
+ .bindSecure(HOST_NAME, 0, serverContext,
+ backlog: 5, requestClientCertificate: true)
+ .then((server) {
server.listen((HttpRequest request) {
Expect.isNotNull(request.certificate);
Expect.equals('CN=localhost', request.certificate.subject);
@@ -40,20 +39,19 @@ void main() {
});
HttpClient client = new HttpClient(context: clientContext);
- client.getUrl(Uri.parse("https://$HOST_NAME:${server.port}/"))
+ client
+ .getUrl(Uri.parse("https://$HOST_NAME:${server.port}/"))
.then((request) => request.close())
.then((response) {
- Expect.equals('CN=localhost', response.certificate.subject);
- Expect.equals('CN=myauthority', response.certificate.issuer);
- return response.fold(<int>[],
- (message, data) => message..addAll(data));
- })
- .then((message) {
- String received = new String.fromCharCodes(message);
- Expect.equals(received, "Hello");
- client.close();
- server.close();
- asyncEnd();
- });
+ Expect.equals('CN=localhost', response.certificate.subject);
+ Expect.equals('CN=myauthority', response.certificate.issuer);
+ return response.fold(<int>[], (message, data) => message..addAll(data));
+ }).then((message) {
+ String received = new String.fromCharCodes(message);
+ Expect.equals(received, "Hello");
+ client.close();
+ server.close();
+ asyncEnd();
+ });
});
}

Powered by Google App Engine
This is Rietveld 408576698