Chromium Code Reviews| Index: dart/tests/compiler/dart2js/message_kind_helper.dart |
| diff --git a/dart/tests/compiler/dart2js/message_kind_helper.dart b/dart/tests/compiler/dart2js/message_kind_helper.dart |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..801d007027cc0e8ed748df877ee1c7a43bd8fc2d |
| --- /dev/null |
| +++ b/dart/tests/compiler/dart2js/message_kind_helper.dart |
| @@ -0,0 +1,49 @@ |
| +// 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 dart2js.test.message_kind_helper; |
| + |
| +import 'package:expect/expect.dart'; |
| + |
| +import '../../../sdk/lib/_internal/compiler/implementation/dart2jslib.dart' show |
| + Compiler, |
| + MessageKind; |
| + |
| +import 'memory_compiler.dart'; |
| + |
| +const String ESCAPE_REGEXP = r'[[\]{}()*+?.\\^$|]'; |
| + |
| +Compiler check(MessageKind kind, Compiler cachedCompiler) { |
| + Expect.isNotNull(kind.howToFix); |
| + Expect.isFalse(kind.examples.isEmpty); |
| + |
| + for (String example in kind.examples) { |
| + List<String> messages = <String>[]; |
| + void collect(Uri uri, int begin, int end, String message, kind) { |
| + if (kind.name == 'verbose info') { |
| + return; |
| + } |
| + messages.add(message); |
| + } |
| + |
| + Compiler compiler = compilerFor( |
| + {'main.dart': example}, |
| + diagnosticHandler: collect, |
| + options: ['--analyze-only'], |
| + cachedCompiler: cachedCompiler); |
| + |
| + compiler.run(Uri.parse('memory:main.dart')); |
| + |
| + Expect.isFalse(messages.isEmpty, 'No messages in """$example"""'); |
| + |
| + String pattern = '${kind.template}\n${kind.howToFix}'.replaceAllMapped( |
| + new RegExp(ESCAPE_REGEXP), (m) => '\\${m[0]}'); |
| + pattern = pattern.replaceAll(new RegExp(r'#\\\{[^}]*\\\}'), '.*'); |
| + |
| + for (String message in messages) { |
| + Expect.isTrue(new RegExp('^$pattern\$').hasMatch(message), '"$pattern" does not match "$message"'); |
|
Johnni Winther
2013/08/07 10:39:17
Long line.
ahe
2013/08/07 13:40:20
Done.
|
| + } |
| + return compiler; |
| + } |
| +} |