OLD | NEW |
---|---|
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS d.file | 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS d.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 library pub_tests; | 5 library pub_tests; |
6 | 6 |
7 import 'package:scheduled_test/scheduled_test.dart'; | 7 import 'package:scheduled_test/scheduled_test.dart'; |
8 | 8 |
9 import '../../descriptor.dart' as d; | 9 import '../../descriptor.dart' as d; |
10 import '../../test_pub.dart'; | 10 import '../../test_pub.dart'; |
11 import '../utils.dart'; | 11 import '../utils.dart'; |
12 | 12 |
13 main() { | 13 main() { |
14 initConfig(); | |
15 integration("binds a directory to a new port", () { | 14 integration("binds a directory to a new port", () { |
16 d.dir(appPath, [ | 15 d.dir(appPath, [ |
17 d.appPubspec(), | 16 d.appPubspec(), |
18 d.dir("test", [ | 17 d.dir("test", [ |
19 d.file("index.html", "<test body>") | 18 d.file("index.html", "<test body>") |
20 ]), | 19 ]), |
21 d.dir("web", [ | 20 d.dir("web", [ |
22 d.file("index.html", "<body>") | 21 d.file("index.html", "<body>") |
23 ]) | 22 ]) |
24 ]).create(); | 23 ]).create(); |
25 | 24 |
26 pubServe(args: ["web"]); | 25 pubServe(args: ["web"]); |
27 | 26 |
28 // Bind the new directory. | 27 // Bind the new directory. |
29 expectWebSocketResult("serveDirectory", {"path": "test"}, { | 28 schedule(() { |
Bob Nystrom
2015/06/26 23:04:10
Use async/await?
| |
30 "url": matches(r"http://localhost:\d+") | 29 return expectWebSocketResult("serveDirectory", {"path": "test"}, { |
31 }).then((response) { | 30 "url": matches(r"http://localhost:\d+") |
32 var url = Uri.parse(response["url"]); | 31 }).then((response) { |
33 registerServerPort("test", url.port); | 32 var url = Uri.parse(response["url"]); |
33 registerServerPort("test", url.port); | |
34 }); | |
34 }); | 35 }); |
35 | 36 |
36 // It should be served now. | 37 // It should be served now. |
37 requestShouldSucceed("index.html", "<test body>", root: "test"); | 38 requestShouldSucceed("index.html", "<test body>", root: "test"); |
38 | 39 |
39 // And watched. | 40 // And watched. |
40 d.dir(appPath, [ | 41 d.dir(appPath, [ |
41 d.dir("test", [ | 42 d.dir("test", [ |
42 d.file("index.html", "after") | 43 d.file("index.html", "after") |
43 ]) | 44 ]) |
44 ]).create(); | 45 ]).create(); |
45 | 46 |
46 waitForBuildSuccess(); | 47 waitForBuildSuccess(); |
47 requestShouldSucceed("index.html", "after", root: "test"); | 48 requestShouldSucceed("index.html", "after", root: "test"); |
48 | 49 |
49 endPubServe(); | 50 endPubServe(); |
50 }); | 51 }); |
51 } | 52 } |
OLD | NEW |