OLD | NEW |
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 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. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 library barback.test.transformer.bad; | 5 library barback.test.transformer.bad; |
6 | 6 |
| 7 import 'dart:async'; |
| 8 |
7 import 'package:barback/barback.dart'; | 9 import 'package:barback/barback.dart'; |
| 10 import 'package:barback/src/utils.dart'; |
8 | 11 |
9 import 'mock.dart'; | 12 import 'mock.dart'; |
10 | 13 |
11 /// A transformer that throws an exception when run, after generating the | 14 /// A transformer that throws an exception when run, after generating the |
12 /// given outputs. | 15 /// given outputs. |
13 class BadTransformer extends MockTransformer { | 16 class BadTransformer extends MockTransformer { |
14 /// The error it throws. | 17 /// The error it throws. |
15 static const ERROR = "I am a bad transformer!"; | 18 static const ERROR = "I am a bad transformer!"; |
16 | 19 |
17 /// The list of asset names that it should output. | 20 /// The list of asset names that it should output. |
18 final List<String> outputs; | 21 final List<String> outputs; |
19 | 22 |
20 BadTransformer(this.outputs); | 23 BadTransformer(this.outputs); |
21 | 24 |
22 bool doIsPrimary(AssetId id) => true; | 25 Future<bool> doIsPrimary(AssetId id) => new Future.value(true); |
23 | 26 |
24 void doApply(Transform transform) { | 27 Future doApply(Transform transform) { |
25 // Create the outputs first. | 28 return newFuture(() { |
26 for (var output in outputs) { | 29 // Create the outputs first. |
27 var id = new AssetId.parse(output); | 30 for (var output in outputs) { |
28 transform.addOutput(new Asset.fromString(id, output)); | 31 var id = new AssetId.parse(output); |
29 } | 32 transform.addOutput(new Asset.fromString(id, output)); |
| 33 } |
30 | 34 |
31 // Then fail. | 35 // Then fail. |
32 throw ERROR; | 36 throw ERROR; |
| 37 }); |
33 } | 38 } |
34 } | 39 } |
OLD | NEW |