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

Unified Diff: sdk/lib/_internal/pub/test/transformer/cache_test.dart

Issue 559833004: Cache snapshots of (mostly) immutable transformer phases. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Code review changes Created 6 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/transformer/cache_test.dart
diff --git a/sdk/lib/_internal/pub/test/transformer/cache_test.dart b/sdk/lib/_internal/pub/test/transformer/cache_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..6bbd72c293c20ede407de9ce916534300dfe99ca
--- /dev/null
+++ b/sdk/lib/_internal/pub/test/transformer/cache_test.dart
@@ -0,0 +1,290 @@
+// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS d.file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+library pub_tests;
+
+import 'package:scheduled_test/scheduled_test.dart';
+
+import '../descriptor.dart' as d;
+import '../test_pub.dart';
+import '../serve/utils.dart';
+
+// TODO(nweiz): Currently scheduled_test.setUp doesn't play well with test_pub,
+// since it only assigns the sandbox directory once the main test body has
+// run. Fix this and move this to a real setUp call.
+void setUp() {
+ servePackages((builder) {
+ builder.serveRepoPackage('barback');
+
+ builder.serve("foo", "1.2.3",
+ deps: {'barback': 'any'},
+ contents: [
+ d.dir("lib", [
+ d.file("transformer.dart", replaceTransformer("Hello", "Goodbye"))
+ ])
+ ]);
+
+ builder.serve("bar", "1.2.3",
+ deps: {'barback': 'any'},
+ contents: [
+ d.dir("lib", [
+ d.file("transformer.dart", replaceTransformer("Goodbye", "See ya"))
+ ])
+ ]);
+ });
+
+ d.dir(appPath, [
+ d.pubspec({
+ "name": "myapp",
+ "dependencies": {
+ "foo": "1.2.3",
+ "bar": "1.2.3"
+ },
+ "transformers": ["foo"]
+ }),
+ d.dir("bin", [
+ d.file("myapp.dart", "main() => print('Hello!');")
+ ])
+ ]).create();
+
+ pubGet();
+}
+
+main() {
+ initConfig();
+
+ integration("caches a transformer snapshot", () {
+ setUp();
+
+ var process = pubRun(args: ['myapp']);
+ process.stdout.expect("Goodbye!");
+ process.shouldExit();
+
+ d.dir(appPath, [
+ d.dir(".pub/transformers", [
+ d.file("manifest.txt", "0.1.2+3\nfoo"),
+ d.matcherFile("transformers.snapshot", isNot(isEmpty))
+ ])
+ ]).validate();
+
+ // Run the executable again to make sure loading the transformer from the
+ // cache works.
+ process = pubRun(args: ['myapp']);
+ process.stdout.expect("Goodbye!");
+ process.shouldExit();
+ });
+
+ integration("recaches if the SDK version is out-of-date", () {
+ setUp();
+
+ d.dir(appPath, [
+ d.dir(".pub/transformers", [
+ // The version 0.0.1 is different than the test version 0.1.2+3.
+ d.file("manifest.txt", "0.0.1\nfoo"),
+ d.file("transformers.snapshot", "junk")
+ ])
+ ]).create();
+
+ var process = pubRun(args: ['myapp']);
+ process.stdout.expect("Goodbye!");
+ process.shouldExit();
+
+ d.dir(appPath, [
+ d.dir(".pub/transformers", [
+ d.file("manifest.txt", "0.1.2+3\nfoo"),
+ d.matcherFile("transformers.snapshot", isNot(isEmpty))
+ ])
+ ]).validate();
+ });
+
+ integration("recaches if the transformers change", () {
+ setUp();
+
+ var process = pubRun(args: ['myapp']);
+ process.stdout.expect("Goodbye!");
+ process.shouldExit();
+
+ d.dir(appPath, [
+ d.dir(".pub/transformers", [
+ d.file("manifest.txt", "0.1.2+3\nfoo"),
+ d.matcherFile("transformers.snapshot", isNot(isEmpty))
+ ])
+ ]).validate();
+
+ d.dir(appPath, [
+ d.pubspec({
+ "name": "myapp",
+ "dependencies": {
+ "foo": "1.2.3",
+ "bar": "1.2.3"
+ },
+ "transformers": ["foo", "bar"]
+ }),
+ d.dir("bin", [
+ d.file("myapp.dart", "main() => print('Hello!');")
+ ])
+ ]).create();
+
+ process = pubRun(args: ['myapp']);
+ process.stdout.expect("See ya!");
+ process.shouldExit();
+
+ d.dir(appPath, [
+ d.dir(".pub/transformers", [
+ d.file("manifest.txt", "0.1.2+3\nbar,foo"),
+ d.matcherFile("transformers.snapshot", isNot(isEmpty))
+ ])
+ ]).validate();
+ });
+
+ integration("recaches if the transformer version changes", () {
+ setUp();
+
+ var process = pubRun(args: ['myapp']);
+ process.stdout.expect("Goodbye!");
+ process.shouldExit();
+
+ d.dir(appPath, [
+ d.dir(".pub/transformers", [
+ d.file("manifest.txt", "0.1.2+3\nfoo"),
+ d.matcherFile("transformers.snapshot", isNot(isEmpty))
+ ])
+ ]).validate();
+
+ servePackages((builder) {
+ builder.serve("foo", "2.0.0",
+ deps: {'barback': 'any'},
+ contents: [
+ d.dir("lib", [
+ d.file("transformer.dart", replaceTransformer("Hello", "New"))
+ ])
+ ]);
+ });
+
+ d.dir(appPath, [
+ d.pubspec({
+ "name": "myapp",
+ "dependencies": {"foo": "any"},
+ "transformers": ["foo"]
+ })
+ ]).create();
+
+ pubUpgrade();
+
+ process = pubRun(args: ['myapp']);
+ process.stdout.expect("New!");
+ process.shouldExit();
+
+ d.dir(appPath, [
+ d.dir(".pub/transformers", [
+ d.file("manifest.txt", "0.1.2+3\nfoo"),
+ d.matcherFile("transformers.snapshot", isNot(isEmpty))
+ ])
+ ]).validate();
+ });
+
+
+ integration("recaches if a transitive dependency version changes", () {
+ servePackages((builder) {
+ builder.serveRepoPackage('barback');
+
+ builder.serve("foo", "1.2.3",
+ deps: {
+ 'barback': 'any',
+ 'bar': 'any'
+ },
+ contents: [
+ d.dir("lib", [
+ d.file("transformer.dart", """
+import 'dart:async';
Bob Nystrom 2014/09/16 19:54:26 Do you mind pulling this string out to a separate
+
+import 'package:barback/barback.dart';
+import 'package:bar/bar.dart';
+
+class ReplaceTransformer extends Transformer {
+ ReplaceTransformer.asPlugin();
+
+ String get allowedExtensions => '.dart';
+
+ Future apply(Transform transform) {
+ return transform.primaryInput.readAsString().then((contents) {
+ transform.addOutput(new Asset.fromString(
+ transform.primaryInput.id,
+ contents.replaceAll("Hello", replacement)));
+ });
+ }
+}
+""")
+ ])
+ ]);
+
+ builder.serve("bar", "1.2.3", contents: [
+ d.dir("lib", [
+ d.file("bar.dart", "final replacement = 'Goodbye';")
+ ])
+ ]);
+ });
+
+ d.dir(appPath, [
+ d.pubspec({
+ "name": "myapp",
+ "dependencies": {"foo": "1.2.3"},
+ "transformers": ["foo"]
+ }),
+ d.dir("bin", [
+ d.file("myapp.dart", "main() => print('Hello!');")
+ ])
+ ]).create();
+
+ pubGet();
+
+ var process = pubRun(args: ['myapp']);
+ process.stdout.expect("Goodbye!");
+ process.shouldExit();
+
+ servePackages((builder) {
+ builder.serve("bar", "2.0.0", contents: [
+ d.dir("lib", [
+ d.file("bar.dart", "final replacement = 'See ya';")
+ ])
+ ]);
+ });
+
+ d.dir(appPath, [
+ d.pubspec({
+ "name": "myapp",
+ "dependencies": {"foo": "any"},
+ "transformers": ["foo"]
+ })
+ ]).create();
+
+ pubUpgrade();
+
+ process = pubRun(args: ['myapp']);
+ process.stdout.expect("See ya!");
+ process.shouldExit();
+ });
+}
+
+String replaceTransformer(String input, String output) {
+ return """
+import 'dart:async';
+
+import 'package:barback/barback.dart';
+
+class ReplaceTransformer extends Transformer {
+ ReplaceTransformer.asPlugin();
+
+ String get allowedExtensions => '.dart';
+
+ Future apply(Transform transform) {
+ return transform.primaryInput.readAsString().then((contents) {
+ transform.addOutput(new Asset.fromString(
+ transform.primaryInput.id,
+ contents.replaceAll("$input", "$output")));
+ });
+ }
+}
+""";
+}
« no previous file with comments | « sdk/lib/_internal/pub/lib/src/package_graph.dart ('k') | sdk/lib/_internal/pub_generated/asset/dart/transformer_isolate.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698