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

Side by Side Diff: test/transformer/can_use_consume_primary_test.dart

Issue 1523323004: Install barback from a hosted source in all tests. (Closed) Base URL: git@github.com:dart-lang/pub.git@master
Patch Set: Merge for real. 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 unified diff | Download patch
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 '../descriptor.dart' as d; 7 import '../descriptor.dart' as d;
8 import '../test_pub.dart'; 8 import '../test_pub.dart';
9 import '../serve/utils.dart'; 9 import '../serve/utils.dart';
10 10
(...skipping 12 matching lines...) Expand all
23 return transform.primaryInput.readAsString().then((contents) { 23 return transform.primaryInput.readAsString().then((contents) {
24 var id = transform.primaryInput.id.changeExtension(".out"); 24 var id = transform.primaryInput.id.changeExtension(".out");
25 var asset = new Asset.fromString(id, "\$contents.out"); 25 var asset = new Asset.fromString(id, "\$contents.out");
26 transform.addOutput(asset); 26 transform.addOutput(asset);
27 }); 27 });
28 } 28 }
29 } 29 }
30 """; 30 """;
31 31
32 main() { 32 main() {
33 integration("a transform can use consumePrimary", () { 33 integration("a transform can use consumePrimary", () {
34 d.dir(appPath, [ 34 serveBarback();
35 d.pubspec({
36 "name": "myapp",
37 "transformers": ["myapp/src/transformer"]
38 }),
39 d.dir("lib", [d.dir("src", [
40 d.file("transformer.dart", TRANSFORMER)
41 ])]),
42 d.dir("web", [
43 d.file("foo.txt", "foo")
44 ])
45 ]).create();
46 35
47 createLockFile('myapp', pkg: ['barback']); 36 d.dir(appPath, [
37 d.pubspec({
38 "name": "myapp",
39 "transformers": ["myapp/src/transformer"],
40 "dependencies": {"barback": "any"}
41 }),
42 d.dir("lib", [d.dir("src", [
43 d.file("transformer.dart", TRANSFORMER)
44 ])]),
45 d.dir("web", [
46 d.file("foo.txt", "foo")
47 ])
48 ]).create();
48 49
49 pubServe(); 50 pubGet();
50 requestShouldSucceed("foo.out", "foo.out"); 51 pubServe();
51 requestShould404("foo.txt"); 52 requestShouldSucceed("foo.out", "foo.out");
52 endPubServe(); 53 requestShould404("foo.txt");
53 }); 54 endPubServe();
55 });
54 } 56 }
OLDNEW
« no previous file with comments | « test/transformer/can_log_messages_test.dart ('k') | test/transformer/can_use_has_input_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698