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

Unified Diff: sdk/lib/_internal/pub/test/serve/configuration_defaults_to_empty_map_test.dart

Issue 23522029: Support passing configuration data to a transformer plugin. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Code review changes. Created 7 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: sdk/lib/_internal/pub/test/serve/configuration_defaults_to_empty_map_test.dart
diff --git a/sdk/lib/_internal/pub/test/serve/prints_a_transform_error_in_apply_test.dart b/sdk/lib/_internal/pub/test/serve/configuration_defaults_to_empty_map_test.dart
similarity index 63%
copy from sdk/lib/_internal/pub/test/serve/prints_a_transform_error_in_apply_test.dart
copy to sdk/lib/_internal/pub/test/serve/configuration_defaults_to_empty_map_test.dart
index 93b24a9066726720ba2084424179c34ad2f7e815..bad8e520c94bc2f25a67f42fcb8437be6329a642 100644
--- a/sdk/lib/_internal/pub/test/serve/prints_a_transform_error_in_apply_test.dart
+++ b/sdk/lib/_internal/pub/test/serve/configuration_defaults_to_empty_map_test.dart
@@ -4,6 +4,8 @@
library pub_tests;
+import 'dart:convert';
+
import 'package:scheduled_test/scheduled_test.dart';
import '../descriptor.dart' as d;
@@ -12,21 +14,29 @@ import 'utils.dart';
final transformer = """
import 'dart:async';
+import 'dart:convert';
import 'package:barback/barback.dart';
-class RewriteTransformer extends Transformer {
- RewriteTransformer();
+class ConfigTransformer extends Transformer {
+ final Map configuration;
+
+ ConfigTransformer.asPlugin(this.configuration);
String get allowedExtensions => '.txt';
- Future apply(Transform transform) => throw new Exception('oh no!');
+ Future apply(Transform transform) {
+ return transform.primaryInput.readAsString().then((contents) {
+ var id = transform.primaryInput.id.changeExtension(".json");
+ transform.addOutput(new Asset.fromString(id, JSON.encode(configuration)));
+ });
+ }
}
""";
main() {
initConfig();
- integration("prints a transform error in apply", () {
+ integration("configuration defaults to an empty map", () {
d.dir(appPath, [
d.pubspec({
"name": "myapp",
@@ -43,10 +53,7 @@ main() {
createLockFile('myapp', pkg: ['barback']);
var server = startPubServe();
- expect(server.nextErrLine(),
- completion(equals('Build error:')));
- expect(server.nextErrLine(), completion(equals('Transform Rewrite on '
- 'myapp|web/foo.txt threw error: oh no!')));
+ requestShouldSucceed("foo.json", JSON.encode({}));
endPubServe();
});
}

Powered by Google App Engine
This is Rietveld 408576698