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

Side by Side Diff: sdk/lib/_internal/pub/test/serve/native_watch_replaced_file_test.dart

Issue 1165473002: Start pulling pub from its own repo. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Code review changes Created 5 years, 6 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
OLDNEW
(Empty)
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
3 // BSD-style license that can be found in the LICENSE file.
4
5 library pub_tests;
6
7 import 'dart:async';
8 import 'dart:io';
9
10 import 'package:path/path.dart' as p;
11 import 'package:scheduled_test/scheduled_test.dart';
12
13 import '../descriptor.dart' as d;
14 import '../test_pub.dart';
15 import 'utils.dart';
16
17 main() {
18 // This is a regression test for http://dartbug.com/21402.
19 initConfig();
20 withBarbackVersions("any", () {
21 integration("picks up files replaced after serving started when using the "
22 "native watcher", () {
23 d.dir(appPath, [
24 d.pubspec({
25 "name": "myapp",
26 "transformers": ["myapp/src/transformer"]
27 }),
28 d.dir("lib", [d.dir("src", [
29 d.file("transformer.dart", REWRITE_TRANSFORMER)
30 ])]),
31 d.dir("web", [
32 d.file("file.txt", "before"),
33 ]),
34 d.file("other", "after")
35 ]).create();
36
37 createLockFile("myapp", pkg: ["barback"]);
38
39 pubServe(args: ["--no-force-poll"]);
40 waitForBuildSuccess();
41 requestShouldSucceed("file.out", "before.out");
42
43 schedule(() {
44 // Replace file.txt by renaming other on top of it.
45 return new File(p.join(sandboxDir, appPath, "other"))
46 .rename(p.join(sandboxDir, appPath, "web", "file.txt"));
47 });
48
49 // Read the transformed file to ensure the change is actually noticed by
50 // pub and not that we just get the new file contents piped through
51 // without pub realizing they've changed.
52 waitForBuildSuccess();
53 requestShouldSucceed("file.out", "after.out");
54
55 endPubServe();
56 });
57 });
58 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698