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

Side by Side Diff: test/dart2js/output_can_be_consumed_by_successive_phases.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) 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 import '../descriptor.dart' as d; 5 import '../descriptor.dart' as d;
6 import '../test_pub.dart'; 6 import '../test_pub.dart';
7 import '../serve/utils.dart'; 7 import '../serve/utils.dart';
8 8
9 /// The code for a transformer that renames ".js" files to ".out". 9 /// The code for a transformer that renames ".js" files to ".out".
10 const JS_REWRITE_TRANSFORMER = """ 10 const JS_REWRITE_TRANSFORMER = """
(...skipping 10 matching lines...) Expand all
21 return transform.primaryInput.readAsString().then((contents) { 21 return transform.primaryInput.readAsString().then((contents) {
22 var id = transform.primaryInput.id.changeExtension(".out"); 22 var id = transform.primaryInput.id.changeExtension(".out");
23 transform.addOutput(new Asset.fromString(id, contents)); 23 transform.addOutput(new Asset.fromString(id, contents));
24 }); 24 });
25 } 25 }
26 } 26 }
27 """; 27 """;
28 28
29 main() { 29 main() {
30 integration("output can be consumed by successive phases", () { 30 integration("output can be consumed by successive phases", () {
31 serveBarback();
32
31 d.dir(appPath, [ 33 d.dir(appPath, [
32 d.pubspec({ 34 d.pubspec({
33 "name": "myapp", 35 "name": "myapp",
34 "transformers": ["\$dart2js", "myapp/src/transformer"] 36 "transformers": ["\$dart2js", "myapp/src/transformer"],
37 "dependencies": {"barback": "any"}
35 }), 38 }),
36 d.dir("lib", [d.dir("src", [ 39 d.dir("lib", [d.dir("src", [
37 d.file("transformer.dart", JS_REWRITE_TRANSFORMER) 40 d.file("transformer.dart", JS_REWRITE_TRANSFORMER)
38 ])]), 41 ])]),
39 d.dir("web", [d.file("main.dart", "void main() {}")]) 42 d.dir("web", [d.file("main.dart", "void main() {}")])
40 ]).create(); 43 ]).create();
41 44
42 createLockFile('myapp', pkg: ['barback']);
43
44 pubGet(); 45 pubGet();
45 pubServe(); 46 pubServe();
46 requestShouldSucceed("main.dart.out", isUnminifiedDart2JSOutput); 47 requestShouldSucceed("main.dart.out", isUnminifiedDart2JSOutput);
47 endPubServe(); 48 endPubServe();
48 }); 49 });
49 } 50 }
OLDNEW
« no previous file with comments | « test/dart2js/compiles_imported_generated_file_test.dart ('k') | test/get/cache_transformed_dependency_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698