| OLD | NEW |
| 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 // OtherResources=certificates/server_chain.pem |
| 10 // OtherResources=certificates/server_key.pem |
| 11 // OtherResources=certificates/trusted_certs.pem |
| 9 | 12 |
| 10 import "dart:async"; | 13 import "dart:async"; |
| 11 import "dart:io"; | 14 import "dart:io"; |
| 12 | 15 |
| 13 import "package:async_helper/async_helper.dart"; | 16 import "package:async_helper/async_helper.dart"; |
| 14 import "package:expect/expect.dart"; | 17 import "package:expect/expect.dart"; |
| 15 | 18 |
| 16 InternetAddress HOST; | 19 InternetAddress HOST; |
| 17 SecureServerSocket SERVER; | 20 SecureServerSocket SERVER; |
| 18 | 21 |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 | 59 |
| 57 void main() { | 60 void main() { |
| 58 asyncStart(); | 61 asyncStart(); |
| 59 InternetAddress.lookup("localhost").then((hosts) => HOST = hosts.first) | 62 InternetAddress.lookup("localhost").then((hosts) => HOST = hosts.first) |
| 60 .then((_) => startServer()) | 63 .then((_) => startServer()) |
| 61 .then((_) => ['ale', 'bar', 'che', 'den', 'els'].map(testClient)) | 64 .then((_) => ['ale', 'bar', 'che', 'den', 'els'].map(testClient)) |
| 62 .then((futures) => Future.wait(futures)) | 65 .then((futures) => Future.wait(futures)) |
| 63 .then((_) => SERVER.close()) | 66 .then((_) => SERVER.close()) |
| 64 .then((_) => asyncEnd()); | 67 .then((_) => asyncEnd()); |
| 65 } | 68 } |
| OLD | NEW |