OLD | NEW |
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS d.file | 1 // Copyright (c) 2013, 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 'dart:async'; | 7 import 'dart:async'; |
8 | 8 |
9 import 'package:http/http.dart' as http; | 9 import 'package:http/http.dart' as http; |
10 import 'package:scheduled_test/scheduled_process.dart'; | 10 import 'package:scheduled_test/scheduled_process.dart'; |
11 import 'package:scheduled_test/scheduled_test.dart'; | 11 import 'package:scheduled_test/scheduled_test.dart'; |
12 | 12 |
13 import '../test_pub.dart'; | 13 import '../test_pub.dart'; |
14 | 14 |
15 /// The pub process running "pub serve". | 15 /// The pub process running "pub serve". |
16 ScheduledProcess _pubServer; | 16 ScheduledProcess _pubServer; |
17 | 17 |
18 /// The ephemeral port assigned to the running server. | 18 /// The ephemeral port assigned to the running server. |
19 int _port; | 19 int _port; |
20 | 20 |
| 21 /// The code for a transformer that renames ".txt" files to ".out" and adds a |
| 22 /// ".out" suffix. |
| 23 const REWRITE_TRANSFORMER = """ |
| 24 import 'dart:async'; |
| 25 |
| 26 import 'package:barback/barback.dart'; |
| 27 |
| 28 class RewriteTransformer extends Transformer { |
| 29 RewriteTransformer(); |
| 30 |
| 31 String get allowedExtensions => '.txt'; |
| 32 |
| 33 Future apply(Transform transform) { |
| 34 return transform.primaryInput.readAsString().then((contents) { |
| 35 var id = transform.primaryInput.id.changeExtension(".out"); |
| 36 transform.addOutput(new Asset.fromString(id, "\$contents.out")); |
| 37 }); |
| 38 } |
| 39 } |
| 40 """; |
| 41 |
21 /// Schedules starting the "pub serve" process. | 42 /// Schedules starting the "pub serve" process. |
22 /// | 43 /// |
23 /// If [shouldInstallFirst] is `true`, validates that pub install is run first. | 44 /// If [shouldInstallFirst] is `true`, validates that pub install is run first. |
24 void startPubServe({bool shouldInstallFirst: false}) { | 45 /// |
| 46 /// Returns the `pub serve` process. |
| 47 ScheduledProcess startPubServe({bool shouldInstallFirst: false}) { |
25 // Use port 0 to get an ephemeral port. | 48 // Use port 0 to get an ephemeral port. |
26 _pubServer = startPub(args: ["serve", "--port=0"]); | 49 _pubServer = startPub(args: ["serve", "--port=0"]); |
27 | 50 |
28 if (shouldInstallFirst) { | 51 if (shouldInstallFirst) { |
29 expect(_pubServer.nextLine(), | 52 expect(_pubServer.nextLine(), |
30 completion(startsWith("Dependencies have changed"))); | 53 completion(startsWith("Dependencies have changed"))); |
31 expect(_pubServer.nextLine(), | 54 expect(_pubServer.nextLine(), |
32 completion(startsWith("Resolving dependencies..."))); | 55 completion(startsWith("Resolving dependencies..."))); |
33 expect(_pubServer.nextLine(), | 56 expect(_pubServer.nextLine(), |
34 completion(equals("Dependencies installed!"))); | 57 completion(equals("Dependencies installed!"))); |
35 } | 58 } |
36 | 59 |
37 expect(_pubServer.nextLine().then(_parsePort), completes); | 60 expect(_pubServer.nextLine().then(_parsePort), completes); |
| 61 return _pubServer; |
38 } | 62 } |
39 | 63 |
40 /// Parses the port number from the "Serving blah on localhost:1234" line | 64 /// Parses the port number from the "Serving blah on localhost:1234" line |
41 /// printed by pub serve. | 65 /// printed by pub serve. |
42 void _parsePort(String line) { | 66 void _parsePort(String line) { |
43 var match = new RegExp(r"localhost:(\d+)").firstMatch(line); | 67 var match = new RegExp(r"localhost:(\d+)").firstMatch(line); |
44 assert(match != null); | 68 assert(match != null); |
45 _port = int.parse(match[1]); | 69 _port = int.parse(match[1]); |
46 } | 70 } |
47 | 71 |
(...skipping 14 matching lines...) Expand all Loading... |
62 /// Schedules an HTTP request to the running pub server with [urlPath] and | 86 /// Schedules an HTTP request to the running pub server with [urlPath] and |
63 /// verifies that it responds with a 404. | 87 /// verifies that it responds with a 404. |
64 void requestShould404(String urlPath) { | 88 void requestShould404(String urlPath) { |
65 schedule(() { | 89 schedule(() { |
66 return http.get("http://localhost:$_port/$urlPath").then((response) { | 90 return http.get("http://localhost:$_port/$urlPath").then((response) { |
67 expect(response.statusCode, equals(404)); | 91 expect(response.statusCode, equals(404)); |
68 }); | 92 }); |
69 }, "request $urlPath"); | 93 }, "request $urlPath"); |
70 } | 94 } |
71 | 95 |
| 96 /// Schedules an HTTP POST to the running pub server with [urlPath] and verifies |
| 97 /// that it responds with a 405. |
| 98 void postShould405(String urlPath) { |
| 99 schedule(() { |
| 100 return http.post("http://localhost:$_port/$urlPath").then((response) { |
| 101 expect(response.statusCode, equals(405)); |
| 102 }); |
| 103 }, "request $urlPath"); |
| 104 } |
| 105 |
72 /// Reads lines from pub serve's stdout until it prints the build success | 106 /// Reads lines from pub serve's stdout until it prints the build success |
73 /// message. | 107 /// message. |
74 /// | 108 /// |
75 /// The schedule will not proceed until the output is found. If not found, it | 109 /// The schedule will not proceed until the output is found. If not found, it |
76 /// will eventually time out. | 110 /// will eventually time out. |
77 void waitForBuildSuccess() { | 111 void waitForBuildSuccess() { |
78 nextLine() { | 112 nextLine() { |
79 return _pubServer.nextLine().then((line) { | 113 return _pubServer.nextLine().then((line) { |
80 if (line.contains("successfully")) return; | 114 if (line.contains("successfully")) return; |
81 | 115 |
82 // This line wasn't it, so ignore it and keep trying. | 116 // This line wasn't it, so ignore it and keep trying. |
83 return nextLine(); | 117 return nextLine(); |
84 }); | 118 }); |
85 } | 119 } |
86 | 120 |
87 schedule(nextLine); | 121 schedule(nextLine); |
88 } | 122 } |
OLD | NEW |