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

Side by Side Diff: sdk/lib/_internal/pub_generated/test/serve/web_socket/serve_directory_arg_errors_test.dart

Issue 887223007: Revert "Use native async/await support in pub." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 10 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
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:json_rpc_2/error_code.dart' as rpc_error_code; 7 import 'package:json_rpc_2/error_code.dart' as rpc_error_code;
8 import 'package:scheduled_test/scheduled_test.dart'; 8 import 'package:scheduled_test/scheduled_test.dart';
9 9
10 import '../../descriptor.dart' as d; 10 import '../../descriptor.dart' as d;
11 import '../../test_pub.dart'; 11 import '../../test_pub.dart';
12 import '../utils.dart'; 12 import '../utils.dart';
13 13
14 main() { 14 main() {
15 initConfig(); 15 initConfig();
16 16
17 setUp(() { 17 setUp(() {
18 d.dir(appPath, [ 18 d.dir(
19 d.appPubspec(), 19 appPath,
20 d.dir("web", [ 20 [d.appPubspec(), d.dir("web", [d.file("index.html", "<body>")])]).create ();
21 d.file("index.html", "<body>")
22 ])
23 ]).create();
24 }); 21 });
25 22
26 integration("responds with an error if 'path' is not a string", () { 23 integration("responds with an error if 'path' is not a string", () {
27 pubServe(); 24 pubServe();
28 expectWebSocketError("serveDirectory", {"path": 123}, 25 expectWebSocketError("serveDirectory", {
26 "path": 123
27 },
29 rpc_error_code.INVALID_PARAMS, 28 rpc_error_code.INVALID_PARAMS,
30 'Parameter "path" for method "serveDirectory" must be a string, but ' 29 'Parameter "path" for method "serveDirectory" must be a string, but '
31 'was 123.'); 30 'was 123.');
32 endPubServe(); 31 endPubServe();
33 }); 32 });
34 33
35 integration("responds with an error if 'path' is absolute", () { 34 integration("responds with an error if 'path' is absolute", () {
36 pubServe(); 35 pubServe();
37 expectWebSocketError("serveDirectory", {"path": "/absolute.txt"}, 36 expectWebSocketError("serveDirectory", {
37 "path": "/absolute.txt"
38 },
38 rpc_error_code.INVALID_PARAMS, 39 rpc_error_code.INVALID_PARAMS,
39 '"path" must be a relative path. Got "/absolute.txt".'); 40 '"path" must be a relative path. Got "/absolute.txt".');
40 endPubServe(); 41 endPubServe();
41 }); 42 });
42 43
43 integration("responds with an error if 'path' reaches out", () { 44 integration("responds with an error if 'path' reaches out", () {
44 pubServe(); 45 pubServe();
45 expectWebSocketError("serveDirectory", {"path": "a/../../bad.txt"}, 46 expectWebSocketError("serveDirectory", {
47 "path": "a/../../bad.txt"
48 },
46 rpc_error_code.INVALID_PARAMS, 49 rpc_error_code.INVALID_PARAMS,
47 '"path" cannot reach out of its containing directory. Got ' 50 '"path" cannot reach out of its containing directory. Got '
48 '"a/../../bad.txt".'); 51 '"a/../../bad.txt".');
49 endPubServe(); 52 endPubServe();
50 }); 53 });
51 } 54 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698