Index: sdk/lib/_internal/pub/test/serve/web_socket/converts_urls_to_asset_ids_test.dart |
diff --git a/sdk/lib/_internal/pub/test/serve/web_socket/converts_urls_to_asset_ids_test.dart b/sdk/lib/_internal/pub/test/serve/web_socket/converts_urls_to_asset_ids_test.dart |
new file mode 100644 |
index 0000000000000000000000000000000000000000..c06ae3818d9b01929fb0fbd63707b1b2fe63ab9c |
--- /dev/null |
+++ b/sdk/lib/_internal/pub/test/serve/web_socket/converts_urls_to_asset_ids_test.dart |
@@ -0,0 +1,71 @@ |
+// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS d.file |
+// for details. All rights reserved. Use of this source code is governed by a |
+// BSD-style license that can be found in the LICENSE file. |
+ |
+library pub_tests; |
+ |
+import 'package:scheduled_test/scheduled_test.dart'; |
+import '../../descriptor.dart' as d; |
+import '../../test_pub.dart'; |
+import '../utils.dart'; |
+ |
+main() { |
+ initConfig(); |
+ integration("converts URLs to matching asset ids", () { |
+ d.dir("foo", [ |
+ d.libPubspec("foo", "0.0.1"), |
+ d.dir("asset", [ |
+ d.file("foo.txt", "foo"), |
+ d.dir("sub", [ |
+ d.file("bar.txt", "bar"), |
+ ]) |
+ ]), |
+ d.dir("lib", [ |
+ d.file("foo.dart", "foo") |
+ ]) |
+ ]).create(); |
+ |
+ d.dir(appPath, [ |
+ d.appPubspec({ |
+ "foo": {"path": "../foo"} |
+ }), |
+ d.dir("lib", [ |
+ d.file("myapp.dart", "myapp"), |
+ ]), |
+ d.dir("web", [ |
+ d.file("index.html", "<body>"), |
+ d.dir("sub", [ |
+ d.file("bar.html", "bar"), |
+ ]) |
+ ]) |
+ ]).create(); |
+ |
+ startPubServe(shouldGetFirst: true); |
+ |
+ webSocketShouldReply( |
+ {"command": "urlToAsset", "path": "sub/bar.html"}, |
+ equals({"package": "myapp", "path": "web/sub/bar.html"})); |
+ |
+ webSocketShouldReply( |
+ {"command": "urlToAsset", "path": "packages/myapp/myapp.dart"}, |
+ equals({"package": "myapp", "path": "lib/myapp.dart"})); |
+ |
+ webSocketShouldReply( |
+ {"command": "urlToAsset", "path": "index.html"}, |
+ equals({"package": "myapp", "path": "web/index.html"})); |
+ |
+ webSocketShouldReply( |
+ {"command": "urlToAsset", "path": "packages/foo/foo.dart"}, |
+ equals({"package": "foo", "path": "lib/foo.dart"})); |
+ |
+ webSocketShouldReply( |
+ {"command": "urlToAsset", "path": "assets/foo/foo.txt"}, |
+ equals({"package": "foo", "path": "asset/foo.txt"})); |
+ |
+ webSocketShouldReply( |
+ {"command": "urlToAsset", "path": "assets/foo/sub/bar.txt"}, |
+ equals({"package": "foo", "path": "asset/sub/bar.txt"})); |
+ |
+ endPubServe(); |
+ }); |
+} |