| Index: pkg/analysis_server/test/analysis/navigation_collector_test.dart
|
| diff --git a/pkg/analysis_server/test/analysis/navigation_collector_test.dart b/pkg/analysis_server/test/analysis/navigation_collector_test.dart
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..e0f118f2bc70650d444c90a8ac531af3582604cc
|
| --- /dev/null
|
| +++ b/pkg/analysis_server/test/analysis/navigation_collector_test.dart
|
| @@ -0,0 +1,80 @@
|
| +// 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.
|
| +
|
| +library test.analysis.navigation_collector;
|
| +
|
| +import 'package:analysis_server/plugin/protocol/protocol.dart';
|
| +import 'package:analysis_server/src/domains/analysis/navigation.dart';
|
| +import 'package:test_reflective_loader/test_reflective_loader.dart';
|
| +import 'package:unittest/unittest.dart';
|
| +
|
| +import '../utils.dart';
|
| +
|
| +main() {
|
| + initializeTestEnvironment();
|
| + defineReflectiveTests(NavigationCollectorImplTest);
|
| +}
|
| +
|
| +@reflectiveTest
|
| +class NavigationCollectorImplTest {
|
| + NavigationCollectorImpl collector = new NavigationCollectorImpl();
|
| +
|
| + void test_multipleTargets() {
|
| + collector.addRegion(
|
| + 10, 5, ElementKind.CLASS, new Location('file', 11, 12, 13, 14));
|
| + collector.addRegion(
|
| + 10, 5, ElementKind.CLASS, new Location('file', 21, 22, 23, 24));
|
| + collector.createRegions();
|
| + List<NavigationRegion> regions = collector.regions;
|
| + expect(regions, hasLength(1));
|
| + {
|
| + NavigationRegion region = regions[0];
|
| + expect(region.offset, 10);
|
| + expect(region.length, 5);
|
| + expect(region.targets, hasLength(2));
|
| + {
|
| + NavigationTarget target = collector.targets[region.targets[0]];
|
| + expect(target.offset, 11);
|
| + expect(target.length, 12);
|
| + }
|
| + {
|
| + NavigationTarget target = collector.targets[region.targets[1]];
|
| + expect(target.offset, 21);
|
| + expect(target.length, 22);
|
| + }
|
| + }
|
| + }
|
| +
|
| + void test_unique() {
|
| + collector.addRegion(
|
| + 100, 10, ElementKind.CLASS, new Location('file', 11, 12, 13, 14));
|
| + collector.addRegion(
|
| + 200, 20, ElementKind.CLASS, new Location('file', 21, 22, 23, 24));
|
| + collector.createRegions();
|
| + List<NavigationRegion> regions = collector.regions;
|
| + expect(regions, hasLength(2));
|
| + {
|
| + NavigationRegion region = regions[0];
|
| + expect(region.offset, 100);
|
| + expect(region.length, 10);
|
| + expect(region.targets, hasLength(1));
|
| + {
|
| + NavigationTarget target = collector.targets[region.targets[0]];
|
| + expect(target.offset, 11);
|
| + expect(target.length, 12);
|
| + }
|
| + }
|
| + {
|
| + NavigationRegion region = regions[1];
|
| + expect(region.offset, 200);
|
| + expect(region.length, 20);
|
| + expect(region.targets, hasLength(1));
|
| + {
|
| + NavigationTarget target = collector.targets[region.targets[0]];
|
| + expect(target.offset, 21);
|
| + expect(target.length, 22);
|
| + }
|
| + }
|
| + }
|
| +}
|
|
|