1094
985
reload_counter = [0, 0, 0]
1096
987
reload_counter[0] += 1
1097
new_indices = [idx3]
1098
if idx._indices == new_indices:
988
new_indices = [index3]
989
if index._indices == new_indices:
1099
990
reload_counter[2] += 1
1101
992
reload_counter[1] += 1
1102
idx._indices[:] = new_indices
993
index._indices[:] = new_indices
1104
idx = index.CombinedGraphIndex([idx1, idx2], reload_func=reload)
995
index = CombinedGraphIndex([index1, index2], reload_func=reload)
1105
996
trans = self.get_transport()
1106
997
for fname in missing:
1107
998
trans.delete(fname)
1108
return idx, reload_counter
999
return index, reload_counter
1110
1001
def test_open_missing_index_no_error(self):
1111
1002
trans = self.get_transport()
1112
idx1 = index.GraphIndex(trans, 'missing', 100)
1113
idx = index.CombinedGraphIndex([idx1])
1003
index1 = GraphIndex(trans, 'missing', 100)
1004
index = CombinedGraphIndex([index1])
1115
1006
def test_add_index(self):
1116
idx = index.CombinedGraphIndex([])
1117
idx1 = self.make_index('name', 0, nodes=[(('key', ), '', ())])
1118
idx.insert_index(0, idx1)
1119
self.assertEqual([(idx1, ('key', ), '')],
1120
list(idx.iter_all_entries()))
1122
def test_clear_cache(self):
1125
class ClearCacheProxy(object):
1127
def __init__(self, index):
1130
def __getattr__(self, name):
1131
return getattr(self._index)
1133
def clear_cache(self):
1134
log.append(self._index)
1135
return self._index.clear_cache()
1137
idx = index.CombinedGraphIndex([])
1138
idx1 = self.make_index('name', 0, nodes=[(('key', ), '', ())])
1139
idx.insert_index(0, ClearCacheProxy(idx1))
1140
idx2 = self.make_index('name', 0, nodes=[(('key', ), '', ())])
1141
idx.insert_index(1, ClearCacheProxy(idx2))
1142
# CombinedGraphIndex should call 'clear_cache()' on all children
1144
self.assertEqual(sorted([idx1, idx2]), sorted(log))
1007
index = CombinedGraphIndex([])
1008
index1 = self.make_index('name', 0, nodes=[(('key', ), '', ())])
1009
index.insert_index(0, index1)
1010
self.assertEqual([(index1, ('key', ), '')], list(index.iter_all_entries()))
1146
1012
def test_iter_all_entries_empty(self):
1147
idx = index.CombinedGraphIndex([])
1148
self.assertEqual([], list(idx.iter_all_entries()))
1013
index = CombinedGraphIndex([])
1014
self.assertEqual([], list(index.iter_all_entries()))
1150
1016
def test_iter_all_entries_children_empty(self):
1151
idx1 = self.make_index('name')
1152
idx = index.CombinedGraphIndex([idx1])
1153
self.assertEqual([], list(idx.iter_all_entries()))
1017
index1 = self.make_index('name')
1018
index = CombinedGraphIndex([index1])
1019
self.assertEqual([], list(index.iter_all_entries()))
1155
1021
def test_iter_all_entries_simple(self):
1156
idx1 = self.make_index('name', nodes=[(('name', ), 'data', ())])
1157
idx = index.CombinedGraphIndex([idx1])
1158
self.assertEqual([(idx1, ('name', ), 'data')],
1159
list(idx.iter_all_entries()))
1022
index1 = self.make_index('name', nodes=[(('name', ), 'data', ())])
1023
index = CombinedGraphIndex([index1])
1024
self.assertEqual([(index1, ('name', ), 'data')],
1025
list(index.iter_all_entries()))
1161
1027
def test_iter_all_entries_two_indices(self):
1162
idx1 = self.make_index('name1', nodes=[(('name', ), 'data', ())])
1163
idx2 = self.make_index('name2', nodes=[(('2', ), '', ())])
1164
idx = index.CombinedGraphIndex([idx1, idx2])
1165
self.assertEqual([(idx1, ('name', ), 'data'),
1166
(idx2, ('2', ), '')],
1167
list(idx.iter_all_entries()))
1028
index1 = self.make_index('name1', nodes=[(('name', ), 'data', ())])
1029
index2 = self.make_index('name2', nodes=[(('2', ), '', ())])
1030
index = CombinedGraphIndex([index1, index2])
1031
self.assertEqual([(index1, ('name', ), 'data'),
1032
(index2, ('2', ), '')],
1033
list(index.iter_all_entries()))
1169
1035
def test_iter_entries_two_indices_dup_key(self):
1170
idx1 = self.make_index('name1', nodes=[(('name', ), 'data', ())])
1171
idx2 = self.make_index('name2', nodes=[(('name', ), 'data', ())])
1172
idx = index.CombinedGraphIndex([idx1, idx2])
1173
self.assertEqual([(idx1, ('name', ), 'data')],
1174
list(idx.iter_entries([('name', )])))
1036
index1 = self.make_index('name1', nodes=[(('name', ), 'data', ())])
1037
index2 = self.make_index('name2', nodes=[(('name', ), 'data', ())])
1038
index = CombinedGraphIndex([index1, index2])
1039
self.assertEqual([(index1, ('name', ), 'data')],
1040
list(index.iter_entries([('name', )])))
1176
1042
def test_iter_all_entries_two_indices_dup_key(self):
1177
idx1 = self.make_index('name1', nodes=[(('name', ), 'data', ())])
1178
idx2 = self.make_index('name2', nodes=[(('name', ), 'data', ())])
1179
idx = index.CombinedGraphIndex([idx1, idx2])
1180
self.assertEqual([(idx1, ('name', ), 'data')],
1181
list(idx.iter_all_entries()))
1043
index1 = self.make_index('name1', nodes=[(('name', ), 'data', ())])
1044
index2 = self.make_index('name2', nodes=[(('name', ), 'data', ())])
1045
index = CombinedGraphIndex([index1, index2])
1046
self.assertEqual([(index1, ('name', ), 'data')],
1047
list(index.iter_all_entries()))
1183
1049
def test_iter_key_prefix_2_key_element_refs(self):
1184
idx1 = self.make_index('1', 1, key_elements=2, nodes=[
1185
(('name', 'fin1'), 'data', ([('ref', 'erence')], ))])
1186
idx2 = self.make_index('2', 1, key_elements=2, nodes=[
1187
(('name', 'fin2'), 'beta', ([], )),
1188
(('ref', 'erence'), 'refdata', ([], ))])
1189
idx = index.CombinedGraphIndex([idx1, idx2])
1190
self.assertEqual(set([(idx1, ('name', 'fin1'), 'data',
1191
((('ref', 'erence'),),)),
1192
(idx2, ('ref', 'erence'), 'refdata', ((), ))]),
1193
set(idx.iter_entries_prefix([('name', 'fin1'),
1194
('ref', 'erence')])))
1195
self.assertEqual(set([(idx1, ('name', 'fin1'), 'data',
1196
((('ref', 'erence'),),)),
1197
(idx2, ('name', 'fin2'), 'beta', ((), ))]),
1198
set(idx.iter_entries_prefix([('name', None)])))
1050
index1 = self.make_index('1', 1, key_elements=2, nodes=[
1051
(('name', 'fin1'), 'data', ([('ref', 'erence')], ))])
1052
index2 = self.make_index('2', 1, key_elements=2, nodes=[
1053
(('name', 'fin2'), 'beta', ([], )),
1054
(('ref', 'erence'), 'refdata', ([], ))])
1055
index = CombinedGraphIndex([index1, index2])
1056
self.assertEqual(set([(index1, ('name', 'fin1'), 'data', ((('ref', 'erence'),),)),
1057
(index2, ('ref', 'erence'), 'refdata', ((), ))]),
1058
set(index.iter_entries_prefix([('name', 'fin1'), ('ref', 'erence')])))
1059
self.assertEqual(set([(index1, ('name', 'fin1'), 'data', ((('ref', 'erence'),),)),
1060
(index2, ('name', 'fin2'), 'beta', ((), ))]),
1061
set(index.iter_entries_prefix([('name', None)])))
1200
1063
def test_iter_nothing_empty(self):
1201
idx = index.CombinedGraphIndex([])
1202
self.assertEqual([], list(idx.iter_entries([])))
1064
index = CombinedGraphIndex([])
1065
self.assertEqual([], list(index.iter_entries([])))
1204
1067
def test_iter_nothing_children_empty(self):
1205
idx1 = self.make_index('name')
1206
idx = index.CombinedGraphIndex([idx1])
1207
self.assertEqual([], list(idx.iter_entries([])))
1068
index1 = self.make_index('name')
1069
index = CombinedGraphIndex([index1])
1070
self.assertEqual([], list(index.iter_entries([])))
1209
1072
def test_iter_all_keys(self):
1210
idx1 = self.make_index('1', 1, nodes=[(('name', ), 'data',
1212
idx2 = self.make_index('2', 1, nodes=[(('ref', ), 'refdata', ((), ))])
1213
idx = index.CombinedGraphIndex([idx1, idx2])
1214
self.assertEqual(set([(idx1, ('name', ), 'data', ((('ref', ), ), )),
1215
(idx2, ('ref', ), 'refdata', ((), ))]),
1216
set(idx.iter_entries([('name', ), ('ref', )])))
1073
index1 = self.make_index('1', 1, nodes=[
1074
(('name', ), 'data', ([('ref', )], ))])
1075
index2 = self.make_index('2', 1, nodes=[
1076
(('ref', ), 'refdata', ((), ))])
1077
index = CombinedGraphIndex([index1, index2])
1078
self.assertEqual(set([(index1, ('name', ), 'data', ((('ref', ), ), )),
1079
(index2, ('ref', ), 'refdata', ((), ))]),
1080
set(index.iter_entries([('name', ), ('ref', )])))
1218
1082
def test_iter_all_keys_dup_entry(self):
1219
idx1 = self.make_index('1', 1, nodes=[(('name', ), 'data',
1221
(('ref', ), 'refdata', ([], ))])
1222
idx2 = self.make_index('2', 1, nodes=[(('ref', ), 'refdata', ([], ))])
1223
idx = index.CombinedGraphIndex([idx1, idx2])
1224
self.assertEqual(set([(idx1, ('name', ), 'data', ((('ref',),),)),
1225
(idx1, ('ref', ), 'refdata', ((), ))]),
1226
set(idx.iter_entries([('name', ), ('ref', )])))
1083
index1 = self.make_index('1', 1, nodes=[
1084
(('name', ), 'data', ([('ref', )], )),
1085
(('ref', ), 'refdata', ([], ))])
1086
index2 = self.make_index('2', 1, nodes=[
1087
(('ref', ), 'refdata', ([], ))])
1088
index = CombinedGraphIndex([index1, index2])
1089
self.assertEqual(set([(index1, ('name', ), 'data', ((('ref',),),)),
1090
(index1, ('ref', ), 'refdata', ((), ))]),
1091
set(index.iter_entries([('name', ), ('ref', )])))
1228
1093
def test_iter_missing_entry_empty(self):
1229
idx = index.CombinedGraphIndex([])
1230
self.assertEqual([], list(idx.iter_entries([('a', )])))
1094
index = CombinedGraphIndex([])
1095
self.assertEqual([], list(index.iter_entries([('a', )])))
1232
1097
def test_iter_missing_entry_one_index(self):
1233
idx1 = self.make_index('1')
1234
idx = index.CombinedGraphIndex([idx1])
1235
self.assertEqual([], list(idx.iter_entries([('a', )])))
1098
index1 = self.make_index('1')
1099
index = CombinedGraphIndex([index1])
1100
self.assertEqual([], list(index.iter_entries([('a', )])))
1237
1102
def test_iter_missing_entry_two_index(self):
1238
idx1 = self.make_index('1')
1239
idx2 = self.make_index('2')
1240
idx = index.CombinedGraphIndex([idx1, idx2])
1241
self.assertEqual([], list(idx.iter_entries([('a', )])))
1103
index1 = self.make_index('1')
1104
index2 = self.make_index('2')
1105
index = CombinedGraphIndex([index1, index2])
1106
self.assertEqual([], list(index.iter_entries([('a', )])))
1243
1108
def test_iter_entry_present_one_index_only(self):
1244
idx1 = self.make_index('1', nodes=[(('key', ), '', ())])
1245
idx2 = self.make_index('2', nodes=[])
1246
idx = index.CombinedGraphIndex([idx1, idx2])
1247
self.assertEqual([(idx1, ('key', ), '')],
1248
list(idx.iter_entries([('key', )])))
1109
index1 = self.make_index('1', nodes=[(('key', ), '', ())])
1110
index2 = self.make_index('2', nodes=[])
1111
index = CombinedGraphIndex([index1, index2])
1112
self.assertEqual([(index1, ('key', ), '')],
1113
list(index.iter_entries([('key', )])))
1249
1114
# and in the other direction
1250
idx = index.CombinedGraphIndex([idx2, idx1])
1251
self.assertEqual([(idx1, ('key', ), '')],
1252
list(idx.iter_entries([('key', )])))
1115
index = CombinedGraphIndex([index2, index1])
1116
self.assertEqual([(index1, ('key', ), '')],
1117
list(index.iter_entries([('key', )])))
1254
1119
def test_key_count_empty(self):
1255
idx1 = self.make_index('1', nodes=[])
1256
idx2 = self.make_index('2', nodes=[])
1257
idx = index.CombinedGraphIndex([idx1, idx2])
1258
self.assertEqual(0, idx.key_count())
1120
index1 = self.make_index('1', nodes=[])
1121
index2 = self.make_index('2', nodes=[])
1122
index = CombinedGraphIndex([index1, index2])
1123
self.assertEqual(0, index.key_count())
1260
1125
def test_key_count_sums_index_keys(self):
1261
idx1 = self.make_index('1', nodes=[
1126
index1 = self.make_index('1', nodes=[
1262
1127
(('1',), '', ()),
1263
1128
(('2',), '', ())])
1264
idx2 = self.make_index('2', nodes=[(('1',), '', ())])
1265
idx = index.CombinedGraphIndex([idx1, idx2])
1266
self.assertEqual(3, idx.key_count())
1129
index2 = self.make_index('2', nodes=[(('1',), '', ())])
1130
index = CombinedGraphIndex([index1, index2])
1131
self.assertEqual(3, index.key_count())
1268
1133
def test_validate_bad_child_index_errors(self):
1269
1134
trans = self.get_transport()
1270
1135
trans.put_bytes('name', "not an index\n")
1271
idx1 = index.GraphIndex(trans, 'name', 13)
1272
idx = index.CombinedGraphIndex([idx1])
1273
self.assertRaises(errors.BadIndexFormatSignature, idx.validate)
1136
index1 = GraphIndex(trans, 'name', 13)
1137
index = CombinedGraphIndex([index1])
1138
self.assertRaises(errors.BadIndexFormatSignature, index.validate)
1275
1140
def test_validate_empty(self):
1276
idx = index.CombinedGraphIndex([])
1141
index = CombinedGraphIndex([])
1279
1144
def test_key_count_reloads(self):
1280
idx, reload_counter = self.make_combined_index_with_missing()
1281
self.assertEqual(2, idx.key_count())
1145
index, reload_counter = self.make_combined_index_with_missing()
1146
self.assertEqual(2, index.key_count())
1282
1147
self.assertEqual([1, 1, 0], reload_counter)
1284
1149
def test_key_count_no_reload(self):
1285
idx, reload_counter = self.make_combined_index_with_missing()
1286
idx._reload_func = None
1150
index, reload_counter = self.make_combined_index_with_missing()
1151
index._reload_func = None
1287
1152
# Without a _reload_func we just raise the exception
1288
self.assertRaises(errors.NoSuchFile, idx.key_count)
1153
self.assertRaises(errors.NoSuchFile, index.key_count)
1290
1155
def test_key_count_reloads_and_fails(self):
1291
1156
# We have deleted all underlying indexes, so we will try to reload, but
1292
1157
# still fail. This is mostly to test we don't get stuck in an infinite
1293
1158
# loop trying to reload
1294
idx, reload_counter = self.make_combined_index_with_missing(
1296
self.assertRaises(errors.NoSuchFile, idx.key_count)
1159
index, reload_counter = self.make_combined_index_with_missing(
1161
self.assertRaises(errors.NoSuchFile, index.key_count)
1297
1162
self.assertEqual([2, 1, 1], reload_counter)
1299
1164
def test_iter_entries_reloads(self):
1387
1252
self.assertListRaises(errors.NoSuchFile, index.iter_entries_prefix,
1391
def make_index_with_simple_nodes(self, name, num_nodes=1):
1392
"""Make an index named after 'name', with keys named after 'name' too.
1394
Nodes will have a value of '' and no references.
1397
(('index-%s-key-%s' % (name, n),), '', ())
1398
for n in range(1, num_nodes+1)]
1399
return self.make_index('index-%s' % name, 0, nodes=nodes)
1401
def test_reorder_after_iter_entries(self):
1402
# Four indices: [key1] in idx1, [key2,key3] in idx2, [] in idx3,
1404
idx = index.CombinedGraphIndex([])
1405
idx.insert_index(0, self.make_index_with_simple_nodes('1'), '1')
1406
idx.insert_index(1, self.make_index_with_simple_nodes('2'), '2')
1407
idx.insert_index(2, self.make_index_with_simple_nodes('3'), '3')
1408
idx.insert_index(3, self.make_index_with_simple_nodes('4'), '4')
1409
idx1, idx2, idx3, idx4 = idx._indices
1410
# Query a key from idx4 and idx2.
1411
self.assertLength(2, list(idx.iter_entries(
1412
[('index-4-key-1',), ('index-2-key-1',)])))
1413
# Now idx2 and idx4 should be moved to the front (and idx1 should
1414
# still be before idx3).
1415
self.assertEqual([idx2, idx4, idx1, idx3], idx._indices)
1416
self.assertEqual(['2', '4', '1', '3'], idx._index_names)
1418
def test_reorder_propagates_to_siblings(self):
1419
# Two CombinedGraphIndex objects, with the same number of indicies with
1421
cgi1 = index.CombinedGraphIndex([])
1422
cgi2 = index.CombinedGraphIndex([])
1423
cgi1.insert_index(0, self.make_index_with_simple_nodes('1-1'), 'one')
1424
cgi1.insert_index(1, self.make_index_with_simple_nodes('1-2'), 'two')
1425
cgi2.insert_index(0, self.make_index_with_simple_nodes('2-1'), 'one')
1426
cgi2.insert_index(1, self.make_index_with_simple_nodes('2-2'), 'two')
1427
index2_1, index2_2 = cgi2._indices
1428
cgi1.set_sibling_indices([cgi2])
1429
# Trigger a reordering in cgi1. cgi2 will be reordered as well.
1430
list(cgi1.iter_entries([('index-1-2-key-1',)]))
1431
self.assertEqual([index2_2, index2_1], cgi2._indices)
1432
self.assertEqual(['two', 'one'], cgi2._index_names)
1434
1255
def test_validate_reloads(self):
1435
idx, reload_counter = self.make_combined_index_with_missing()
1256
index, reload_counter = self.make_combined_index_with_missing()
1437
1258
self.assertEqual([1, 1, 0], reload_counter)
1439
1260
def test_validate_reloads_midway(self):
1440
idx, reload_counter = self.make_combined_index_with_missing(['2'])
1261
index, reload_counter = self.make_combined_index_with_missing(['2'])
1443
1264
def test_validate_no_reload(self):
1444
idx, reload_counter = self.make_combined_index_with_missing()
1445
idx._reload_func = None
1446
self.assertRaises(errors.NoSuchFile, idx.validate)
1265
index, reload_counter = self.make_combined_index_with_missing()
1266
index._reload_func = None
1267
self.assertRaises(errors.NoSuchFile, index.validate)
1448
1269
def test_validate_reloads_and_fails(self):
1449
idx, reload_counter = self.make_combined_index_with_missing(
1451
self.assertRaises(errors.NoSuchFile, idx.validate)
1453
def test_find_ancestors_across_indexes(self):
1458
index1 = self.make_index('12', ref_lists=1, nodes=[
1459
(key1, 'value', ([],)),
1460
(key2, 'value', ([key1],)),
1462
index2 = self.make_index('34', ref_lists=1, nodes=[
1463
(key3, 'value', ([key2],)),
1464
(key4, 'value', ([key3],)),
1466
c_index = index.CombinedGraphIndex([index1, index2])
1467
parent_map, missing_keys = c_index.find_ancestry([key1], 0)
1468
self.assertEqual({key1: ()}, parent_map)
1469
self.assertEqual(set(), missing_keys)
1470
# Now look for a key from index2 which requires us to find the key in
1471
# the second index, and then continue searching for parents in the
1473
parent_map, missing_keys = c_index.find_ancestry([key3], 0)
1474
self.assertEqual({key1: (), key2: (key1,), key3: (key2,)}, parent_map)
1475
self.assertEqual(set(), missing_keys)
1477
def test_find_ancestors_missing_keys(self):
1482
index1 = self.make_index('12', ref_lists=1, nodes=[
1483
(key1, 'value', ([],)),
1484
(key2, 'value', ([key1],)),
1486
index2 = self.make_index('34', ref_lists=1, nodes=[
1487
(key3, 'value', ([key2],)),
1489
c_index = index.CombinedGraphIndex([index1, index2])
1490
# Searching for a key which is actually not present at all should
1491
# eventually converge
1492
parent_map, missing_keys = c_index.find_ancestry([key4], 0)
1493
self.assertEqual({}, parent_map)
1494
self.assertEqual(set([key4]), missing_keys)
1496
def test_find_ancestors_no_indexes(self):
1497
c_index = index.CombinedGraphIndex([])
1499
parent_map, missing_keys = c_index.find_ancestry([key1], 0)
1500
self.assertEqual({}, parent_map)
1501
self.assertEqual(set([key1]), missing_keys)
1503
def test_find_ancestors_ghost_parent(self):
1508
index1 = self.make_index('12', ref_lists=1, nodes=[
1509
(key1, 'value', ([],)),
1510
(key2, 'value', ([key1],)),
1512
index2 = self.make_index('34', ref_lists=1, nodes=[
1513
(key4, 'value', ([key2, key3],)),
1515
c_index = index.CombinedGraphIndex([index1, index2])
1516
# Searching for a key which is actually not present at all should
1517
# eventually converge
1518
parent_map, missing_keys = c_index.find_ancestry([key4], 0)
1519
self.assertEqual({key4: (key2, key3), key2: (key1,), key1: ()},
1521
self.assertEqual(set([key3]), missing_keys)
1523
def test__find_ancestors_empty_index(self):
1524
idx = self.make_index('test', ref_lists=1, key_elements=1, nodes=[])
1526
missing_keys = set()
1527
search_keys = idx._find_ancestors([('one',), ('two',)], 0, parent_map,
1529
self.assertEqual(set(), search_keys)
1530
self.assertEqual({}, parent_map)
1531
self.assertEqual(set([('one',), ('two',)]), missing_keys)
1534
class TestInMemoryGraphIndex(tests.TestCaseWithMemoryTransport):
1270
index, reload_counter = self.make_combined_index_with_missing(
1272
self.assertRaises(errors.NoSuchFile, index.validate)
1275
class TestInMemoryGraphIndex(TestCaseWithMemoryTransport):
1536
1277
def make_index(self, ref_lists=0, key_elements=1, nodes=[]):
1537
result = index.InMemoryGraphIndex(ref_lists, key_elements=key_elements)
1278
result = InMemoryGraphIndex(ref_lists, key_elements=key_elements)
1538
1279
result.add_nodes(nodes)