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, packageConfig, | 58 [options, outputProvider, environment]) { |
59 findPackages]) { | |
60 diagnosticHandler = new CollectingFormattingDiagnosticHandler(); | 59 diagnosticHandler = new CollectingFormattingDiagnosticHandler(); |
61 outputProvider("/non/existing/directory/should/fail/file", "js"); | 60 outputProvider("/non/existing/directory/should/fail/file", "js"); |
62 } | 61 } |
63 | 62 |
64 void main() { | 63 void main() { |
65 compileFunc = testOutputProvider; | 64 compileFunc = testOutputProvider; |
66 exitFunc = (exitCode) { | 65 exitFunc = (exitCode) { |
67 CollectingFormattingDiagnosticHandler handler = diagnosticHandler; | 66 CollectingFormattingDiagnosticHandler handler = diagnosticHandler; |
68 Expect.equals(1, handler.messages.length); | 67 Expect.equals(1, handler.messages.length); |
69 var message = handler.messages[0]; | 68 var message = handler.messages[0]; |
70 Expect.isTrue(message[0].contains("Cannot open file")); | 69 Expect.isTrue(message[0].contains("Cannot open file")); |
71 Expect.equals(Diagnostic.ERROR, message[1]); | 70 Expect.equals(Diagnostic.ERROR, message[1]); |
72 Expect.equals(1, exitCode); | 71 Expect.equals(1, exitCode); |
73 exit(0); | 72 exit(0); |
74 }; | 73 }; |
75 compile(["foo.dart", "--out=bar.dart"]); | 74 compile(["foo.dart", "--out=bar.dart"]); |
76 } | 75 } |
OLD | NEW |