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

Unified Diff: pkg/barback/test/package_graph/add_remove_transform_test.dart

Issue 23625002: Support loading transformer plugins from pub. (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
« no previous file with comments | « pkg/barback/lib/src/phase_input.dart ('k') | sdk/lib/_internal/pub/lib/src/barback.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/barback/test/package_graph/add_remove_transform_test.dart
diff --git a/pkg/barback/test/package_graph/add_remove_transform_test.dart b/pkg/barback/test/package_graph/add_remove_transform_test.dart
index bd68f68b2c3acea7c8eef3538fcd6ff32fb5a423..932dc0fde19ef446f3be1e8630caf8d6521cb284 100644
--- a/pkg/barback/test/package_graph/add_remove_transform_test.dart
+++ b/pkg/barback/test/package_graph/add_remove_transform_test.dart
@@ -174,6 +174,24 @@ main() {
buildShouldSucceed();
});
+ test("a transformer is added to an existing phase during isPrimary", () {
+ var rewrite = new RewriteTransformer("blub", "blab");
+ initGraph(["app|foo.blub", "app|bar.blib"], {"app": [[rewrite]]});
+
+ rewrite.pauseIsPrimary("app|foo.blub");
+ updateSources(["app|foo.blub", "app|bar.blib"]);
+ // Ensure we're waiting on [rewrite.isPrimary].
+ schedule(pumpEventQueue);
+
+ updateTransformers("app", [
+ [rewrite, new RewriteTransformer("blib", "blob")]
+ ]);
+ rewrite.resumeIsPrimary("app|foo.blub");
+ expectAsset("app|foo.blab", "foo.blab");
+ expectAsset("app|bar.blob", "bar.blob");
+ buildShouldSucceed();
+ });
+
test("a new transformer can see pass-through assets", () {
var rewrite = new RewriteTransformer("zip", "zap");
initGraph(["app|foo.blub"], {"app": [[rewrite]]});
« no previous file with comments | « pkg/barback/lib/src/phase_input.dart ('k') | sdk/lib/_internal/pub/lib/src/barback.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698