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

Unified Diff: tests/standalone/io/web_socket_error_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/web_socket_error_test.dart
diff --git a/tests/standalone/io/web_socket_error_test.dart b/tests/standalone/io/web_socket_error_test.dart
index 50038326cd32f61a8f17f3317983c740c43c4af2..76d0b93acbdf6ad52e9356bc41998712bb1c08f7 100644
--- a/tests/standalone/io/web_socket_error_test.dart
+++ b/tests/standalone/io/web_socket_error_test.dart
@@ -22,7 +22,6 @@ import "package:path/path.dart";
part "../../../sdk/lib/io/crypto.dart";
-
const String webSocketGUID = "258EAFA5-E914-47DA-95CA-C5AB0DC85B11";
const String CERT_NAME = 'localhost_cert';
const String HOST_NAME = 'localhost';
@@ -32,7 +31,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');
SecurityContext clientContext = new SecurityContext()
..setTrustedCertificates(localFile('certificates/trusted_certs.pem'));
@@ -45,19 +44,13 @@ class SecurityConfiguration {
SecurityConfiguration({bool this.secure});
- Future<HttpServer> createServer({int backlog: 0}) =>
- secure ? HttpServer.bindSecure(HOST_NAME,
- 0,
- serverContext,
- backlog: backlog)
- : HttpServer.bind(HOST_NAME,
- 0,
- backlog: backlog);
+ Future<HttpServer> createServer({int backlog: 0}) => secure
+ ? HttpServer.bindSecure(HOST_NAME, 0, serverContext, backlog: backlog)
+ : HttpServer.bind(HOST_NAME, 0, backlog: backlog);
Future<WebSocket> createClient(int port) =>
- // TODO(whesse): Add a client context argument to WebSocket.connect.
- WebSocket.connect('${secure ? "wss" : "ws"}://$HOST_NAME:$port/');
-
+ // TODO(whesse): Add a client context argument to WebSocket.connect.
+ WebSocket.connect('${secure ? "wss" : "ws"}://$HOST_NAME:$port/');
void testForceCloseServerEnd(int totalConnections) {
createServer().then((server) {
@@ -81,17 +74,15 @@ class SecurityConfiguration {
for (int i = 0; i < totalConnections; i++) {
createClient(server.port).then((webSocket) {
webSocket.add("Hello, world!");
- webSocket.listen(
- (message) {
- Expect.fail("unexpected message");
- },
- onDone: () {
- closeCount++;
- if (closeCount == totalConnections) {
- server.close();
- }
- });
+ webSocket.listen((message) {
+ Expect.fail("unexpected message");
+ }, onDone: () {
+ closeCount++;
+ if (closeCount == totalConnections) {
+ server.close();
+ }
});
+ });
}
});
}
@@ -101,7 +92,6 @@ class SecurityConfiguration {
}
}
-
main() {
asyncStart();
new SecurityConfiguration(secure: false).runTests();
@@ -109,4 +99,3 @@ main() {
// new SecurityConfiguration(secure: true).runTests();
asyncEnd();
}
-

Powered by Google App Engine
This is Rietveld 408576698