~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_chk_map.py

  • Committer: Robert Collins
  • Date: 2009-05-11 01:59:06 UTC
  • mto: This revision was merged to the branch mainline in revision 4593.
  • Revision ID: robertc@robertcollins.net-20090511015906-6zi6a9b8tuuhipc8
Less lock thrashing in check.py.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2008, 2009 Canonical Ltd
 
1
# Copyright (C) 2008 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
20
20
 
21
21
from bzrlib import (
22
22
    chk_map,
23
 
    errors,
24
 
    groupcompress,
25
23
    osutils,
26
24
    tests,
27
25
    )
55
53
    def test_not_a_prefix(self):
56
54
        self.assertCommonPrefix('b', 'begin', 'b')
57
55
 
58
 
    def test_empty(self):
59
 
        self.assertCommonPrefix('', '', 'end')
60
 
        self.assertCommonPrefix('', 'begin', '')
61
 
        self.assertCommonPrefix('', '', '')
62
 
 
63
 
 
64
 
class TestCaseWithStore(tests.TestCaseWithMemoryTransport):
 
56
 
 
57
class TestCaseWithStore(tests.TestCaseWithTransport):
65
58
 
66
59
    def get_chk_bytes(self):
67
 
        # This creates a standalone CHK store.
68
 
        factory = groupcompress.make_pack_factory(False, False, 1)
69
 
        self.chk_bytes = factory(self.get_transport())
70
 
        return self.chk_bytes
 
60
        # The easiest way to get a CHK store is a development6 repository and
 
61
        # then work with the chk_bytes attribute directly.
 
62
        repo = self.make_repository(".", format="development6-rich-root")
 
63
        repo.lock_write()
 
64
        self.addCleanup(repo.unlock)
 
65
        repo.start_write_group()
 
66
        self.addCleanup(repo.abort_write_group)
 
67
        return repo.chk_bytes
71
68
 
72
69
    def _get_map(self, a_dict, maximum_size=0, chk_bytes=None, key_width=1,
73
70
                 search_key_func=None):
76
73
        root_key = CHKMap.from_dict(chk_bytes, a_dict,
77
74
            maximum_size=maximum_size, key_width=key_width,
78
75
            search_key_func=search_key_func)
79
 
        root_key2 = CHKMap._create_via_map(chk_bytes, a_dict,
80
 
            maximum_size=maximum_size, key_width=key_width,
81
 
            search_key_func=search_key_func)
82
 
        self.assertEqual(root_key, root_key2, "CHKMap.from_dict() did not"
83
 
                         " match CHKMap._create_via_map")
84
76
        chkmap = CHKMap(chk_bytes, root_key, search_key_func=search_key_func)
85
77
        return chkmap
86
78
 
95
87
        return dict(node.iteritems(*args))
96
88
 
97
89
 
98
 
class TestCaseWithExampleMaps(TestCaseWithStore):
99
 
 
100
 
    def get_chk_bytes(self):
101
 
        if getattr(self, '_chk_bytes', None) is None:
102
 
            self._chk_bytes = super(TestCaseWithExampleMaps,
103
 
                                    self).get_chk_bytes()
104
 
        return self._chk_bytes
105
 
 
106
 
    def get_map(self, a_dict, maximum_size=100, search_key_func=None):
107
 
        c_map = self._get_map(a_dict, maximum_size=maximum_size,
108
 
                              chk_bytes=self.get_chk_bytes(),
109
 
                              search_key_func=search_key_func)
110
 
        return c_map
111
 
 
112
 
    def make_root_only_map(self, search_key_func=None):
113
 
        return self.get_map({
114
 
            ('aaa',): 'initial aaa content',
115
 
            ('abb',): 'initial abb content',
116
 
        }, search_key_func=search_key_func)
117
 
 
118
 
    def make_root_only_aaa_ddd_map(self, search_key_func=None):
119
 
        return self.get_map({
120
 
            ('aaa',): 'initial aaa content',
121
 
            ('ddd',): 'initial ddd content',
122
 
        }, search_key_func=search_key_func)
123
 
 
124
 
    def make_one_deep_map(self, search_key_func=None):
125
 
        # Same as root_only_map, except it forces an InternalNode at the root
126
 
        return self.get_map({
127
 
            ('aaa',): 'initial aaa content',
128
 
            ('abb',): 'initial abb content',
129
 
            ('ccc',): 'initial ccc content',
130
 
            ('ddd',): 'initial ddd content',
131
 
        }, search_key_func=search_key_func)
132
 
 
133
 
    def make_two_deep_map(self, search_key_func=None):
134
 
        # Carefully chosen so that it creates a 2-deep map for both
135
 
        # _search_key_plain and for _search_key_16
136
 
        # Also so that things line up with make_one_deep_two_prefix_map
137
 
        return self.get_map({
138
 
            ('aaa',): 'initial aaa content',
139
 
            ('abb',): 'initial abb content',
140
 
            ('acc',): 'initial acc content',
141
 
            ('ace',): 'initial ace content',
142
 
            ('add',): 'initial add content',
143
 
            ('adh',): 'initial adh content',
144
 
            ('adl',): 'initial adl content',
145
 
            ('ccc',): 'initial ccc content',
146
 
            ('ddd',): 'initial ddd content',
147
 
        }, search_key_func=search_key_func)
148
 
 
149
 
    def make_one_deep_two_prefix_map(self, search_key_func=None):
150
 
        """Create a map with one internal node, but references are extra long.
151
 
 
152
 
        Otherwise has similar content to make_two_deep_map.
153
 
        """
154
 
        return self.get_map({
155
 
            ('aaa',): 'initial aaa content',
156
 
            ('add',): 'initial add content',
157
 
            ('adh',): 'initial adh content',
158
 
            ('adl',): 'initial adl content',
159
 
        }, search_key_func=search_key_func)
160
 
 
161
 
    def make_one_deep_one_prefix_map(self, search_key_func=None):
162
 
        """Create a map with one internal node, but references are extra long.
163
 
 
164
 
        Similar to make_one_deep_two_prefix_map, except the split is at the
165
 
        first char, rather than the second.
166
 
        """
167
 
        return self.get_map({
168
 
            ('add',): 'initial add content',
169
 
            ('adh',): 'initial adh content',
170
 
            ('adl',): 'initial adl content',
171
 
            ('bbb',): 'initial bbb content',
172
 
        }, search_key_func=search_key_func)
173
 
 
174
 
 
175
 
class TestTestCaseWithExampleMaps(TestCaseWithExampleMaps):
176
 
    """Actual tests for the provided examples."""
177
 
 
178
 
    def test_root_only_map_plain(self):
179
 
        c_map = self.make_root_only_map()
180
 
        self.assertEqualDiff(
181
 
            "'' LeafNode\n"
182
 
            "      ('aaa',) 'initial aaa content'\n"
183
 
            "      ('abb',) 'initial abb content'\n",
184
 
            c_map._dump_tree())
185
 
 
186
 
    def test_root_only_map_16(self):
187
 
        c_map = self.make_root_only_map(search_key_func=chk_map._search_key_16)
188
 
        self.assertEqualDiff(
189
 
            "'' LeafNode\n"
190
 
            "      ('aaa',) 'initial aaa content'\n"
191
 
            "      ('abb',) 'initial abb content'\n",
192
 
            c_map._dump_tree())
193
 
 
194
 
    def test_one_deep_map_plain(self):
195
 
        c_map = self.make_one_deep_map()
196
 
        self.assertEqualDiff(
197
 
            "'' InternalNode\n"
198
 
            "  'a' LeafNode\n"
199
 
            "      ('aaa',) 'initial aaa content'\n"
200
 
            "      ('abb',) 'initial abb content'\n"
201
 
            "  'c' LeafNode\n"
202
 
            "      ('ccc',) 'initial ccc content'\n"
203
 
            "  'd' LeafNode\n"
204
 
            "      ('ddd',) 'initial ddd content'\n",
205
 
            c_map._dump_tree())
206
 
 
207
 
    def test_one_deep_map_16(self):
208
 
        c_map = self.make_one_deep_map(search_key_func=chk_map._search_key_16)
209
 
        self.assertEqualDiff(
210
 
            "'' InternalNode\n"
211
 
            "  '2' LeafNode\n"
212
 
            "      ('ccc',) 'initial ccc content'\n"
213
 
            "  '4' LeafNode\n"
214
 
            "      ('abb',) 'initial abb content'\n"
215
 
            "  'F' LeafNode\n"
216
 
            "      ('aaa',) 'initial aaa content'\n"
217
 
            "      ('ddd',) 'initial ddd content'\n",
218
 
            c_map._dump_tree())
219
 
 
220
 
    def test_root_only_aaa_ddd_plain(self):
221
 
        c_map = self.make_root_only_aaa_ddd_map()
222
 
        self.assertEqualDiff(
223
 
            "'' LeafNode\n"
224
 
            "      ('aaa',) 'initial aaa content'\n"
225
 
            "      ('ddd',) 'initial ddd content'\n",
226
 
            c_map._dump_tree())
227
 
 
228
 
    def test_one_deep_map_16(self):
229
 
        c_map = self.make_root_only_aaa_ddd_map(
230
 
                search_key_func=chk_map._search_key_16)
231
 
        # We use 'aaa' and 'ddd' because they happen to map to 'F' when using
232
 
        # _search_key_16
233
 
        self.assertEqualDiff(
234
 
            "'' LeafNode\n"
235
 
            "      ('aaa',) 'initial aaa content'\n"
236
 
            "      ('ddd',) 'initial ddd content'\n",
237
 
            c_map._dump_tree())
238
 
 
239
 
    def test_two_deep_map_plain(self):
240
 
        c_map = self.make_two_deep_map()
241
 
        self.assertEqualDiff(
242
 
            "'' InternalNode\n"
243
 
            "  'a' InternalNode\n"
244
 
            "    'aa' LeafNode\n"
245
 
            "      ('aaa',) 'initial aaa content'\n"
246
 
            "    'ab' LeafNode\n"
247
 
            "      ('abb',) 'initial abb content'\n"
248
 
            "    'ac' LeafNode\n"
249
 
            "      ('acc',) 'initial acc content'\n"
250
 
            "      ('ace',) 'initial ace content'\n"
251
 
            "    'ad' LeafNode\n"
252
 
            "      ('add',) 'initial add content'\n"
253
 
            "      ('adh',) 'initial adh content'\n"
254
 
            "      ('adl',) 'initial adl content'\n"
255
 
            "  'c' LeafNode\n"
256
 
            "      ('ccc',) 'initial ccc content'\n"
257
 
            "  'd' LeafNode\n"
258
 
            "      ('ddd',) 'initial ddd content'\n",
259
 
            c_map._dump_tree())
260
 
 
261
 
    def test_two_deep_map_16(self):
262
 
        c_map = self.make_two_deep_map(search_key_func=chk_map._search_key_16)
263
 
        self.assertEqualDiff(
264
 
            "'' InternalNode\n"
265
 
            "  '2' LeafNode\n"
266
 
            "      ('acc',) 'initial acc content'\n"
267
 
            "      ('ccc',) 'initial ccc content'\n"
268
 
            "  '4' LeafNode\n"
269
 
            "      ('abb',) 'initial abb content'\n"
270
 
            "  'C' LeafNode\n"
271
 
            "      ('ace',) 'initial ace content'\n"
272
 
            "  'F' InternalNode\n"
273
 
            "    'F0' LeafNode\n"
274
 
            "      ('aaa',) 'initial aaa content'\n"
275
 
            "    'F3' LeafNode\n"
276
 
            "      ('adl',) 'initial adl content'\n"
277
 
            "    'F4' LeafNode\n"
278
 
            "      ('adh',) 'initial adh content'\n"
279
 
            "    'FB' LeafNode\n"
280
 
            "      ('ddd',) 'initial ddd content'\n"
281
 
            "    'FD' LeafNode\n"
282
 
            "      ('add',) 'initial add content'\n",
283
 
            c_map._dump_tree())
284
 
 
285
 
    def test_one_deep_two_prefix_map_plain(self):
286
 
        c_map = self.make_one_deep_two_prefix_map()
287
 
        self.assertEqualDiff(
288
 
            "'' InternalNode\n"
289
 
            "  'aa' LeafNode\n"
290
 
            "      ('aaa',) 'initial aaa content'\n"
291
 
            "  'ad' LeafNode\n"
292
 
            "      ('add',) 'initial add content'\n"
293
 
            "      ('adh',) 'initial adh content'\n"
294
 
            "      ('adl',) 'initial adl content'\n",
295
 
            c_map._dump_tree())
296
 
 
297
 
    def test_one_deep_two_prefix_map_16(self):
298
 
        c_map = self.make_one_deep_two_prefix_map(
299
 
            search_key_func=chk_map._search_key_16)
300
 
        self.assertEqualDiff(
301
 
            "'' InternalNode\n"
302
 
            "  'F0' LeafNode\n"
303
 
            "      ('aaa',) 'initial aaa content'\n"
304
 
            "  'F3' LeafNode\n"
305
 
            "      ('adl',) 'initial adl content'\n"
306
 
            "  'F4' LeafNode\n"
307
 
            "      ('adh',) 'initial adh content'\n"
308
 
            "  'FD' LeafNode\n"
309
 
            "      ('add',) 'initial add content'\n",
310
 
            c_map._dump_tree())
311
 
 
312
 
    def test_one_deep_one_prefix_map_plain(self):
313
 
        c_map = self.make_one_deep_one_prefix_map()
314
 
        self.assertEqualDiff(
315
 
            "'' InternalNode\n"
316
 
            "  'a' LeafNode\n"
317
 
            "      ('add',) 'initial add content'\n"
318
 
            "      ('adh',) 'initial adh content'\n"
319
 
            "      ('adl',) 'initial adl content'\n"
320
 
            "  'b' LeafNode\n"
321
 
            "      ('bbb',) 'initial bbb content'\n",
322
 
            c_map._dump_tree())
323
 
 
324
 
    def test_one_deep_one_prefix_map_16(self):
325
 
        c_map = self.make_one_deep_one_prefix_map(
326
 
            search_key_func=chk_map._search_key_16)
327
 
        self.assertEqualDiff(
328
 
            "'' InternalNode\n"
329
 
            "  '4' LeafNode\n"
330
 
            "      ('bbb',) 'initial bbb content'\n"
331
 
            "  'F' LeafNode\n"
332
 
            "      ('add',) 'initial add content'\n"
333
 
            "      ('adh',) 'initial adh content'\n"
334
 
            "      ('adl',) 'initial adl content'\n",
335
 
            c_map._dump_tree())
336
 
 
337
 
 
338
90
class TestMap(TestCaseWithStore):
339
91
 
340
92
    def assertHasABMap(self, chk_bytes):
466
218
        # updated key.
467
219
        self.assertEqual(new_root, chkmap._root_node._key)
468
220
 
469
 
    def test_apply_new_keys_must_be_new(self):
470
 
        # applying a delta (None, "a", "b") to a map with 'a' in it generates
471
 
        # an error.
472
 
        chk_bytes = self.get_chk_bytes()
473
 
        root_key = CHKMap.from_dict(chk_bytes, {("a",):"b"})
474
 
        chkmap = CHKMap(chk_bytes, root_key)
475
 
        self.assertRaises(errors.InconsistentDelta, chkmap.apply_delta,
476
 
            [(None, ("a",), "b")])
477
 
        # As an error occured, the update should have left us without changing
478
 
        # anything (the root should be unchanged).
479
 
        self.assertEqual(root_key, chkmap._root_node._key)
480
 
 
481
221
    def test_apply_delta_is_deterministic(self):
482
222
        chk_bytes = self.get_chk_bytes()
483
223
        chkmap1 = CHKMap(chk_bytes, None)
1815
1555
        child.map(None, ("baz",), "val")
1816
1556
        node.add_node("b", child)
1817
1557
 
1818
 
        # Note that 'ram' doesn't match anything, so it should be freely
1819
 
        # ignored
1820
 
        key_filter = (('foo',), ('fob',), ('bar',), ('baz',), ('ram',))
 
1558
        key_filter = (('foo',), ('fob',), ('bar',), ('baz',))
1821
1559
        for child, node_key_filter in node._iter_nodes(None,
1822
1560
                                                       key_filter=key_filter):
1823
 
            # each child could match two key filters, so make sure they were
 
1561
            # each child could matches two key filters, so make sure they were
1824
1562
            # both included.
1825
1563
            self.assertEqual(2, len(node_key_filter))
1826
1564
 
1827
 
    def make_fo_fa_node(self):
1828
 
        node = InternalNode('f')
1829
 
        child = LeafNode()
1830
 
        child.set_maximum_size(100)
1831
 
        child.map(None, ("foo",), "val")
1832
 
        child.map(None, ("fob",), "val")
1833
 
        node.add_node('fo', child)
1834
 
        child = LeafNode()
1835
 
        child.set_maximum_size(100)
1836
 
        child.map(None, ("far",), "val")
1837
 
        child.map(None, ("faz",), "val")
1838
 
        node.add_node("fa", child)
1839
 
        return node
1840
 
 
1841
 
    def test__iter_nodes_single_entry(self):
1842
 
        node = self.make_fo_fa_node()
1843
 
        key_filter = [('foo',)]
1844
 
        nodes = list(node._iter_nodes(None, key_filter=key_filter))
1845
 
        self.assertEqual(1, len(nodes))
1846
 
        self.assertEqual(key_filter, nodes[0][1])
1847
 
 
1848
 
    def test__iter_nodes_single_entry_misses(self):
1849
 
        node = self.make_fo_fa_node()
1850
 
        key_filter = [('bar',)]
1851
 
        nodes = list(node._iter_nodes(None, key_filter=key_filter))
1852
 
        self.assertEqual(0, len(nodes))
1853
 
 
1854
 
    def test__iter_nodes_mixed_key_width(self):
1855
 
        node = self.make_fo_fa_node()
1856
 
        key_filter = [('foo', 'bar'), ('foo',), ('fo',), ('b',)]
1857
 
        nodes = list(node._iter_nodes(None, key_filter=key_filter))
1858
 
        self.assertEqual(1, len(nodes))
1859
 
        matches = key_filter[:]
1860
 
        matches.remove(('b',))
1861
 
        self.assertEqual(sorted(matches), sorted(nodes[0][1]))
1862
 
 
1863
 
    def test__iter_nodes_match_all(self):
1864
 
        node = self.make_fo_fa_node()
1865
 
        key_filter = [('foo', 'bar'), ('foo',), ('fo',), ('f',)]
1866
 
        nodes = list(node._iter_nodes(None, key_filter=key_filter))
1867
 
        self.assertEqual(2, len(nodes))
1868
 
 
1869
 
    def test__iter_nodes_fixed_widths_and_misses(self):
1870
 
        node = self.make_fo_fa_node()
1871
 
        # foo and faa should both match one child, baz should miss
1872
 
        key_filter = [('foo',), ('faa',), ('baz',)]
1873
 
        nodes = list(node._iter_nodes(None, key_filter=key_filter))
1874
 
        self.assertEqual(2, len(nodes))
1875
 
        for node, matches in nodes:
1876
 
            self.assertEqual(1, len(matches))
1877
 
 
1878
1565
    def test_iteritems_empty_new(self):
1879
1566
        node = InternalNode()
1880
1567
        self.assertEqual([], sorted(node.iteritems(None)))
2136
1823
# 1-4K get0
2137
1824
 
2138
1825
 
2139
 
class TestCHKMapDifference(TestCaseWithExampleMaps):
2140
 
 
2141
 
    def get_difference(self, new_roots, old_roots,
2142
 
                       search_key_func=None):
2143
 
        if search_key_func is None:
2144
 
            search_key_func = chk_map._search_key_plain
2145
 
        return chk_map.CHKMapDifference(self.get_chk_bytes(),
2146
 
            new_roots, old_roots, search_key_func)
2147
 
 
2148
 
    def test__init__(self):
2149
 
        c_map = self.make_root_only_map()
2150
 
        key1 = c_map.key()
2151
 
        c_map.map(('aaa',), 'new aaa content')
2152
 
        key2 = c_map._save()
2153
 
        diff = self.get_difference([key2], [key1])
2154
 
        self.assertEqual(set([key1]), diff._all_old_chks)
2155
 
        self.assertEqual([], diff._old_queue)
2156
 
        self.assertEqual([], diff._new_queue)
2157
 
 
2158
 
    def help__read_all_roots(self, search_key_func):
2159
 
        c_map = self.make_root_only_map(search_key_func=search_key_func)
2160
 
        key1 = c_map.key()
2161
 
        c_map.map(('aaa',), 'new aaa content')
2162
 
        key2 = c_map._save()
2163
 
        diff = self.get_difference([key2], [key1], search_key_func)
2164
 
        root_results = [record.key for record in diff._read_all_roots()]
2165
 
        self.assertEqual([key2], root_results)
2166
 
        # We should have queued up only items that aren't in the old
2167
 
        # set
2168
 
        self.assertEqual([(('aaa',), 'new aaa content')],
2169
 
                         diff._new_item_queue)
2170
 
        self.assertEqual([], diff._new_queue)
2171
 
        # And there are no old references, so that queue should be
2172
 
        # empty
2173
 
        self.assertEqual([], diff._old_queue)
2174
 
 
2175
 
    def test__read_all_roots_plain(self):
2176
 
        self.help__read_all_roots(search_key_func=chk_map._search_key_plain)
2177
 
 
2178
 
    def test__read_all_roots_16(self):
2179
 
        self.help__read_all_roots(search_key_func=chk_map._search_key_16)
2180
 
 
2181
 
    def test__read_all_roots_skips_known_old(self):
2182
 
        c_map = self.make_one_deep_map(chk_map._search_key_plain)
2183
 
        key1 = c_map.key()
2184
 
        c_map2 = self.make_root_only_map(chk_map._search_key_plain)
2185
 
        key2 = c_map2.key()
2186
 
        diff = self.get_difference([key2], [key1], chk_map._search_key_plain)
2187
 
        root_results = [record.key for record in diff._read_all_roots()]
2188
 
        # We should have no results. key2 is completely contained within key1,
2189
 
        # and we should have seen that in the first pass
2190
 
        self.assertEqual([], root_results)
2191
 
 
2192
 
    def test__read_all_roots_prepares_queues(self):
2193
 
        c_map = self.make_one_deep_map(chk_map._search_key_plain)
2194
 
        key1 = c_map.key()
2195
 
        c_map._dump_tree() # load everything
2196
 
        key1_a = c_map._root_node._items['a'].key()
2197
 
        c_map.map(('abb',), 'new abb content')
2198
 
        key2 = c_map._save()
2199
 
        key2_a = c_map._root_node._items['a'].key()
2200
 
        diff = self.get_difference([key2], [key1], chk_map._search_key_plain)
2201
 
        root_results = [record.key for record in diff._read_all_roots()]
2202
 
        self.assertEqual([key2], root_results)
2203
 
        # At this point, we should have queued up only the 'a' Leaf on both
2204
 
        # sides, both 'c' and 'd' are known to not have changed on both sides
2205
 
        self.assertEqual([key2_a], diff._new_queue)
2206
 
        self.assertEqual([], diff._new_item_queue)
2207
 
        self.assertEqual([key1_a], diff._old_queue)
2208
 
 
2209
 
    def test__read_all_roots_multi_new_prepares_queues(self):
2210
 
        c_map = self.make_one_deep_map(chk_map._search_key_plain)
2211
 
        key1 = c_map.key()
2212
 
        c_map._dump_tree() # load everything
2213
 
        key1_a = c_map._root_node._items['a'].key()
2214
 
        key1_c = c_map._root_node._items['c'].key()
2215
 
        c_map.map(('abb',), 'new abb content')
2216
 
        key2 = c_map._save()
2217
 
        key2_a = c_map._root_node._items['a'].key()
2218
 
        key2_c = c_map._root_node._items['c'].key()
2219
 
        c_map = chk_map.CHKMap(self.get_chk_bytes(), key1,
2220
 
                               chk_map._search_key_plain)
2221
 
        c_map.map(('ccc',), 'new ccc content')
2222
 
        key3 = c_map._save()
2223
 
        key3_a = c_map._root_node._items['a'].key()
2224
 
        key3_c = c_map._root_node._items['c'].key()
2225
 
        diff = self.get_difference([key2, key3], [key1],
2226
 
                                   chk_map._search_key_plain)
2227
 
        root_results = [record.key for record in diff._read_all_roots()]
2228
 
        self.assertEqual(sorted([key2, key3]), sorted(root_results))
2229
 
        # We should have queued up key2_a, and key3_c, but not key2_c or key3_c
2230
 
        self.assertEqual([key2_a, key3_c], diff._new_queue)
2231
 
        self.assertEqual([], diff._new_item_queue)
2232
 
        # And we should have queued up both a and c for the old set
2233
 
        self.assertEqual([key1_a, key1_c], diff._old_queue)
2234
 
 
2235
 
    def test__read_all_roots_different_depths(self):
2236
 
        c_map = self.make_two_deep_map(chk_map._search_key_plain)
2237
 
        c_map._dump_tree() # load everything
2238
 
        key1 = c_map.key()
2239
 
        key1_a = c_map._root_node._items['a'].key()
2240
 
        key1_c = c_map._root_node._items['c'].key()
2241
 
        key1_d = c_map._root_node._items['d'].key()
2242
 
 
2243
 
        c_map2 = self.make_one_deep_two_prefix_map(chk_map._search_key_plain)
2244
 
        c_map2._dump_tree()
2245
 
        key2 = c_map2.key()
2246
 
        key2_aa = c_map2._root_node._items['aa'].key()
2247
 
        key2_ad = c_map2._root_node._items['ad'].key()
2248
 
 
2249
 
        diff = self.get_difference([key2], [key1], chk_map._search_key_plain)
2250
 
        root_results = [record.key for record in diff._read_all_roots()]
2251
 
        self.assertEqual([key2], root_results)
2252
 
        # Only the 'a' subset should be queued up, since 'c' and 'd' cannot be
2253
 
        # present
2254
 
        self.assertEqual([key1_a], diff._old_queue)
2255
 
        self.assertEqual([key2_aa, key2_ad], diff._new_queue)
2256
 
        self.assertEqual([], diff._new_item_queue)
2257
 
 
2258
 
        diff = self.get_difference([key1], [key2], chk_map._search_key_plain)
2259
 
        root_results = [record.key for record in diff._read_all_roots()]
2260
 
        self.assertEqual([key1], root_results)
2261
 
 
2262
 
        self.assertEqual([key2_aa, key2_ad], diff._old_queue)
2263
 
        self.assertEqual([key1_a, key1_c, key1_d], diff._new_queue)
2264
 
        self.assertEqual([], diff._new_item_queue)
2265
 
 
2266
 
    def test__read_all_roots_different_depths_16(self):
2267
 
        c_map = self.make_two_deep_map(chk_map._search_key_16)
2268
 
        c_map._dump_tree() # load everything
2269
 
        key1 = c_map.key()
2270
 
        key1_2 = c_map._root_node._items['2'].key()
2271
 
        key1_4 = c_map._root_node._items['4'].key()
2272
 
        key1_C = c_map._root_node._items['C'].key()
2273
 
        key1_F = c_map._root_node._items['F'].key()
2274
 
 
2275
 
        c_map2 = self.make_one_deep_two_prefix_map(chk_map._search_key_16)
2276
 
        c_map2._dump_tree()
2277
 
        key2 = c_map2.key()
2278
 
        key2_F0 = c_map2._root_node._items['F0'].key()
2279
 
        key2_F3 = c_map2._root_node._items['F3'].key()
2280
 
        key2_F4 = c_map2._root_node._items['F4'].key()
2281
 
        key2_FD = c_map2._root_node._items['FD'].key()
2282
 
 
2283
 
        diff = self.get_difference([key2], [key1], chk_map._search_key_16)
2284
 
        root_results = [record.key for record in diff._read_all_roots()]
2285
 
        self.assertEqual([key2], root_results)
2286
 
        # Only the subset of keys that may be present should be queued up.
2287
 
        self.assertEqual([key1_F], diff._old_queue)
2288
 
        self.assertEqual(sorted([key2_F0, key2_F3, key2_F4, key2_FD]),
2289
 
                         sorted(diff._new_queue))
2290
 
        self.assertEqual([], diff._new_item_queue)
2291
 
 
2292
 
        diff = self.get_difference([key1], [key2], chk_map._search_key_16)
2293
 
        root_results = [record.key for record in diff._read_all_roots()]
2294
 
        self.assertEqual([key1], root_results)
2295
 
 
2296
 
        self.assertEqual(sorted([key2_F0, key2_F3, key2_F4, key2_FD]),
2297
 
                         sorted(diff._old_queue))
2298
 
        self.assertEqual(sorted([key1_2, key1_4, key1_C, key1_F]),
2299
 
                         sorted(diff._new_queue))
2300
 
        self.assertEqual([], diff._new_item_queue)
2301
 
 
2302
 
    def test__read_all_roots_mixed_depth(self):
2303
 
        c_map = self.make_one_deep_two_prefix_map(chk_map._search_key_plain)
2304
 
        c_map._dump_tree() # load everything
2305
 
        key1 = c_map.key()
2306
 
        key1_aa = c_map._root_node._items['aa'].key()
2307
 
        key1_ad = c_map._root_node._items['ad'].key()
2308
 
 
2309
 
        c_map2 = self.make_one_deep_one_prefix_map(chk_map._search_key_plain)
2310
 
        c_map2._dump_tree()
2311
 
        key2 = c_map2.key()
2312
 
        key2_a = c_map2._root_node._items['a'].key()
2313
 
        key2_b = c_map2._root_node._items['b'].key()
2314
 
 
2315
 
        diff = self.get_difference([key2], [key1], chk_map._search_key_plain)
2316
 
        root_results = [record.key for record in diff._read_all_roots()]
2317
 
        self.assertEqual([key2], root_results)
2318
 
        # 'ad' matches exactly 'a' on the other side, so it should be removed,
2319
 
        # and neither side should have it queued for walking
2320
 
        self.assertEqual([], diff._old_queue)
2321
 
        self.assertEqual([key2_b], diff._new_queue)
2322
 
        self.assertEqual([], diff._new_item_queue)
2323
 
 
2324
 
        diff = self.get_difference([key1], [key2], chk_map._search_key_plain)
2325
 
        root_results = [record.key for record in diff._read_all_roots()]
2326
 
        self.assertEqual([key1], root_results)
2327
 
        # Note: This is technically not the 'true minimal' set that we could
2328
 
        #       use The reason is that 'a' was matched exactly to 'ad' (by sha
2329
 
        #       sum).  However, the code gets complicated in the case of more
2330
 
        #       than one interesting key, so for now, we live with this
2331
 
        #       Consider revising, though benchmarking showing it to be a
2332
 
        #       real-world issue should be done
2333
 
        self.assertEqual([key2_a], diff._old_queue)
2334
 
        # self.assertEqual([], diff._old_queue)
2335
 
        self.assertEqual([key1_aa], diff._new_queue)
2336
 
        self.assertEqual([], diff._new_item_queue)
2337
 
 
2338
 
    def test__read_all_roots_yields_extra_deep_records(self):
2339
 
        # This is slightly controversial, as we will yield a chk page that we
2340
 
        # might later on find out could be filtered out. (If a root node is
2341
 
        # referenced deeper in the old set.)
2342
 
        # However, even with stacking, we always have all chk pages that we
2343
 
        # will need. So as long as we filter out the referenced keys, we'll
2344
 
        # never run into problems.
2345
 
        # This allows us to yield a root node record immediately, without any
2346
 
        # buffering.
2347
 
        c_map = self.make_two_deep_map(chk_map._search_key_plain)
2348
 
        c_map._dump_tree() # load all keys
2349
 
        key1 = c_map.key()
2350
 
        key1_a = c_map._root_node._items['a'].key()
2351
 
        c_map2 = self.get_map({
2352
 
            ('acc',): 'initial acc content',
2353
 
            ('ace',): 'initial ace content',
2354
 
        }, maximum_size=100)
2355
 
        self.assertEqualDiff(
2356
 
            "'' LeafNode\n"
2357
 
            "      ('acc',) 'initial acc content'\n"
2358
 
            "      ('ace',) 'initial ace content'\n",
2359
 
            c_map2._dump_tree())
2360
 
        key2 = c_map2.key()
2361
 
        diff = self.get_difference([key2], [key1], chk_map._search_key_plain)
2362
 
        root_results = [record.key for record in diff._read_all_roots()]
2363
 
        self.assertEqual([key2], root_results)
2364
 
        # However, even though we have yielded the root node to be fetched,
2365
 
        # we should have enqued all of the chk pages to be walked, so that we
2366
 
        # can find the keys if they are present
2367
 
        self.assertEqual([key1_a], diff._old_queue)
2368
 
        self.assertEqual([(('acc',), 'initial acc content'),
2369
 
                          (('ace',), 'initial ace content'),
2370
 
                         ], diff._new_item_queue)
2371
 
 
2372
 
    def test__read_all_roots_multiple_targets(self):
2373
 
        c_map = self.make_root_only_map()
2374
 
        key1 = c_map.key()
2375
 
        c_map = self.make_one_deep_map()
2376
 
        key2 = c_map.key()
2377
 
        c_map._dump_tree()
2378
 
        key2_c = c_map._root_node._items['c'].key()
2379
 
        key2_d = c_map._root_node._items['d'].key()
2380
 
        c_map.map(('ccc',), 'new ccc value')
2381
 
        key3 = c_map._save()
2382
 
        key3_c = c_map._root_node._items['c'].key()
2383
 
        diff = self.get_difference([key2, key3], [key1],
2384
 
                                   chk_map._search_key_plain)
2385
 
        root_results = [record.key for record in diff._read_all_roots()]
2386
 
        self.assertEqual(sorted([key2, key3]), sorted(root_results))
2387
 
        self.assertEqual([], diff._old_queue)
2388
 
        # the key 'd' is interesting from key2 and key3, but should only be
2389
 
        # entered into the queue 1 time
2390
 
        self.assertEqual(sorted([key2_c, key3_c, key2_d]),
2391
 
                         sorted(diff._new_queue))
2392
 
        self.assertEqual([], diff._new_item_queue)
2393
 
 
2394
 
    def test__read_all_roots_no_old(self):
2395
 
        # This is the 'initial branch' case. With nothing in the old
2396
 
        # set, we can just queue up all root nodes into interesting queue, and
2397
 
        # then have them fast-path flushed via _flush_new_queue
2398
 
        c_map = self.make_two_deep_map()
2399
 
        key1 = c_map.key()
2400
 
        diff = self.get_difference([key1], [], chk_map._search_key_plain)
2401
 
        root_results = [record.key for record in diff._read_all_roots()]
2402
 
        self.assertEqual([], root_results)
2403
 
        self.assertEqual([], diff._old_queue)
2404
 
        self.assertEqual([key1], diff._new_queue)
2405
 
        self.assertEqual([], diff._new_item_queue)
2406
 
 
2407
 
        c_map2 = self.make_one_deep_map()
2408
 
        key2 = c_map2.key()
2409
 
        diff = self.get_difference([key1, key2], [], chk_map._search_key_plain)
2410
 
        root_results = [record.key for record in diff._read_all_roots()]
2411
 
        self.assertEqual([], root_results)
2412
 
        self.assertEqual([], diff._old_queue)
2413
 
        self.assertEqual(sorted([key1, key2]), sorted(diff._new_queue))
2414
 
        self.assertEqual([], diff._new_item_queue)
2415
 
 
2416
 
    def test__read_all_roots_no_old_16(self):
2417
 
        c_map = self.make_two_deep_map(chk_map._search_key_16)
2418
 
        key1 = c_map.key()
2419
 
        diff = self.get_difference([key1], [], chk_map._search_key_16)
2420
 
        root_results = [record.key for record in diff._read_all_roots()]
2421
 
        self.assertEqual([], root_results)
2422
 
        self.assertEqual([], diff._old_queue)
2423
 
        self.assertEqual([key1], diff._new_queue)
2424
 
        self.assertEqual([], diff._new_item_queue)
2425
 
 
2426
 
        c_map2 = self.make_one_deep_map(chk_map._search_key_16)
2427
 
        key2 = c_map2.key()
2428
 
        diff = self.get_difference([key1, key2], [],
2429
 
                                   chk_map._search_key_16)
2430
 
        root_results = [record.key for record in diff._read_all_roots()]
2431
 
        self.assertEqual([], root_results)
2432
 
        self.assertEqual([], diff._old_queue)
2433
 
        self.assertEqual(sorted([key1, key2]),
2434
 
                         sorted(diff._new_queue))
2435
 
        self.assertEqual([], diff._new_item_queue)
2436
 
 
2437
 
    def test__read_all_roots_multiple_old(self):
2438
 
        c_map = self.make_two_deep_map()
2439
 
        key1 = c_map.key()
2440
 
        c_map._dump_tree() # load everything
2441
 
        key1_a = c_map._root_node._items['a'].key()
2442
 
        c_map.map(('ccc',), 'new ccc value')
2443
 
        key2 = c_map._save()
2444
 
        key2_a = c_map._root_node._items['a'].key()
2445
 
        c_map.map(('add',), 'new add value')
2446
 
        key3 = c_map._save()
2447
 
        key3_a = c_map._root_node._items['a'].key()
2448
 
        diff = self.get_difference([key3], [key1, key2],
2449
 
                                   chk_map._search_key_plain)
2450
 
        root_results = [record.key for record in diff._read_all_roots()]
2451
 
        self.assertEqual([key3], root_results)
2452
 
        # the 'a' keys should not be queued up 2 times, since they are
2453
 
        # identical
2454
 
        self.assertEqual([key1_a], diff._old_queue)
2455
 
        self.assertEqual([key3_a], diff._new_queue)
2456
 
        self.assertEqual([], diff._new_item_queue)
2457
 
 
2458
 
    def test__process_next_old_batched_no_dupes(self):
2459
 
        c_map = self.make_two_deep_map()
2460
 
        key1 = c_map.key()
2461
 
        c_map._dump_tree() # load everything
2462
 
        key1_a = c_map._root_node._items['a'].key()
2463
 
        key1_aa = c_map._root_node._items['a']._items['aa'].key()
2464
 
        key1_ab = c_map._root_node._items['a']._items['ab'].key()
2465
 
        key1_ac = c_map._root_node._items['a']._items['ac'].key()
2466
 
        key1_ad = c_map._root_node._items['a']._items['ad'].key()
2467
 
        c_map.map(('aaa',), 'new aaa value')
2468
 
        key2 = c_map._save()
2469
 
        key2_a = c_map._root_node._items['a'].key()
2470
 
        key2_aa = c_map._root_node._items['a']._items['aa'].key()
2471
 
        c_map.map(('acc',), 'new acc content')
2472
 
        key3 = c_map._save()
2473
 
        key3_a = c_map._root_node._items['a'].key()
2474
 
        key3_ac = c_map._root_node._items['a']._items['ac'].key()
2475
 
        diff = self.get_difference([key3], [key1, key2],
2476
 
                                   chk_map._search_key_plain)
2477
 
        root_results = [record.key for record in diff._read_all_roots()]
2478
 
        self.assertEqual([key3], root_results)
2479
 
        self.assertEqual(sorted([key1_a, key2_a]),
2480
 
                         sorted(diff._old_queue))
2481
 
        self.assertEqual([key3_a], diff._new_queue)
2482
 
        self.assertEqual([], diff._new_item_queue)
2483
 
        diff._process_next_old()
2484
 
        # All of the old records should be brought in and queued up,
2485
 
        # but we should not have any duplicates
2486
 
        self.assertEqual(sorted([key1_aa, key1_ab, key1_ac, key1_ad, key2_aa]),
2487
 
                         sorted(diff._old_queue))
2488
 
 
2489
 
 
2490
 
class TestIterInterestingNodes(TestCaseWithExampleMaps):
2491
 
 
2492
 
    def get_map_key(self, a_dict, maximum_size=10):
2493
 
        c_map = self.get_map(a_dict, maximum_size=maximum_size)
 
1826
class TestIterInterestingNodes(TestCaseWithStore):
 
1827
 
 
1828
    def get_chk_bytes(self):
 
1829
        if getattr(self, '_chk_bytes', None) is None:
 
1830
            self._chk_bytes = super(TestIterInterestingNodes,
 
1831
                                    self).get_chk_bytes()
 
1832
        return self._chk_bytes
 
1833
 
 
1834
    def get_map_key(self, a_dict):
 
1835
        c_map = self._get_map(a_dict, maximum_size=10,
 
1836
                              chk_bytes=self.get_chk_bytes())
2494
1837
        return c_map.key()
2495
1838
 
2496
 
    def assertIterInteresting(self, records, items, interesting_keys,
2497
 
                              old_keys):
 
1839
    def assertIterInteresting(self, expected, interesting_keys,
 
1840
                              uninteresting_keys):
2498
1841
        """Check the result of iter_interesting_nodes.
2499
1842
 
2500
 
        Note that we no longer care how many steps are taken, etc, just that
2501
 
        the right contents are returned.
2502
 
 
2503
 
        :param records: A list of record keys that should be yielded
2504
 
        :param items: A list of items (key,value) that should be yielded.
 
1843
        :param expected: A list of (record_keys, interesting_chk_pages,
 
1844
                                    interesting key value pairs)
2505
1845
        """
2506
1846
        store = self.get_chk_bytes()
2507
 
        store._search_key_func = chk_map._search_key_plain
2508
1847
        iter_nodes = chk_map.iter_interesting_nodes(store, interesting_keys,
2509
 
                                                    old_keys)
2510
 
        record_keys = []
2511
 
        all_items = []
2512
 
        for record, new_items in iter_nodes:
2513
 
            if record is not None:
2514
 
                record_keys.append(record.key)
2515
 
            if new_items:
2516
 
                all_items.extend(new_items)
2517
 
        self.assertEqual(sorted(records), sorted(record_keys))
2518
 
        self.assertEqual(sorted(items), sorted(all_items))
 
1848
                                                    uninteresting_keys)
 
1849
        nodes = list(iter_nodes)
 
1850
        for count, (exp, act) in enumerate(izip(expected, nodes)):
 
1851
            exp_record, exp_items = exp
 
1852
            record, items = act
 
1853
            exp_tuple = (exp_record, sorted(exp_items))
 
1854
            if record is None:
 
1855
                act_tuple = (None, sorted(items))
 
1856
            else:
 
1857
                act_tuple = (record.key, sorted(items))
 
1858
            self.assertEqual(exp_tuple, act_tuple,
 
1859
                             'entry %d did not match expected' % count)
 
1860
        self.assertEqual(len(expected), len(nodes))
2519
1861
 
2520
1862
    def test_empty_to_one_keys(self):
2521
1863
        target = self.get_map_key({('a',): 'content'})
2522
 
        self.assertIterInteresting([target],
2523
 
                                   [(('a',), 'content')],
2524
 
                                   [target], [])
 
1864
        self.assertIterInteresting(
 
1865
            [(target, [(('a',), 'content')]),
 
1866
            ], [target], [])
2525
1867
 
2526
1868
    def test_none_to_one_key(self):
2527
1869
        basis = self.get_map_key({})
2528
1870
        target = self.get_map_key({('a',): 'content'})
2529
 
        self.assertIterInteresting([target],
2530
 
                                   [(('a',), 'content')],
2531
 
                                   [target], [basis])
 
1871
        self.assertIterInteresting(
 
1872
            [(None, [(('a',), 'content')]),
 
1873
             (target, []),
 
1874
            ], [target], [basis])
2532
1875
 
2533
1876
    def test_one_to_none_key(self):
2534
1877
        basis = self.get_map_key({('a',): 'content'})
2535
1878
        target = self.get_map_key({})
2536
 
        self.assertIterInteresting([target],
2537
 
                                   [],
2538
 
                                   [target], [basis])
 
1879
        self.assertIterInteresting(
 
1880
            [(target, [])],
 
1881
            [target], [basis])
2539
1882
 
2540
1883
    def test_common_pages(self):
2541
1884
        basis = self.get_map_key({('a',): 'content',
2558
1901
            target_map._dump_tree())
2559
1902
        b_key = target_map._root_node._items['b'].key()
2560
1903
        # This should return the root node, and the node for the 'b' key
2561
 
        self.assertIterInteresting([target, b_key],
2562
 
                                   [(('b',), 'other content')],
2563
 
                                   [target], [basis])
 
1904
        self.assertIterInteresting(
 
1905
            [(target, []),
 
1906
             (b_key, [(('b',), 'other content')])],
 
1907
            [target], [basis])
2564
1908
 
2565
1909
    def test_common_sub_page(self):
2566
1910
        basis = self.get_map_key({('aaa',): 'common',
2584
1928
        # The key for the internal aa node
2585
1929
        a_key = target_map._root_node._items['a'].key()
2586
1930
        # The key for the leaf aab node
2587
 
        # aaa_key = target_map._root_node._items['a']._items['aaa'].key()
2588
1931
        aab_key = target_map._root_node._items['a']._items['aab'].key()
2589
 
        self.assertIterInteresting([target, a_key, aab_key],
2590
 
                                   [(('aab',), 'new')],
2591
 
                                   [target], [basis])
 
1932
        self.assertIterInteresting(
 
1933
            [(target, []),
 
1934
             (a_key, []),
 
1935
             (aab_key, [(('aab',), 'new')])],
 
1936
            [target], [basis])
2592
1937
 
2593
1938
    def test_common_leaf(self):
2594
1939
        basis = self.get_map_key({})
2632
1977
        a_key = target3_map._root_node._items['a'].key()
2633
1978
        aac_key = target3_map._root_node._items['a']._items['aac'].key()
2634
1979
        self.assertIterInteresting(
2635
 
            [target1, target2, target3, a_key, aac_key, b_key],
2636
 
            [(('aaa',), 'common'), (('bbb',), 'new'), (('aac',), 'other')],
2637
 
            [target1, target2, target3], [basis])
2638
 
 
2639
 
        self.assertIterInteresting(
2640
 
            [target2, target3, a_key, aac_key, b_key],
2641
 
            [(('bbb',), 'new'), (('aac',), 'other')],
2642
 
            [target2, target3], [target1])
2643
 
 
2644
 
        # Technically, target1 could be filtered out, but since it is a root
2645
 
        # node, we yield it immediately, rather than waiting to find out much
2646
 
        # later on.
2647
 
        self.assertIterInteresting(
2648
 
            [target1],
2649
 
            [],
2650
 
            [target1], [target3])
 
1980
            [(None, [(('aaa',), 'common')]),
 
1981
             (target1, []),
 
1982
             (target2, []),
 
1983
             (target3, []),
 
1984
             (b_key, [(('bbb',), 'new')]),
 
1985
             (a_key, []),
 
1986
             (aac_key, [(('aac',), 'other')]),
 
1987
            ], [target1, target2, target3], [basis])
 
1988
 
 
1989
        self.assertIterInteresting(
 
1990
            [(target2, []),
 
1991
             (target3, []),
 
1992
             (b_key, [(('bbb',), 'new')]),
 
1993
             (a_key, []),
 
1994
             (aac_key, [(('aac',), 'other')]),
 
1995
            ], [target2, target3], [target1])
 
1996
 
 
1997
        # This may be a case that we relax. A root node is a deep child of the
 
1998
        # excluded set. The cost is buffering root nodes until we have
 
1999
        # determined all possible exclusions. (Because a prefix of '', cannot
 
2000
        # be excluded.)
 
2001
        self.assertIterInteresting(
 
2002
            [], [target1], [target3])
2651
2003
 
2652
2004
    def test_multiple_maps(self):
2653
2005
        basis1 = self.get_map_key({('aaa',): 'common',
2696
2048
        # The key for the leaf bba node
2697
2049
        bba_key = target2_map._root_node._items['b']._items['bba'].key()
2698
2050
        self.assertIterInteresting(
2699
 
            [target1, target2, a_key, aac_key, b_key, bba_key],
2700
 
            [(('aac',), 'target1'), (('bba',), 'target2')],
2701
 
            [target1, target2], [basis1, basis2])
2702
 
 
2703
 
    def test_multiple_maps_overlapping_common_new(self):
2704
 
        # Test that when a node found through the interesting_keys iteration
2705
 
        # for *some roots* and also via the old keys iteration, that
2706
 
        # it is still scanned for old refs and items, because its
2707
 
        # not truely new. This requires 2 levels of InternalNodes to expose,
2708
 
        # because of the way the bootstrap in _find_children_info works.
2709
 
        # This suggests that the code is probably amenable to/benefit from
2710
 
        # consolidation.
2711
 
        # How does this test work?
2712
 
        # 1) We need a second level InternalNode present in a basis tree.
2713
 
        # 2) We need a left side new tree that uses that InternalNode
2714
 
        # 3) We need a right side new tree that does not use that InternalNode
2715
 
        #    at all but that has an unchanged *value* that was reachable inside
2716
 
        #    that InternalNode
2717
 
        basis = self.get_map_key({
2718
 
            # InternalNode, unchanged in left:
2719
 
            ('aaa',): 'left',
2720
 
            ('abb',): 'right',
2721
 
            # Forces an internalNode at 'a'
2722
 
            ('ccc',): 'common',
2723
 
            })
2724
 
        left = self.get_map_key({
2725
 
            # All of basis unchanged
2726
 
            ('aaa',): 'left',
2727
 
            ('abb',): 'right',
2728
 
            ('ccc',): 'common',
2729
 
            # And a new top level node so the root key is different
2730
 
            ('ddd',): 'change',
2731
 
            })
2732
 
        right = self.get_map_key({
2733
 
            # A value that is unchanged from basis and thus should be filtered
2734
 
            # out.
2735
 
            ('abb',): 'right'
2736
 
            })
2737
 
        basis_map = CHKMap(self.get_chk_bytes(), basis)
2738
 
        self.assertEqualDiff(
2739
 
            "'' InternalNode\n"
2740
 
            "  'a' InternalNode\n"
2741
 
            "    'aa' LeafNode\n"
2742
 
            "      ('aaa',) 'left'\n"
2743
 
            "    'ab' LeafNode\n"
2744
 
            "      ('abb',) 'right'\n"
2745
 
            "  'c' LeafNode\n"
2746
 
            "      ('ccc',) 'common'\n",
2747
 
            basis_map._dump_tree())
2748
 
        # Get left expected data
2749
 
        left_map = CHKMap(self.get_chk_bytes(), left)
2750
 
        self.assertEqualDiff(
2751
 
            "'' InternalNode\n"
2752
 
            "  'a' InternalNode\n"
2753
 
            "    'aa' LeafNode\n"
2754
 
            "      ('aaa',) 'left'\n"
2755
 
            "    'ab' LeafNode\n"
2756
 
            "      ('abb',) 'right'\n"
2757
 
            "  'c' LeafNode\n"
2758
 
            "      ('ccc',) 'common'\n"
2759
 
            "  'd' LeafNode\n"
2760
 
            "      ('ddd',) 'change'\n",
2761
 
            left_map._dump_tree())
2762
 
        # Keys from left side target
2763
 
        l_d_key = left_map._root_node._items['d'].key()
2764
 
        # Get right expected data
2765
 
        right_map = CHKMap(self.get_chk_bytes(), right)
2766
 
        self.assertEqualDiff(
2767
 
            "'' LeafNode\n"
2768
 
            "      ('abb',) 'right'\n",
2769
 
            right_map._dump_tree())
2770
 
        # Keys from the right side target - none, the root is enough.
2771
 
        # Test behaviour
2772
 
        self.assertIterInteresting(
2773
 
            [right, left, l_d_key],
2774
 
            [(('ddd',), 'change')],
2775
 
            [left, right], [basis])
2776
 
 
2777
 
    def test_multiple_maps_similar(self):
2778
 
        # We want to have a depth=2 tree, with multiple entries in each leaf
2779
 
        # node
2780
 
        basis = self.get_map_key({
2781
 
            ('aaa',): 'unchanged',
2782
 
            ('abb',): 'will change left',
2783
 
            ('caa',): 'unchanged',
2784
 
            ('cbb',): 'will change right',
2785
 
            }, maximum_size=60)
2786
 
        left = self.get_map_key({
2787
 
            ('aaa',): 'unchanged',
2788
 
            ('abb',): 'changed left',
2789
 
            ('caa',): 'unchanged',
2790
 
            ('cbb',): 'will change right',
2791
 
            }, maximum_size=60)
2792
 
        right = self.get_map_key({
2793
 
            ('aaa',): 'unchanged',
2794
 
            ('abb',): 'will change left',
2795
 
            ('caa',): 'unchanged',
2796
 
            ('cbb',): 'changed right',
2797
 
            }, maximum_size=60)
2798
 
        basis_map = CHKMap(self.get_chk_bytes(), basis)
2799
 
        self.assertEqualDiff(
2800
 
            "'' InternalNode\n"
2801
 
            "  'a' LeafNode\n"
2802
 
            "      ('aaa',) 'unchanged'\n"
2803
 
            "      ('abb',) 'will change left'\n"
2804
 
            "  'c' LeafNode\n"
2805
 
            "      ('caa',) 'unchanged'\n"
2806
 
            "      ('cbb',) 'will change right'\n",
2807
 
            basis_map._dump_tree())
2808
 
        # Get left expected data
2809
 
        left_map = CHKMap(self.get_chk_bytes(), left)
2810
 
        self.assertEqualDiff(
2811
 
            "'' InternalNode\n"
2812
 
            "  'a' LeafNode\n"
2813
 
            "      ('aaa',) 'unchanged'\n"
2814
 
            "      ('abb',) 'changed left'\n"
2815
 
            "  'c' LeafNode\n"
2816
 
            "      ('caa',) 'unchanged'\n"
2817
 
            "      ('cbb',) 'will change right'\n",
2818
 
            left_map._dump_tree())
2819
 
        # Keys from left side target
2820
 
        l_a_key = left_map._root_node._items['a'].key()
2821
 
        l_c_key = left_map._root_node._items['c'].key()
2822
 
        # Get right expected data
2823
 
        right_map = CHKMap(self.get_chk_bytes(), right)
2824
 
        self.assertEqualDiff(
2825
 
            "'' InternalNode\n"
2826
 
            "  'a' LeafNode\n"
2827
 
            "      ('aaa',) 'unchanged'\n"
2828
 
            "      ('abb',) 'will change left'\n"
2829
 
            "  'c' LeafNode\n"
2830
 
            "      ('caa',) 'unchanged'\n"
2831
 
            "      ('cbb',) 'changed right'\n",
2832
 
            right_map._dump_tree())
2833
 
        r_a_key = right_map._root_node._items['a'].key()
2834
 
        r_c_key = right_map._root_node._items['c'].key()
2835
 
        self.assertIterInteresting(
2836
 
            [right, left, l_a_key, r_c_key],
2837
 
            [(('abb',), 'changed left'), (('cbb',), 'changed right')],
2838
 
            [left, right], [basis])
 
2051
            [(target1, []),
 
2052
             (target2, []),
 
2053
             (a_key, []),
 
2054
             (b_key, []),
 
2055
             (aac_key, [(('aac',), 'target1')]),
 
2056
             (bba_key, [(('bba',), 'target2')]),
 
2057
            ], [target1, target2], [basis1, basis2])