| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // BSD-style license that can be found in the LICENSE file. | |
| 4 | |
| 5 library dart2js.serialization_analysis_test; | |
| 6 | |
| 7 import 'dart:async'; | |
| 8 import 'package:async_helper/async_helper.dart'; | |
| 9 import 'package:expect/expect.dart'; | |
| 10 import 'package:compiler/src/commandline_options.dart'; | |
| 11 import 'package:compiler/src/common/backend_api.dart'; | |
| 12 import 'package:compiler/src/common/names.dart'; | |
| 13 import 'package:compiler/src/compiler.dart'; | |
| 14 import 'package:compiler/src/filenames.dart'; | |
| 15 import 'memory_compiler.dart'; | |
| 16 import 'serialization_helper.dart'; | |
| 17 import 'serialization_test_data.dart'; | |
| 18 | |
| 19 main(List<String> arguments) { | |
| 20 asyncTest(() async { | |
| 21 String serializedData = await serializeDartCore(); | |
| 22 | |
| 23 if (arguments.isNotEmpty) { | |
| 24 Uri entryPoint = Uri.base.resolve(nativeToUriPath(arguments.last)); | |
| 25 await analyze(serializedData, entryPoint, null); | |
| 26 } else { | |
| 27 Uri entryPoint = Uri.parse('memory:main.dart'); | |
| 28 for (Test test in TESTS) { | |
| 29 await analyze(serializedData, entryPoint, test); | |
| 30 } | |
| 31 } | |
| 32 }); | |
| 33 } | |
| 34 | |
| 35 Future analyze(String serializedData, Uri entryPoint, Test test) async { | |
| 36 DiagnosticCollector diagnosticCollector = new DiagnosticCollector(); | |
| 37 await runCompiler( | |
| 38 entryPoint: entryPoint, | |
| 39 memorySourceFiles: test != null ? test.sourceFiles : const {}, | |
| 40 options: [Flags.analyzeOnly], | |
| 41 diagnosticHandler: diagnosticCollector, | |
| 42 beforeRun: (Compiler compiler) { | |
| 43 deserialize(compiler, serializedData); | |
| 44 }); | |
| 45 if (test != null) { | |
| 46 Expect.equals(test.expectedErrorCount, diagnosticCollector.errors.length, | |
| 47 "Unexpected error count."); | |
| 48 Expect.equals( | |
| 49 test.expectedWarningCount, | |
| 50 diagnosticCollector.warnings.length, | |
| 51 "Unexpected warning count."); | |
| 52 Expect.equals(test.expectedHintCount, diagnosticCollector.hints.length, | |
| 53 "Unexpected hint count."); | |
| 54 Expect.equals(test.expectedInfoCount, diagnosticCollector.infos.length, | |
| 55 "Unexpected info count."); | |
| 56 } | |
| 57 } | |
| 58 | |
| OLD | NEW |