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

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

Issue 83173011: Make sure pub build/serve get at the right time: (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Revise. Created 7 years 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/gets_first_if_transitive_dependency_is_not_installed_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/utils.dart
diff --git a/sdk/lib/_internal/pub/test/serve/utils.dart b/sdk/lib/_internal/pub/test/serve/utils.dart
index b57a984c9f5779e26d73bfe5043aa1b22fb0a65a..43f1966f27d901fc1cf08a4780ad298649b59d63 100644
--- a/sdk/lib/_internal/pub/test/serve/utils.dart
+++ b/sdk/lib/_internal/pub/test/serve/utils.dart
@@ -114,11 +114,13 @@ ScheduledProcess startPubServe([Iterable<String> args]) {
/// Schedules starting the "pub serve" process and records its port number for
/// future requests.
///
-/// If [shouldGetFirst] is `true`, validates that pub get is run first.
+/// If [shouldGetFirst] is `true`, validates that pub get is run first. In that
+/// case, you can also pass [numDownloads] to specify how many packages should
+/// be downloaded during the get.
///
/// Returns the `pub serve` process.
ScheduledProcess pubServe({bool shouldGetFirst: false,
- Iterable<String> args}) {
+ Iterable<String> args, int numDownloads: 0}) {
_pubServer = startPubServe(args);
currentSchedule.onComplete.schedule(() {
@@ -133,9 +135,16 @@ ScheduledProcess pubServe({bool shouldGetFirst: false,
expect(_pubServer.nextLine(),
completion(anyOf(
startsWith("Your pubspec has changed"),
- startsWith("You don't have a lockfile"))));
+ startsWith("You don't have a lockfile"),
+ startsWith("You are missing some dependencies"))));
expect(_pubServer.nextLine(),
completion(startsWith("Resolving dependencies...")));
+
+ for (var i = 0; i < numDownloads; i++) {
+ expect(_pubServer.nextLine(),
+ completion(startsWith("Downloading")));
+ }
+
expect(_pubServer.nextLine(),
completion(equals("Got dependencies!")));
}
« no previous file with comments | « sdk/lib/_internal/pub/test/serve/gets_first_if_transitive_dependency_is_not_installed_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698