Index: sdk/lib/_internal/pub/test/serve/serve_from_app_test.dart |
diff --git a/sdk/lib/_internal/pub/test/serve/serve_from_app_test.dart b/sdk/lib/_internal/pub/test/serve/serve_from_app_test.dart |
new file mode 100644 |
index 0000000000000000000000000000000000000000..3c50cde340c5e2621f6f525c1f659b99980b40d3 |
--- /dev/null |
+++ b/sdk/lib/_internal/pub/test/serve/serve_from_app_test.dart |
@@ -0,0 +1,90 @@ |
+// Copyright (c) 2012, 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 d.file. |
+ |
+library pub_tests; |
+ |
+import 'dart:io'; |
+ |
+import '../descriptor.dart' as d; |
+import '../test_pub.dart'; |
+import 'utils.dart'; |
+ |
+main() { |
+ initConfig(); |
+ integration("finds files in the app's web directory", () { |
+ d.dir(appPath, [ |
+ d.appPubspec(), |
+ d.dir("web", [ |
+ d.file("index.html", "<body>"), |
+ d.file("file.dart", "void main() => print('hello');"), |
+ d.dir("sub", [ |
+ d.file("file.html", "<body>in subdir</body>"), |
+ d.file("lib.dart", "void foo() => 'foo';"), |
+ ]) |
+ ]) |
+ ]).create(); |
+ |
+ startPubServe(); |
+ requestShouldSucceed("index.html", "<body>"); |
+ requestShouldSucceed("file.dart", "void main() => print('hello');"); |
+ requestShouldSucceed("sub/file.html", "<body>in subdir</body>"); |
+ requestShouldSucceed("sub/lib.dart", "void foo() => 'foo';"); |
+ endPubServe(); |
+ }); |
+ |
+ integration("'packages' URLs look in the app's lib directory", () { |
nweiz
2013/07/25 22:58:58
I thought we were on a strict one-test-per-file di
Bob Nystrom
2013/07/26 20:20:11
Done.
|
+ d.dir(appPath, [ |
+ d.appPubspec(), |
+ d.dir("lib", [ |
+ d.file("lib.dart", "foo() => 'foo';"), |
+ d.dir("sub", [ |
+ d.file("lib.dart", "bar() => 'bar';"), |
+ ]) |
+ ]) |
+ ]).create(); |
+ |
+ startPubServe(); |
+ requestShouldSucceed("packages/myapp/lib.dart", "foo() => 'foo';"); |
+ requestShouldSucceed("packages/myapp/sub/lib.dart", "bar() => 'bar';"); |
+ |
+ // "packages" can be in a subpath of the URL: |
+ requestShouldSucceed("foo/packages/myapp/lib.dart", "foo() => 'foo';"); |
+ requestShouldSucceed("a/b/packages/myapp/sub/lib.dart", "bar() => 'bar';"); |
+ endPubServe(); |
+ }); |
+ |
+ integration("'assets' URLs look in the app's 'asset' directory", () { |
+ d.dir(appPath, [ |
+ d.appPubspec(), |
+ d.dir("asset", [ |
+ d.file("foo.txt", "foo"), |
+ d.dir("sub", [ |
+ d.file("bar.txt", "bar"), |
+ ]) |
+ ]) |
+ ]).create(); |
+ |
+ startPubServe(); |
+ requestShouldSucceed("assets/myapp/foo.txt", "foo"); |
+ requestShouldSucceed("assets/myapp/sub/bar.txt", "bar"); |
+ |
+ // "assets" can be in a subpath of the URL: |
+ requestShouldSucceed("foo/assets/myapp/foo.txt", "foo"); |
+ requestShouldSucceed("a/b/assets/myapp/sub/bar.txt", "bar"); |
+ endPubServe(); |
+ }); |
+ |
+ integration("requesting '/' reads 'web/index.html'", () { |
+ d.dir(appPath, [ |
+ d.appPubspec(), |
+ d.dir("web", [ |
+ d.file("index.html", "<body>") |
+ ]) |
+ ]).create(); |
+ |
+ startPubServe(); |
+ requestShouldSucceed("", "<body>"); |
+ endPubServe(); |
+ }); |
+} |