blob: dbc2f55912a61d923ab174e1049ae24fcf85cc49 [file] [log] [blame]
// Copyright (c) 2013, 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.
import 'package:test/test.dart';
import '../descriptor.dart' as d;
import '../serve/utils.dart';
import '../test_pub.dart';
main() {
// A syntax error will cause the analyzer to fail to parse the transformer
// when attempting to rewrite its imports.
test("fails to load a transform with a syntax error", () async {
await serveBarback();
await d.dir(appPath, [
d.pubspec({
"name": "myapp",
"transformers": ["myapp/src/transformer"],
"dependencies": {"barback": "any"}
}),
d.dir("lib", [
d.dir("src", [d.file("transformer.dart", "syntax error")])
])
]).create();
await pubGet();
var pub = await startPubServe();
expect(pub.stderr, emitsThrough(contains("unexpected token 'syntax'")));
expect(pub.stderrStream(),
neverEmits(contains('This is an unexpected error')));
await pub.shouldExit(1);
});
}