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

Unified Diff: sdk/lib/_internal/pub/test/serve/web_socket/unserve_directory_arg_errors_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
Index: sdk/lib/_internal/pub/test/serve/web_socket/unserve_directory_arg_errors_test.dart
diff --git a/sdk/lib/_internal/pub/test/serve/web_socket/serve_directory_arg_errors_test.dart b/sdk/lib/_internal/pub/test/serve/web_socket/unserve_directory_arg_errors_test.dart
similarity index 92%
copy from sdk/lib/_internal/pub/test/serve/web_socket/serve_directory_arg_errors_test.dart
copy to sdk/lib/_internal/pub/test/serve/web_socket/unserve_directory_arg_errors_test.dart
index d0ffd784a980de5926916fba07dba59f962a9c56..aaa3d9c2596c5dfa9c50984568eeff6c32f5ec6c 100644
--- a/sdk/lib/_internal/pub/test/serve/web_socket/serve_directory_arg_errors_test.dart
+++ b/sdk/lib/_internal/pub/test/serve/web_socket/unserve_directory_arg_errors_test.dart
@@ -25,7 +25,7 @@ main() {
integration("responds with an error if 'path' is missing", () {
pubServe();
expectWebSocketCall({
- "command": "serveDirectory"
+ "command": "unserveDirectory"
}, replyEquals: {
"code": "BAD_ARGUMENT",
"error": 'Missing "path" argument.'
@@ -36,7 +36,7 @@ main() {
integration("responds with an error if 'path' is not a string", () {
pubServe();
expectWebSocketCall({
- "command": "serveDirectory",
+ "command": "unserveDirectory",
"path": 123
}, replyEquals: {
"code": "BAD_ARGUMENT",
@@ -48,7 +48,7 @@ main() {
integration("responds with an error if 'path' is absolute", () {
pubServe();
expectWebSocketCall({
- "command": "serveDirectory",
+ "command": "unserveDirectory",
"path": "/absolute.txt"
}, replyEquals: {
"code": "BAD_ARGUMENT",
@@ -60,7 +60,7 @@ main() {
integration("responds with an error if 'path' reaches out", () {
pubServe();
expectWebSocketCall({
- "command": "serveDirectory",
+ "command": "unserveDirectory",
"path": "a/../../bad.txt"
}, replyEquals: {
"code": "BAD_ARGUMENT",

Powered by Google App Engine
This is Rietveld 408576698