Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(24)

Unified Diff: pkg/analyzer/test/src/context/abstract_context_test.dart

Issue 1121963002: Record dependencies and invalidate results. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Merge and fixes for review comments. Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/analyzer/lib/src/task/driver.dart ('k') | pkg/analyzer/test/src/context/cache_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer/test/src/context/abstract_context_test.dart
diff --git a/pkg/analyzer/test/src/context/abstract_context_test.dart b/pkg/analyzer/test/src/context/abstract_context_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..45925cd0da502e6e6326e0991a477adc32c7d96e
--- /dev/null
+++ b/pkg/analyzer/test/src/context/abstract_context_test.dart
@@ -0,0 +1,99 @@
+// 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.src.task.abstract_context_test;
+
+import 'package:analyzer/file_system/file_system.dart';
+import 'package:analyzer/file_system/memory_file_system.dart';
+import 'package:analyzer/src/context/context.dart';
+import 'package:analyzer/src/generated/element.dart';
+import 'package:analyzer/src/generated/engine.dart'
+ hide AnalysisContextImpl, AnalysisTask;
+import 'package:analyzer/src/generated/sdk.dart';
+import 'package:analyzer/src/generated/source.dart';
+import 'package:analyzer/src/plugin/engine_plugin.dart';
+import 'package:analyzer/src/task/driver.dart';
+import 'package:analyzer/src/task/manager.dart';
+import 'package:plugin/manager.dart';
+import 'package:unittest/unittest.dart';
+
+import 'mock_sdk.dart';
+
+class AbstractContextTest {
+ MemoryResourceProvider resourceProvider = new MemoryResourceProvider();
+
+ ExtensionManager extensionManager = new ExtensionManager();
+
+ DartSdk sdk = new MockSdk();
+ AnalysisContextImpl context;
+
+ TaskManager taskManager = new TaskManager();
+ AnalysisDriver analysisDriver;
+
+ /**
+ * Assert that the given [elements] has the same number of items as the number
+ * of specified [names], and that for each specified name, a corresponding
+ * element can be found in the given collection with that name.
+ */
+ void assertNamedElements(List<Element> elements, List<String> names) {
+ for (String elemName in names) {
+ bool found = false;
+ for (Element elem in elements) {
+ if (elem.name == elemName) {
+ found = true;
+ break;
+ }
+ }
+ if (!found) {
+ StringBuffer buffer = new StringBuffer();
+ buffer.write("Expected element named: ");
+ buffer.write(elemName);
+ buffer.write("\n but found: ");
+ for (Element elem in elements) {
+ buffer.write(elem.name);
+ buffer.write(", ");
+ }
+ fail(buffer.toString());
+ }
+ }
+ expect(elements, hasLength(names.length));
+ }
+
+ AnalysisContextImpl createAnalysisContext() {
+ return new AnalysisContextImpl();
+ }
+
+ Source newSource(String path, [String content = '']) {
+ File file = resourceProvider.newFile(path, content);
+ return file.createSource();
+ }
+
+ List<Source> newSources(Map<String, String> sourceMap) {
+ List<Source> sources = <Source>[];
+ sourceMap.forEach((String path, String content) {
+ Source source = newSource(path, content);
+ sources.add(source);
+ });
+ return sources;
+ }
+
+ void setUp() {
+ // configure TaskManager
+ {
+ EnginePlugin plugin = AnalysisEngine.instance.enginePlugin;
+ extensionManager.processPlugins([plugin]);
+ taskManager.addTaskDescriptors(plugin.taskDescriptors);
+ }
+ // prepare AnalysisContext
+ context = createAnalysisContext();
+ context.sourceFactory = new SourceFactory(<UriResolver>[
+ new DartUriResolver(sdk),
+ new ResourceUriResolver(resourceProvider)
+ ]);
+ // prepare AnalysisDriver
+ analysisDriver = new AnalysisDriver(taskManager, context);
+ }
+
+ void tearDown() {}
+}
« no previous file with comments | « pkg/analyzer/lib/src/task/driver.dart ('k') | pkg/analyzer/test/src/context/cache_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698