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

Side by Side Diff: sdk/lib/_internal/pub/test/run/does_not_run_on_transformer_error_test.dart

Issue 1165473002: Start pulling pub from its own repo. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Code review changes Created 5 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
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.
4
5 import '../descriptor.dart' as d;
6 import '../test_pub.dart';
7
8 const SCRIPT = """
9 main() {
10 print("should not get here!");
11 }
12 """;
13
14 const TRANSFORMER = """
15 import 'dart:async';
16
17 import 'package:barback/barback.dart';
18
19 class FailingTransformer extends Transformer {
20 FailingTransformer.asPlugin();
21
22 String get allowedExtensions => '.dart';
23
24 void apply(Transform transform) {
25 // Don't run on the transformer itself.
26 if (transform.primaryInput.id.path.startsWith("lib")) return;
27 transform.logger.error('\${transform.primaryInput.id}.');
28 }
29 }
30 """;
31
32 main() {
33 initConfig();
34 withBarbackVersions("any", () {
35 integration('does not run if a transformer has an error', () {
36 d.dir(appPath, [
37 d.pubspec({
38 "name": "myapp",
39 "transformers": ["myapp/src/transformer"]
40 }),
41 d.dir("lib", [
42 d.dir("src", [
43 d.file("transformer.dart", TRANSFORMER)
44 ])
45 ]),
46 d.dir("bin", [
47 d.file("script.dart", SCRIPT)
48 ])
49 ]).create();
50
51 createLockFile('myapp', pkg: ['barback']);
52
53 var pub = pubRun(args: ["bin/script"]);
54
55 pub.stderr.expect("[Error from Failing]:");
56 pub.stderr.expect("myapp|bin/script.dart.");
57
58 // Note: no output from the script.
59 pub.shouldExit();
60 });
61 });
62 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698