Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(664)

Unified Diff: sdk/lib/_internal/pub/test/serve/web_socket/unserve_directory_test.dart

Issue 203623004: Add web socket command to stop serving a directory. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Clean up. Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sdk/lib/_internal/pub/test/serve/web_socket/unserve_directory_superdirectory_still_watched_test.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/_internal/pub/test/serve/web_socket/unserve_directory_test.dart
diff --git a/sdk/lib/_internal/pub/test/serve/web_socket/serve_directory_test.dart b/sdk/lib/_internal/pub/test/serve/web_socket/unserve_directory_test.dart
similarity index 53%
copy from sdk/lib/_internal/pub/test/serve/web_socket/serve_directory_test.dart
copy to sdk/lib/_internal/pub/test/serve/web_socket/unserve_directory_test.dart
index 876142f0de4a0e3407241ce2ca28e6534fad2709..361bb3f87b579cf75adbfe5c209353ae33eae596 100644
--- a/sdk/lib/_internal/pub/test/serve/web_socket/serve_directory_test.dart
+++ b/sdk/lib/_internal/pub/test/serve/web_socket/unserve_directory_test.dart
@@ -4,15 +4,13 @@
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("binds a directory to a new port", () {
+ integration("unbinds a directory from a port", () {
d.dir(appPath, [
d.appPubspec(),
d.dir("test", [
@@ -23,30 +21,24 @@ main() {
])
]).create();
- pubServe(args: ["web"]);
+ pubServe();
+
+ requestShouldSucceed("index.html", "<body>");
+ requestShouldSucceed("index.html", "<test body>", root: "test");
- // Bind the new directory.
+ // Unbind the directory.
expectWebSocketCall({
- "command": "serveDirectory",
+ "command": "unserveDirectory",
"path": "test"
- }, replyMatches: {"url": matches(r"http://127\.0\.0\.1:\d+")})
- .then((response) {
- var url = Uri.parse(response["url"]);
- registerServerPort("test", url.port);
+ }, replyEquals: {
+ "url": getServerUrl("test")
});
- // It should be served now.
- requestShouldSucceed("index.html", "<test body>", root: "test");
-
- // And watched.
- d.dir(appPath, [
- d.dir("test", [
- d.file("index.html", "after")
- ])
- ]).create();
+ // "test" should not be served now.
+ requestShouldNotConnect("index.html", root: "test");
- waitForBuildSuccess();
- requestShouldSucceed("index.html", "after", root: "test");
+ // "web" is still fine.
+ requestShouldSucceed("index.html", "<body>");
endPubServe();
});
« no previous file with comments | « sdk/lib/_internal/pub/test/serve/web_socket/unserve_directory_superdirectory_still_watched_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698