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 // Test that the compiler can handle imports when package root has not been set. | 5 // Test that the compiler can handle imports when package root has not been set. |
6 | 6 |
7 library dart2js.test.missing_file; | 7 library dart2js.test.missing_file; |
8 | 8 |
9 import 'dart:io' show exit; | 9 import 'dart:io' show exit; |
10 import 'package:expect/expect.dart'; | 10 import 'package:expect/expect.dart'; |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 String prefixMessage(String message, Diagnostic kind) { | 48 String prefixMessage(String message, Diagnostic kind) { |
49 return message; | 49 return message; |
50 } | 50 } |
51 | 51 |
52 int fatalCount; | 52 int fatalCount; |
53 | 53 |
54 int throwOnErrorCount; | 54 int throwOnErrorCount; |
55 } | 55 } |
56 | 56 |
57 testOutputProvider(script, libraryRoot, packageRoot, inputProvider, handler, | 57 testOutputProvider(script, libraryRoot, packageRoot, inputProvider, handler, |
58 [options, outputProvider, environment]) { | 58 [options, outputProvider, environment, packageConfig, |
| 59 findPackages]) { |
59 diagnosticHandler = new CollectingFormattingDiagnosticHandler(); | 60 diagnosticHandler = new CollectingFormattingDiagnosticHandler(); |
60 outputProvider("/non/existing/directory/should/fail/file", "js"); | 61 outputProvider("/non/existing/directory/should/fail/file", "js"); |
61 } | 62 } |
62 | 63 |
63 void main() { | 64 void main() { |
64 compileFunc = testOutputProvider; | 65 compileFunc = testOutputProvider; |
65 exitFunc = (exitCode) { | 66 exitFunc = (exitCode) { |
66 CollectingFormattingDiagnosticHandler handler = diagnosticHandler; | 67 CollectingFormattingDiagnosticHandler handler = diagnosticHandler; |
67 Expect.equals(1, handler.messages.length); | 68 Expect.equals(1, handler.messages.length); |
68 var message = handler.messages[0]; | 69 var message = handler.messages[0]; |
69 Expect.isTrue(message[0].contains("Cannot open file")); | 70 Expect.isTrue(message[0].contains("Cannot open file")); |
70 Expect.equals(Diagnostic.ERROR, message[1]); | 71 Expect.equals(Diagnostic.ERROR, message[1]); |
71 Expect.equals(1, exitCode); | 72 Expect.equals(1, exitCode); |
72 exit(0); | 73 exit(0); |
73 }; | 74 }; |
74 compile(["foo.dart", "--out=bar.dart"]); | 75 compile(["foo.dart", "--out=bar.dart"]); |
75 } | 76 } |
OLD | NEW |