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

Unified Diff: pkg/analysis_server/test/index/page_node_manager_test.dart

Issue 326123002: Node cache, binary search. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 6 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
Index: pkg/analysis_server/test/index/page_node_manager_test.dart
diff --git a/pkg/analysis_server/test/index/page_node_manager_test.dart b/pkg/analysis_server/test/index/page_node_manager_test.dart
index 9db43ac003b4c665b6ae906e2d6d8a249250c738..9578f72cfe2cdb99a76cc7b6b4279423ef2057e0 100644
--- a/pkg/analysis_server/test/index/page_node_manager_test.dart
+++ b/pkg/analysis_server/test/index/page_node_manager_test.dart
@@ -9,6 +9,7 @@ import 'dart:typed_data';
import 'package:analysis_server/src/index/b_plus_tree.dart';
import 'package:analysis_server/src/index/page_node_manager.dart';
+import 'package:typed_mock/typed_mock.dart';
import 'package:unittest/unittest.dart';
import '../reflective_tests.dart';
@@ -16,6 +17,9 @@ import '../reflective_tests.dart';
main() {
groupSep = ' | ';
+ group('_CachingNodeManagerTest', () {
+ runReflectiveTests(_CachingNodeManagerTest);
+ });
group('FixedStringCodecTest', () {
runReflectiveTests(_FixedStringCodecTest);
});
@@ -44,8 +48,6 @@ _treeWithPageNodeManager() {
NodeManager<int, String, int> nodeManager = new PageNodeManager<int, String>(
pageManager, Uint32Codec.INSTANCE, new FixedStringCodec(7));
// NodeManager<int, String, int> nodeManager = new MemoryNodeManager();
- print('maxIndexKeys: ${nodeManager.maxIndexKeys} '
- 'maxLeafKeys: ${nodeManager.maxLeafKeys}');
BPlusTree<int, String, int> tree = new BPlusTree(_intComparator, nodeManager);
int maxKey = 1000000;
int tryCount = 1000;
@@ -80,6 +82,115 @@ _treeWithPageNodeManager() {
@ReflectiveTestCase()
+class _CachingNodeManagerTest {
+ NodeManager<int, String, int> delegate = new _NodeManagerMock<int, String, int>();
+ NodeManager<int, String, int> manager;
+
+ void setUp() {
+ manager = new CachingNodeManager<int, String, int>(delegate, 4, 4);
+ }
+
+ void test_maxIndexKeys() {
+ when(delegate.maxIndexKeys).thenReturn(42);
+ expect(manager.maxIndexKeys, 42);
+ }
+
+ void test_maxLeafKeys() {
+ when(delegate.maxLeafKeys).thenReturn(42);
+ expect(manager.maxLeafKeys, 42);
+ }
+
+ void test_createIndex() {
+ when(delegate.createIndex()).thenReturn(77);
+ expect(manager.createIndex(), 77);
+ }
+
+ void test_createLeaf() {
+ when(delegate.createLeaf()).thenReturn(99);
+ expect(manager.createLeaf(), 99);
+ }
+
+ void test_delete() {
+ manager.delete(42);
+ verify(delegate.delete(42)).once();
+ }
+
+ void test_isIndex() {
+ when(delegate.isIndex(1)).thenReturn(true);
+ when(delegate.isIndex(2)).thenReturn(false);
+ expect(manager.isIndex(1), isTrue);
+ expect(manager.isIndex(2), isFalse);
+ }
+
+ void test_readIndex_cached() {
+ var data = new IndexNodeData<int, int>([1, 2], [10, 20, 30]);
+ manager.writeIndex(2, data);
+ expect(manager.readIndex(2), data);
+ // delete, forces request to the delegate
+ manager.delete(2);
+ manager.readIndex(2);
+ verify(delegate.readIndex(2)).once();
+ }
+
+ void test_readIndex_delegate() {
+ var data = new IndexNodeData<int, int>([1, 2], [10, 20, 30]);
+ when(delegate.readIndex(2)).thenReturn(data);
+ expect(manager.readIndex(2), data);
+ }
+
+ void test_readLeaf_cached() {
+ var data = new LeafNodeData<int, String>([1, 2, 3], ['A', 'B', 'C']);
+ manager.writeLeaf(2, data);
+ expect(manager.readLeaf(2), data);
+ // delete, forces request to the delegate
+ manager.delete(2);
+ manager.readLeaf(2);
+ verify(delegate.readLeaf(2)).once();
+ }
+
+ void test_readLeaf_delegate() {
+ var data = new LeafNodeData<int, String>([1, 2, 3], ['A', 'B', 'C']);
+ when(delegate.readLeaf(2)).thenReturn(data);
+ expect(manager.readLeaf(2), data);
+ }
+
+ void test_writeIndex() {
+ var data = new IndexNodeData<int, int>([1], [10, 20]);
+ manager.writeIndex(1, data);
+ manager.writeIndex(2, data);
+ manager.writeIndex(3, data);
+ manager.writeIndex(4, data);
+ manager.writeIndex(1, data);
+ // TODO(scheglov) method pointers don't work with mocks
+ // TODO(scheglov) add resetInteractions(mock)
+ // TODO(scheglov) verifyZeroInteractions() should accept 'dynamic'
+// verifyZeroInteractions(delegate as TypedMock);
+ verify(delegate.writeIndex(anyInt, anyObject)).never();
+ // only 4 nodes can be cached, 5-th one cause write to the delegate
+ manager.writeIndex(5, data);
+ verify(delegate.writeIndex(2, data)).once();
+ }
+
+ void test_writeLeaf() {
+ var data = new LeafNodeData<int, String>([1, 2], ['A', 'B']);
+ manager.writeLeaf(1, data);
+ manager.writeLeaf(2, data);
+ manager.writeLeaf(3, data);
+ manager.writeLeaf(4, data);
+ manager.writeLeaf(1, data);
+ // TODO(scheglov) method pointers don't work with mocks
+ // TODO(scheglov) add resetInteractions(mock)
+ // TODO(scheglov) verifyZeroInteractions() should accept 'dynamic'
+// verifyZeroInteractions(delegate as TypedMock);
+ verify(delegate.writeLeaf(anyInt, anyObject)).never();
+ // only 4 nodes can be cached, 5-th one cause write to the delegate
+ manager.writeLeaf(5, data);
+ verify(delegate.writeLeaf(2, data)).once();
+ }
+}
+
+
+@ReflectiveTestCase()
class _FixedStringCodecTest {
ByteData buffer;
Uint8List bytes = new Uint8List(2 + 2 * 4);
@@ -121,7 +232,6 @@ class _FixedStringCodecTest {
}
-
@ReflectiveTestCase()
class _MemoryPageManagerTest {
static const PAGE_SIZE = 8;
@@ -180,6 +290,12 @@ class _MemoryPageManagerTest {
+class _NodeManagerMock<K, V, N> extends TypedMock implements NodeManager<K, V, N> {
+ noSuchMethod(Invocation invocation) => super.noSuchMethod(invocation);
+}
+
+
+
@ReflectiveTestCase()
class _PageNodeManagerTest {
static const Codec KEY_CODEC = Uint32Codec.INSTANCE;

Powered by Google App Engine
This is Rietveld 408576698