| 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:path/path.dart' as p; | 7 import 'package:path/path.dart' as p; |
| 8 import 'package:pub/src/io.dart'; | 8 import 'package:pub/src/io.dart'; |
| 9 | 9 |
| 10 import '../../descriptor.dart' as d; | 10 import '../../descriptor.dart' as d; |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 d.file("index.html", "<body>"), | 36 d.file("index.html", "<body>"), |
| 37 d.dir("sub", [ | 37 d.dir("sub", [ |
| 38 d.file("bar.html", "bar"), | 38 d.file("bar.html", "bar"), |
| 39 ]) | 39 ]) |
| 40 ]), | 40 ]), |
| 41 d.dir("randomdir", [ | 41 d.dir("randomdir", [ |
| 42 d.file("index.html", "<body>") | 42 d.file("index.html", "<body>") |
| 43 ]) | 43 ]) |
| 44 ]).create(); | 44 ]).create(); |
| 45 | 45 |
| 46 pubServe(args: ["test", "web", "randomdir"], shouldGetFirst: true); | 46 pubGet(); |
| 47 pubServe(args: ["test", "web", "randomdir"]); |
| 47 | 48 |
| 48 // Paths in web/. | 49 // Paths in web/. |
| 49 expectWebSocketResult("pathToUrls", { | 50 expectWebSocketResult("pathToUrls", { |
| 50 "path": p.join("web", "index.html") | 51 "path": p.join("web", "index.html") |
| 51 }, { | 52 }, { |
| 52 "urls": [getServerUrl("web", "index.html")] | 53 "urls": [getServerUrl("web", "index.html")] |
| 53 }); | 54 }); |
| 54 | 55 |
| 55 expectWebSocketResult("pathToUrls", { | 56 expectWebSocketResult("pathToUrls", { |
| 56 "path": p.join("web", "sub", "bar.html") | 57 "path": p.join("web", "sub", "bar.html") |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 "path": canonicalize(p.join(sandboxDir, "foo", "lib", "foo.dart")) | 125 "path": canonicalize(p.join(sandboxDir, "foo", "lib", "foo.dart")) |
| 125 }, {"urls": [ | 126 }, {"urls": [ |
| 126 getServerUrl("test", "packages/foo/foo.dart"), | 127 getServerUrl("test", "packages/foo/foo.dart"), |
| 127 getServerUrl("web", "packages/foo/foo.dart"), | 128 getServerUrl("web", "packages/foo/foo.dart"), |
| 128 getServerUrl("randomdir", "packages/foo/foo.dart") | 129 getServerUrl("randomdir", "packages/foo/foo.dart") |
| 129 ]}); | 130 ]}); |
| 130 | 131 |
| 131 endPubServe(); | 132 endPubServe(); |
| 132 }); | 133 }); |
| 133 } | 134 } |
| OLD | NEW |