OLD | NEW |
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, 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 /// Tests that run the checker end-to-end using the file system, but with a mock | 5 /// Tests that run the checker end-to-end using the file system, but with a mock |
6 /// SDK. | 6 /// SDK. |
7 library dev_compiler.test.end_to_end; | 7 library dev_compiler.test.end_to_end; |
8 | 8 |
9 import 'package:dev_compiler/devc.dart' show Compiler; | 9 import 'package:dev_compiler/devc.dart'; |
10 import 'package:dev_compiler/src/options.dart'; | 10 import 'package:dev_compiler/src/options.dart'; |
11 import 'package:test/test.dart'; | 11 import 'package:test/test.dart'; |
12 import 'test_util.dart' show testDirectory; | 12 import 'testing.dart' show realSdkContext, testDirectory; |
13 | 13 |
14 main() { | 14 main() { |
15 _check(testFile) { | 15 var mockSdkContext = createAnalysisContextWithSources( |
16 var options = new CompilerOptions( | 16 new StrongModeOptions(), new SourceResolverOptions(useMockSdk: true)); |
17 sourceOptions: new SourceResolverOptions( | 17 var compiler = new BatchCompiler(mockSdkContext, new CompilerOptions()); |
18 useMockSdk: true, entryPointFile: '$testDirectory/$testFile.dart')); | 18 _check(file) => compiler.compileFromUriString('$testDirectory/$file.dart'); |
19 new Compiler(options).run(); | |
20 } | |
21 | 19 |
22 test('checker runs correctly (end-to-end)', () { | 20 test('checker runs correctly (end-to-end)', () { |
23 _check('samples/funwithtypes'); | 21 _check('samples/funwithtypes'); |
24 }); | 22 }); |
25 | 23 |
26 test('checker accepts files with imports', () { | 24 test('checker accepts files with imports', () { |
27 _check('samples/import_test'); | 25 _check('samples/import_test'); |
28 }); | 26 }); |
29 | 27 |
30 test('checker tests function types', () { | 28 test('checker tests function types', () { |
31 // TODO(vsm): Check for correct down casts. | 29 // TODO(vsm): Check for correct down casts. |
32 _check('samples/function_type_test'); | 30 _check('samples/function_type_test'); |
33 }); | 31 }); |
34 | 32 |
35 test('checker tests runtime checks', () { | 33 test('checker tests runtime checks', () { |
36 // TODO(sigmund,vsm): Check output for invalid checks. | 34 // TODO(sigmund,vsm): Check output for invalid checks. |
37 _check('samples/runtimetypechecktest'); | 35 _check('samples/runtimetypechecktest'); |
38 }); | 36 }); |
39 | 37 |
40 test('checker tests return values', () { | 38 test('checker tests return values', () { |
41 // TODO(vsm): Check for conversions. | 39 // TODO(vsm): Check for conversions. |
42 _check('samples/return_test'); | 40 _check('samples/return_test'); |
43 }); | 41 }); |
44 } | 42 } |
OLD | NEW |