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

Unified Diff: pkg/barback/test/asset_graph/errors_test.dart

Issue 16854005: First pass at build dependency graph for barback. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Revise. Created 7 years, 6 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: pkg/barback/test/asset_graph/errors_test.dart
diff --git a/pkg/barback/test/asset_graph/errors_test.dart b/pkg/barback/test/asset_graph/errors_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..d14f385084c9771744647be83330f5f893191a43
--- /dev/null
+++ b/pkg/barback/test/asset_graph/errors_test.dart
@@ -0,0 +1,178 @@
+// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS 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 barback.test.asset_graph.source_test;
+
+import 'dart:async';
+
+import 'package:barback/barback.dart';
+import 'package:barback/src/asset_graph.dart';
+import 'package:scheduled_test/scheduled_test.dart';
+
+import '../utils.dart';
+
+main() {
+ initConfig();
+
+ test("errors if two transformers output the same file", () {
+ var provider = new MockProvider({"app|foo.a": "foo"});
+ var graph = new AssetGraph(provider, [
+ [
+ new RewriteTransformer("a", "b"),
+ new RewriteTransformer("a", "b")
+ ]
+ ]);
+ graph.updateSources([new AssetId.parse("app|foo.a")]);
+
+ expectCollision(graph, "app|foo.b");
nweiz 2013/06/18 23:14:46 I really think expect(graph, hasCollision("app|foo
Bob Nystrom 2013/06/20 00:23:59 My plan is to have utils.dart keep track of the gr
+ });
+
+ test("reports asset not found errors in results", () {
+ var provider = new MockProvider([]);
+ var graph = new AssetGraph(provider, []);
+
+ var gotError = false;
+ graph.results.listen(wrapAsync((result) {
+ expect(result.error is AssetNotFoundException, isTrue);
nweiz 2013/06/18 23:14:46 expect(result.error, new isInstanceOf<AssetNotFoun
Bob Nystrom 2013/06/20 00:23:59 Done.
+ expect(result.error.id, equals(new AssetId.parse("app|foo.txt")));
+ gotError = true;
+ }));
nweiz 2013/06/18 23:14:46 This wrapAsync/gotError stuff is complicated and g
Bob Nystrom 2013/06/20 00:23:59 Added a TODO. I'm planning to refactor it complete
+
+ expectNoAsset(graph, "app|foo.txt");
+
+ schedule(() {
+ expect(gotError, isTrue);
+ });
+ });
+
+ test("reports missing input errors in results", () {
+ var provider = new MockProvider({"app|a.txt": "a.inc"});
+
+ var graph = new AssetGraph(provider, [
+ [new ManyToOneTransformer("txt")]
+ ]);
+
+ var gotError = false;
+ graph.results.listen(wrapAsync((result) {
+ expect(result.error is MissingInputException, isTrue);
+ expect(result.error.id, equals(new AssetId.parse("app|a.inc")));
+ gotError = true;
+ }));
+
+ graph.updateSources([new AssetId.parse("app|a.txt")]);
+
+ expectNoAsset(graph, "app|a.out");
+
+ schedule(() {
+ expect(gotError, isTrue);
+ });
+ });
+
+ test("fails if a non-primary input is removed", () {
+ var provider = new MockProvider({
+ "app|a.txt": "a.inc,b.inc,c.inc",
+ "app|a.inc": "a",
+ "app|b.inc": "b",
+ "app|c.inc": "c"
+ });
+
+ var graph = new AssetGraph(provider, [
+ [new ManyToOneTransformer("txt")]
+ ]);
+
+ var gotError = false;
+ graph.results.listen(wrapAsync((result) {
+ expect(result.error is MissingInputException, isTrue);
+ expect(result.error.id, equals(new AssetId.parse("app|b.inc")));
+ gotError = true;
+ }));
nweiz 2013/06/18 23:14:46 It's confusing that you're setting this up before
Bob Nystrom 2013/06/20 00:23:59 This is a broadcast stream and the build process r
+
+ graph.updateSources([
+ new AssetId.parse("app|a.txt"),
+ new AssetId.parse("app|a.inc"),
+ new AssetId.parse("app|b.inc"),
+ new AssetId.parse("app|c.inc")
+ ]);
+
+ expectAsset(graph, "app|a.out", "abc");
+
+ schedule(() {
+ graph.removeSources([new AssetId.parse("app|b.inc")]);
+ });
+
+ expectNoAsset(graph, "app|a.out");
+
+ schedule(() {
+ expect(gotError, isTrue);
+ });
+ });
+
+ test("catches transformer exceptions and reports them", () {
+ var provider = new MockProvider(["app|foo.txt"]);
+ var graph = new AssetGraph(provider, [
+ [new BadTransformer(["app|foo.out"])]
+ ]);
+
+ var gotError = false;
+ graph.results.listen(wrapAsync((result) {
+ expect(result.error, equals(BadTransformer.ERROR));
+ gotError = true;
+ }));
+
+ schedule(() {
+ graph.updateSources([new AssetId.parse("app|foo.txt")]);
+ });
+
+ expectNoAsset(graph, "app|foo.out");
+
+ schedule(() {
+ expect(gotError, isTrue);
+ });
+ });
+
+ // TODO(rnystrom): Is this the behavior we expect? If a transformer fails
+ // to transform a file, should we just skip past it to the source?
nweiz 2013/06/18 23:14:46 Definitely not. If a transformer fails, getting th
Bob Nystrom 2013/06/20 00:23:59 I'm going to leave this test for now just to pin d
+ test("yields a source if a transform fails on it", () {
+ var provider = new MockProvider(["app|foo.txt"]);
+ var graph = new AssetGraph(provider, [
+ [new BadTransformer(["app|foo.txt"])]
+ ]);
+
+ schedule(() {
+ graph.updateSources([new AssetId.parse("app|foo.txt")]);
+ });
+
+ expectAsset(graph, "app|foo.txt");
+ });
+
+ test("catches errors even if nothing is waiting for process results", () {
+ var provider = new MockProvider(["app|foo.txt"]);
+ var graph = new AssetGraph(provider, [[new BadTransformer([])]]);
+ var resultFuture = graph.results.first;
nweiz 2013/06/18 23:14:46 Why are you getting this future here? Why not do i
Bob Nystrom 2013/06/20 00:23:59 I need to make sure I grab it before the updateSou
+
+ schedule(() {
+ graph.updateSources([new AssetId.parse("app|foo.txt")]);
+ });
+
+ // Note: No asset requests here.
+
+ schedule(() {
+ return resultFuture.then((result) {
+ expect(result.error, equals(BadTransformer.ERROR));
+ });
+ });
nweiz 2013/06/18 23:14:46 I think wrapping the first argument to [expect] in
Bob Nystrom 2013/06/20 00:23:59 Maybe it's just me, but I really prefer the schedu
nweiz 2013/06/20 23:06:08 I disagree. I like them best when they're inside l
Bob Nystrom 2013/06/21 00:13:20 My plan for the next patch is to clean up the test
+ });
+
+ test("discards outputs from failed transforms", () {
+ var provider = new MockProvider(["app|foo.txt"]);
+ var graph = new AssetGraph(provider, [
+ [new BadTransformer(["a.out", "b.out"])]
+ ]);
+
+ schedule(() {
+ graph.updateSources([new AssetId.parse("app|foo.txt")]);
+ });
+
+ expectNoAsset(graph, "app|a.out");
+ });
+}

Powered by Google App Engine
This is Rietveld 408576698