| // Copyright (c) 2015, 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. |
| |
| import 'package:coverage/coverage.dart'; |
| import 'package:path/path.dart' as p; |
| import 'package:test/test.dart'; |
| |
| import 'test_util.dart'; |
| |
| final _isolateLibPath = p.join('test', 'test_files', 'test_app_isolate.dart'); |
| |
| final _sampleAppFileUri = p.toUri(p.absolute(testAppPath)).toString(); |
| final _isolateLibFileUri = p.toUri(p.absolute(_isolateLibPath)).toString(); |
| |
| void main() { |
| test('runAndCollect', () async { |
| // use runAndCollect and verify that the results match w/ running manually |
| final json = await runAndCollect(testAppPath); |
| expect(json.keys, unorderedEquals(<String>['type', 'coverage'])); |
| expect(json, containsPair('type', 'CodeCoverage')); |
| |
| final coverage = json['coverage'] as List<Map<String, dynamic>>; |
| expect(coverage, isNotEmpty); |
| |
| final sources = coverage.fold<Map<String, dynamic>>(<String, dynamic>{}, |
| (Map<String, dynamic> map, dynamic value) { |
| final sourceUri = value['source'] as String; |
| map.putIfAbsent(sourceUri, () => <Map>[]).add(value); |
| return map; |
| }); |
| |
| for (var sampleCoverageData in sources[_sampleAppFileUri]) { |
| expect(sampleCoverageData['hits'], isNotNull); |
| } |
| |
| for (var sampleCoverageData in sources[_isolateLibFileUri]) { |
| expect(sampleCoverageData['hits'], isNotEmpty); |
| } |
| |
| final hitMap = await createHitmap(coverage, checkIgnoredLines: true); |
| expect(hitMap, isNot(contains(_sampleAppFileUri))); |
| |
| final actualHits = hitMap[_isolateLibFileUri]; |
| final expectedHits = { |
| 11: 1, |
| 12: 1, |
| 13: 1, |
| 15: 0, |
| 28: 1, |
| 29: 1, |
| 31: 1, |
| 32: 3, |
| 46: 1, |
| 47: 1, |
| 18: 1, |
| 19: 1, |
| 20: 1, |
| 22: 0, |
| 33: 1, |
| 34: 3, |
| 35: 1 |
| }; |
| |
| expect(actualHits, expectedHits); |
| }); |
| } |