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

Side by Side Diff: sdk/lib/_internal/pub_generated/test/transformer/configuration/with_configuration_only_instantiates_configurable_transformers_test.dart

Issue 937243002: Revert "Revert "Use native async/await support in pub."" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 10 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 | Annotate | Revision Log
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:convert';
8
9 import '../../descriptor.dart' as d;
10 import '../../test_pub.dart';
11 import '../../serve/utils.dart';
12
13 final transformer = """
14 import 'dart:async';
15 import 'dart:convert';
16
17 import 'package:barback/barback.dart';
18
19 class ConfigTransformer extends Transformer {
20 final BarbackSettings settings;
21
22 ConfigTransformer.asPlugin(this.settings);
23
24 String get allowedExtensions => '.txt';
25
26 Future apply(Transform transform) {
27 return transform.primaryInput.readAsString().then((contents) {
28 var id = transform.primaryInput.id.changeExtension(".json");
29 transform.addOutput(
30 new Asset.fromString(id, JSON.encode(settings.configuration)));
31 });
32 }
33 }
34
35 class RewriteTransformer extends Transformer {
36 RewriteTransformer.asPlugin();
37
38 String get allowedExtensions => '.txt';
39
40 Future apply(Transform transform) {
41 return transform.primaryInput.readAsString().then((contents) {
42 var id = transform.primaryInput.id.changeExtension(".out");
43 transform.addOutput(new Asset.fromString(id, "\$contents.out"));
44 });
45 }
46 }
47 """;
48
49 main() {
50 initConfig();
51 withBarbackVersions("any", () {
52 integration(
53 "with configuration, only instantiates configurable " "transformers",
54 () {
55 var configuration = {
56 "param": ["list", "of", "values"]
57 };
58
59 d.dir(appPath, [d.pubspec({
60 "name": "myapp",
61 "transformers": [{
62 "myapp/src/transformer": configuration
63 }]
64 }),
65 d.dir("lib", [d.dir("src", [d.file("transformer.dart", transformer)] )]),
66 d.dir("web", [d.file("foo.txt", "foo")])]).create();
67
68 createLockFile('myapp', pkg: ['barback']);
69
70 var server = pubServe();
71 requestShouldSucceed("foo.json", JSON.encode(configuration));
72 requestShould404("foo.out");
73 endPubServe();
74 });
75 });
76 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698