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

Unified Diff: test/serve/native_watch_replaced_file_test.dart

Issue 1530353002: Drop support for older Barback versions. (Closed) Base URL: git@github.com:dart-lang/pub.git@master
Patch Set: Created 5 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
Index: test/serve/native_watch_replaced_file_test.dart
diff --git a/test/serve/native_watch_replaced_file_test.dart b/test/serve/native_watch_replaced_file_test.dart
index 04aa23a80aa0be0b621e3689881f197356a09107..bf2911f87c01e9b7177af99108a22d18aeb94d77 100644
--- a/test/serve/native_watch_replaced_file_test.dart
+++ b/test/serve/native_watch_replaced_file_test.dart
@@ -16,42 +16,40 @@ import 'utils.dart';
main() {
// This is a regression test for http://dartbug.com/21402.
- withBarbackVersions("any", () {
- integration("picks up files replaced after serving started when using the "
- "native watcher", () {
- d.dir(appPath, [
- d.pubspec({
- "name": "myapp",
- "transformers": ["myapp/src/transformer"]
- }),
- d.dir("lib", [d.dir("src", [
- d.file("transformer.dart", REWRITE_TRANSFORMER)
- ])]),
- d.dir("web", [
- d.file("file.txt", "before"),
- ]),
- d.file("other", "after")
- ]).create();
-
- createLockFile("myapp", pkg: ["barback"]);
-
- pubServe(args: ["--no-force-poll"]);
- waitForBuildSuccess();
- requestShouldSucceed("file.out", "before.out");
-
- schedule(() {
- // Replace file.txt by renaming other on top of it.
- return new File(p.join(sandboxDir, appPath, "other"))
- .rename(p.join(sandboxDir, appPath, "web", "file.txt"));
- });
-
- // Read the transformed file to ensure the change is actually noticed by
- // pub and not that we just get the new file contents piped through
- // without pub realizing they've changed.
- waitForBuildSuccess();
- requestShouldSucceed("file.out", "after.out");
-
- endPubServe();
- });
- });
+ integration("picks up files replaced after serving started when using the "
+ "native watcher", () {
+ d.dir(appPath, [
+ d.pubspec({
+ "name": "myapp",
+ "transformers": ["myapp/src/transformer"]
+ }),
+ d.dir("lib", [d.dir("src", [
+ d.file("transformer.dart", REWRITE_TRANSFORMER)
+ ])]),
+ d.dir("web", [
+ d.file("file.txt", "before"),
+ ]),
+ d.file("other", "after")
+ ]).create();
+
+ createLockFile("myapp", pkg: ["barback"]);
+
+ pubServe(args: ["--no-force-poll"]);
+ waitForBuildSuccess();
+ requestShouldSucceed("file.out", "before.out");
+
+ schedule(() {
+ // Replace file.txt by renaming other on top of it.
+ return new File(p.join(sandboxDir, appPath, "other"))
+ .rename(p.join(sandboxDir, appPath, "web", "file.txt"));
+ });
+
+ // Read the transformed file to ensure the change is actually noticed by
+ // pub and not that we just get the new file contents piped through
+ // without pub realizing they've changed.
+ waitForBuildSuccess();
+ requestShouldSucceed("file.out", "after.out");
+
+ endPubServe();
+ });
}

Powered by Google App Engine
This is Rietveld 408576698