/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
2484.1.12 by John Arbash Meinel
Switch the layout to use a matching _knit_load_data_py.py and _knit_load_data_c.pyx
1
# Copyright (C) 2005, 2006, 2007 Canonical Ltd
1563.2.4 by Robert Collins
First cut at including the knit implementation of versioned_file.
2
#
3
# This program is free software; you can redistribute it and/or modify
4
# it under the terms of the GNU General Public License as published by
5
# the Free Software Foundation; either version 2 of the License, or
6
# (at your option) any later version.
7
#
8
# This program is distributed in the hope that it will be useful,
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11
# GNU General Public License for more details.
12
#
13
# You should have received a copy of the GNU General Public License
14
# along with this program; if not, write to the Free Software
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
17
"""Tests for Knit data structure"""
18
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
19
from cStringIO import StringIO
1563.2.4 by Robert Collins
First cut at including the knit implementation of versioned_file.
20
import difflib
2329.1.1 by John Arbash Meinel
Update _KnitData parser to raise more helpful errors when it detects corruption.
21
import gzip
22
import sha
2484.1.17 by John Arbash Meinel
Workaround for Pyrex <0.9.5 and python >=2.5 incompatibilities.
23
import sys
1563.2.4 by Robert Collins
First cut at including the knit implementation of versioned_file.
24
2196.2.5 by John Arbash Meinel
Add an exception class when the knit index storage method is unknown, and properly test for it
25
from bzrlib import (
26
    errors,
2484.1.5 by John Arbash Meinel
Simplistic implementations of custom parsers for options and parents
27
    generate_ids,
2484.1.1 by John Arbash Meinel
Add an initial function to read knit indexes in pyrex.
28
    knit,
2592.3.66 by Robert Collins
Allow adaption of KnitData to pack files.
29
    pack,
2196.2.5 by John Arbash Meinel
Add an exception class when the knit index storage method is unknown, and properly test for it
30
    )
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
31
from bzrlib.errors import (
32
    RevisionAlreadyPresent,
33
    KnitHeaderError,
34
    RevisionNotPresent,
35
    NoSuchFile,
36
    )
2592.3.1 by Robert Collins
Allow giving KnitVersionedFile an index object to use rather than implicitly creating one.
37
from bzrlib.index import *
1684.3.3 by Robert Collins
Add a special cased weaves to knit converter.
38
from bzrlib.knit import (
2794.1.2 by Robert Collins
Nuke versioned file add/get delta support, allowing easy simplification of unannotated Content, reducing memory copies and friction during commit on unannotated texts.
39
    AnnotatedKnitContent,
2151.1.1 by John Arbash Meinel
(Dmitry Vasiliev) Tune KnitContent and add tests
40
    KnitContent,
2592.3.2 by Robert Collins
Implement a get_graph for a new KnitGraphIndex that will implement a KnitIndex on top of the GraphIndex API.
41
    KnitGraphIndex,
1684.3.3 by Robert Collins
Add a special cased weaves to knit converter.
42
    KnitVersionedFile,
43
    KnitPlainFactory,
44
    KnitAnnotateFactory,
2592.3.66 by Robert Collins
Allow adaption of KnitData to pack files.
45
    _KnitAccess,
2329.1.1 by John Arbash Meinel
Update _KnitData parser to raise more helpful errors when it detects corruption.
46
    _KnitData,
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
47
    _KnitIndex,
2592.3.66 by Robert Collins
Allow adaption of KnitData to pack files.
48
    _PackAccess,
2794.1.2 by Robert Collins
Nuke versioned file add/get delta support, allowing easy simplification of unannotated Content, reducing memory copies and friction during commit on unannotated texts.
49
    PlainKnitContent,
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
50
    WeaveToKnit,
2520.4.41 by Aaron Bentley
Accelerate mpdiff generation
51
    KnitSequenceMatcher,
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
52
    )
1563.2.4 by Robert Collins
First cut at including the knit implementation of versioned_file.
53
from bzrlib.osutils import split_lines
2592.3.66 by Robert Collins
Allow adaption of KnitData to pack files.
54
from bzrlib.tests import (
55
    Feature,
56
    TestCase,
57
    TestCaseWithMemoryTransport,
58
    TestCaseWithTransport,
59
    )
2745.5.3 by Robert Collins
* Move transport logging into a new transport class
60
from bzrlib.transport import get_transport
1563.2.13 by Robert Collins
InterVersionedFile implemented.
61
from bzrlib.transport.memory import MemoryTransport
2535.3.15 by Andrew Bennetts
Add KnitVersionedFile.get_stream_as_bytes, start smart implementation of RemoteRepository.get_data_stream.
62
from bzrlib.util import bencode
1684.3.3 by Robert Collins
Add a special cased weaves to knit converter.
63
from bzrlib.weave import Weave
64
65
2484.1.1 by John Arbash Meinel
Add an initial function to read knit indexes in pyrex.
66
class _CompiledKnitFeature(Feature):
67
68
    def _probe(self):
69
        try:
2484.1.12 by John Arbash Meinel
Switch the layout to use a matching _knit_load_data_py.py and _knit_load_data_c.pyx
70
            import bzrlib._knit_load_data_c
2484.1.1 by John Arbash Meinel
Add an initial function to read knit indexes in pyrex.
71
        except ImportError:
72
            return False
73
        return True
74
75
    def feature_name(self):
2484.1.12 by John Arbash Meinel
Switch the layout to use a matching _knit_load_data_py.py and _knit_load_data_c.pyx
76
        return 'bzrlib._knit_load_data_c'
2484.1.1 by John Arbash Meinel
Add an initial function to read knit indexes in pyrex.
77
78
CompiledKnitFeature = _CompiledKnitFeature()
79
80
2794.1.2 by Robert Collins
Nuke versioned file add/get delta support, allowing easy simplification of unannotated Content, reducing memory copies and friction during commit on unannotated texts.
81
class KnitContentTestsMixin(object):
2151.1.1 by John Arbash Meinel
(Dmitry Vasiliev) Tune KnitContent and add tests
82
83
    def test_constructor(self):
2794.1.2 by Robert Collins
Nuke versioned file add/get delta support, allowing easy simplification of unannotated Content, reducing memory copies and friction during commit on unannotated texts.
84
        content = self._make_content([])
2151.1.1 by John Arbash Meinel
(Dmitry Vasiliev) Tune KnitContent and add tests
85
86
    def test_text(self):
2794.1.2 by Robert Collins
Nuke versioned file add/get delta support, allowing easy simplification of unannotated Content, reducing memory copies and friction during commit on unannotated texts.
87
        content = self._make_content([])
2151.1.1 by John Arbash Meinel
(Dmitry Vasiliev) Tune KnitContent and add tests
88
        self.assertEqual(content.text(), [])
89
2794.1.2 by Robert Collins
Nuke versioned file add/get delta support, allowing easy simplification of unannotated Content, reducing memory copies and friction during commit on unannotated texts.
90
        content = self._make_content([("origin1", "text1"), ("origin2", "text2")])
2151.1.1 by John Arbash Meinel
(Dmitry Vasiliev) Tune KnitContent and add tests
91
        self.assertEqual(content.text(), ["text1", "text2"])
92
2794.1.2 by Robert Collins
Nuke versioned file add/get delta support, allowing easy simplification of unannotated Content, reducing memory copies and friction during commit on unannotated texts.
93
    def test_copy(self):
94
        content = self._make_content([("origin1", "text1"), ("origin2", "text2")])
95
        copy = content.copy()
96
        self.assertIsInstance(copy, content.__class__)
97
        self.assertEqual(copy.annotate(), content.annotate())
98
99
    def assertDerivedBlocksEqual(self, source, target, noeol=False):
100
        """Assert that the derived matching blocks match real output"""
101
        source_lines = source.splitlines(True)
102
        target_lines = target.splitlines(True)
103
        def nl(line):
104
            if noeol and not line.endswith('\n'):
105
                return line + '\n'
106
            else:
107
                return line
108
        source_content = self._make_content([(None, nl(l)) for l in source_lines])
109
        target_content = self._make_content([(None, nl(l)) for l in target_lines])
110
        line_delta = source_content.line_delta(target_content)
111
        delta_blocks = list(KnitContent.get_line_delta_blocks(line_delta,
112
            source_lines, target_lines))
113
        matcher = KnitSequenceMatcher(None, source_lines, target_lines)
114
        matcher_blocks = list(list(matcher.get_matching_blocks()))
115
        self.assertEqual(matcher_blocks, delta_blocks)
116
117
    def test_get_line_delta_blocks(self):
118
        self.assertDerivedBlocksEqual('a\nb\nc\n', 'q\nc\n')
119
        self.assertDerivedBlocksEqual(TEXT_1, TEXT_1)
120
        self.assertDerivedBlocksEqual(TEXT_1, TEXT_1A)
121
        self.assertDerivedBlocksEqual(TEXT_1, TEXT_1B)
122
        self.assertDerivedBlocksEqual(TEXT_1B, TEXT_1A)
123
        self.assertDerivedBlocksEqual(TEXT_1A, TEXT_1B)
124
        self.assertDerivedBlocksEqual(TEXT_1A, '')
125
        self.assertDerivedBlocksEqual('', TEXT_1A)
126
        self.assertDerivedBlocksEqual('', '')
127
        self.assertDerivedBlocksEqual('a\nb\nc', 'a\nb\nc\nd')
128
129
    def test_get_line_delta_blocks_noeol(self):
130
        """Handle historical knit deltas safely
131
132
        Some existing knit deltas don't consider the last line to differ
133
        when the only difference whether it has a final newline.
134
135
        New knit deltas appear to always consider the last line to differ
136
        in this case.
137
        """
138
        self.assertDerivedBlocksEqual('a\nb\nc', 'a\nb\nc\nd\n', noeol=True)
139
        self.assertDerivedBlocksEqual('a\nb\nc\nd\n', 'a\nb\nc', noeol=True)
140
        self.assertDerivedBlocksEqual('a\nb\nc\n', 'a\nb\nc', noeol=True)
141
        self.assertDerivedBlocksEqual('a\nb\nc', 'a\nb\nc\n', noeol=True)
142
143
144
class TestPlainKnitContent(TestCase, KnitContentTestsMixin):
145
146
    def _make_content(self, lines):
147
        annotated_content = AnnotatedKnitContent(lines)
148
        return PlainKnitContent(annotated_content.text(), 'bogus')
149
150
    def test_annotate(self):
151
        content = self._make_content([])
152
        self.assertEqual(content.annotate(), [])
153
154
        content = self._make_content([("origin1", "text1"), ("origin2", "text2")])
155
        self.assertEqual(content.annotate(),
156
            [("bogus", "text1"), ("bogus", "text2")])
157
158
    def test_annotate_iter(self):
159
        content = self._make_content([])
160
        it = content.annotate_iter()
161
        self.assertRaises(StopIteration, it.next)
162
163
        content = self._make_content([("bogus", "text1"), ("bogus", "text2")])
164
        it = content.annotate_iter()
165
        self.assertEqual(it.next(), ("bogus", "text1"))
166
        self.assertEqual(it.next(), ("bogus", "text2"))
167
        self.assertRaises(StopIteration, it.next)
168
169
    def test_line_delta(self):
170
        content1 = self._make_content([("", "a"), ("", "b")])
171
        content2 = self._make_content([("", "a"), ("", "a"), ("", "c")])
172
        self.assertEqual(content1.line_delta(content2),
173
            [(1, 2, 2, ["a", "c"])])
174
175
    def test_line_delta_iter(self):
176
        content1 = self._make_content([("", "a"), ("", "b")])
177
        content2 = self._make_content([("", "a"), ("", "a"), ("", "c")])
178
        it = content1.line_delta_iter(content2)
179
        self.assertEqual(it.next(), (1, 2, 2, ["a", "c"]))
180
        self.assertRaises(StopIteration, it.next)
181
182
183
class TestAnnotatedKnitContent(TestCase, KnitContentTestsMixin):
184
185
    def _make_content(self, lines):
186
        return AnnotatedKnitContent(lines)
187
188
    def test_annotate(self):
189
        content = self._make_content([])
190
        self.assertEqual(content.annotate(), [])
191
192
        content = self._make_content([("origin1", "text1"), ("origin2", "text2")])
2151.1.1 by John Arbash Meinel
(Dmitry Vasiliev) Tune KnitContent and add tests
193
        self.assertEqual(content.annotate(),
194
            [("origin1", "text1"), ("origin2", "text2")])
195
196
    def test_annotate_iter(self):
2794.1.2 by Robert Collins
Nuke versioned file add/get delta support, allowing easy simplification of unannotated Content, reducing memory copies and friction during commit on unannotated texts.
197
        content = self._make_content([])
2151.1.1 by John Arbash Meinel
(Dmitry Vasiliev) Tune KnitContent and add tests
198
        it = content.annotate_iter()
199
        self.assertRaises(StopIteration, it.next)
200
2794.1.2 by Robert Collins
Nuke versioned file add/get delta support, allowing easy simplification of unannotated Content, reducing memory copies and friction during commit on unannotated texts.
201
        content = self._make_content([("origin1", "text1"), ("origin2", "text2")])
2151.1.1 by John Arbash Meinel
(Dmitry Vasiliev) Tune KnitContent and add tests
202
        it = content.annotate_iter()
203
        self.assertEqual(it.next(), ("origin1", "text1"))
204
        self.assertEqual(it.next(), ("origin2", "text2"))
205
        self.assertRaises(StopIteration, it.next)
206
207
    def test_line_delta(self):
2794.1.2 by Robert Collins
Nuke versioned file add/get delta support, allowing easy simplification of unannotated Content, reducing memory copies and friction during commit on unannotated texts.
208
        content1 = self._make_content([("", "a"), ("", "b")])
209
        content2 = self._make_content([("", "a"), ("", "a"), ("", "c")])
2151.1.1 by John Arbash Meinel
(Dmitry Vasiliev) Tune KnitContent and add tests
210
        self.assertEqual(content1.line_delta(content2),
211
            [(1, 2, 2, [("", "a"), ("", "c")])])
212
213
    def test_line_delta_iter(self):
2794.1.2 by Robert Collins
Nuke versioned file add/get delta support, allowing easy simplification of unannotated Content, reducing memory copies and friction during commit on unannotated texts.
214
        content1 = self._make_content([("", "a"), ("", "b")])
215
        content2 = self._make_content([("", "a"), ("", "a"), ("", "c")])
2151.1.1 by John Arbash Meinel
(Dmitry Vasiliev) Tune KnitContent and add tests
216
        it = content1.line_delta_iter(content2)
217
        self.assertEqual(it.next(), (1, 2, 2, [("", "a"), ("", "c")]))
218
        self.assertRaises(StopIteration, it.next)
219
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
220
221
class MockTransport(object):
222
223
    def __init__(self, file_lines=None):
224
        self.file_lines = file_lines
225
        self.calls = []
2196.2.3 by John Arbash Meinel
Update tests and code to pass after merging bzr.dev
226
        # We have no base directory for the MockTransport
227
        self.base = ''
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
228
229
    def get(self, filename):
230
        if self.file_lines is None:
231
            raise NoSuchFile(filename)
232
        else:
233
            return StringIO("\n".join(self.file_lines))
234
2329.1.1 by John Arbash Meinel
Update _KnitData parser to raise more helpful errors when it detects corruption.
235
    def readv(self, relpath, offsets):
236
        fp = self.get(relpath)
237
        for offset, size in offsets:
238
            fp.seek(offset)
239
            yield offset, fp.read(size)
240
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
241
    def __getattr__(self, name):
242
        def queue_call(*args, **kwargs):
243
            self.calls.append((name, args, kwargs))
244
        return queue_call
245
246
2592.3.66 by Robert Collins
Allow adaption of KnitData to pack files.
247
class KnitRecordAccessTestsMixin(object):
248
    """Tests for getting and putting knit records."""
249
250
    def assertAccessExists(self, access):
251
        """Ensure the data area for access has been initialised/exists."""
252
        raise NotImplementedError(self.assertAccessExists)
253
254
    def test_add_raw_records(self):
255
        """Add_raw_records adds records retrievable later."""
256
        access = self.get_access()
257
        memos = access.add_raw_records([10], '1234567890')
258
        self.assertEqual(['1234567890'], list(access.get_raw_records(memos)))
2592.3.67 by Robert Collins
More tests for bzrlib.knit._PackAccess.
259
 
260
    def test_add_several_raw_records(self):
261
        """add_raw_records with many records and read some back."""
262
        access = self.get_access()
263
        memos = access.add_raw_records([10, 2, 5], '12345678901234567')
264
        self.assertEqual(['1234567890', '12', '34567'],
265
            list(access.get_raw_records(memos)))
266
        self.assertEqual(['1234567890'],
267
            list(access.get_raw_records(memos[0:1])))
268
        self.assertEqual(['12'],
269
            list(access.get_raw_records(memos[1:2])))
270
        self.assertEqual(['34567'],
271
            list(access.get_raw_records(memos[2:3])))
272
        self.assertEqual(['1234567890', '34567'],
273
            list(access.get_raw_records(memos[0:1] + memos[2:3])))
274
2592.3.66 by Robert Collins
Allow adaption of KnitData to pack files.
275
    def test_create(self):
276
        """create() should make a file on disk."""
277
        access = self.get_access()
278
        access.create()
279
        self.assertAccessExists(access)
280
281
    def test_open_file(self):
282
        """open_file never errors."""
283
        access = self.get_access()
284
        access.open_file()
285
286
287
class TestKnitKnitAccess(TestCaseWithMemoryTransport, KnitRecordAccessTestsMixin):
288
    """Tests for the .kndx implementation."""
289
290
    def assertAccessExists(self, access):
291
        self.assertNotEqual(None, access.open_file())
292
293
    def get_access(self):
294
        """Get a .knit style access instance."""
295
        access = _KnitAccess(self.get_transport(), "foo.knit", None, None,
296
            False, False)
297
        return access
298
    
299
300
class TestPackKnitAccess(TestCaseWithMemoryTransport, KnitRecordAccessTestsMixin):
301
    """Tests for the pack based access."""
302
303
    def assertAccessExists(self, access):
304
        # as pack based access has no backing unless an index maps data, this
305
        # is a no-op.
306
        pass
307
308
    def get_access(self):
2592.3.67 by Robert Collins
More tests for bzrlib.knit._PackAccess.
309
        return self._get_access()[0]
310
311
    def _get_access(self, packname='packfile', index='FOO'):
2592.3.66 by Robert Collins
Allow adaption of KnitData to pack files.
312
        transport = self.get_transport()
313
        def write_data(bytes):
2592.3.67 by Robert Collins
More tests for bzrlib.knit._PackAccess.
314
            transport.append_bytes(packname, bytes)
2592.3.66 by Robert Collins
Allow adaption of KnitData to pack files.
315
        writer = pack.ContainerWriter(write_data)
316
        writer.begin()
2592.3.67 by Robert Collins
More tests for bzrlib.knit._PackAccess.
317
        indices = {index:(transport, packname)}
318
        access = _PackAccess(indices, writer=(writer, index))
319
        return access, writer
2592.3.66 by Robert Collins
Allow adaption of KnitData to pack files.
320
2592.3.67 by Robert Collins
More tests for bzrlib.knit._PackAccess.
321
    def test_read_from_several_packs(self):
322
        access, writer = self._get_access()
323
        memos = []
324
        memos.extend(access.add_raw_records([10], '1234567890'))
325
        writer.end()
326
        access, writer = self._get_access('pack2', 'FOOBAR')
327
        memos.extend(access.add_raw_records([5], '12345'))
328
        writer.end()
329
        access, writer = self._get_access('pack3', 'BAZ')
330
        memos.extend(access.add_raw_records([5], 'alpha'))
331
        writer.end()
332
        transport = self.get_transport()
333
        access = _PackAccess({"FOO":(transport, 'packfile'),
334
            "FOOBAR":(transport, 'pack2'),
335
            "BAZ":(transport, 'pack3')})
336
        self.assertEqual(['1234567890', '12345', 'alpha'],
337
            list(access.get_raw_records(memos)))
338
        self.assertEqual(['1234567890'],
339
            list(access.get_raw_records(memos[0:1])))
340
        self.assertEqual(['12345'],
341
            list(access.get_raw_records(memos[1:2])))
342
        self.assertEqual(['alpha'],
343
            list(access.get_raw_records(memos[2:3])))
344
        self.assertEqual(['1234567890', 'alpha'],
345
            list(access.get_raw_records(memos[0:1] + memos[2:3])))
2592.3.66 by Robert Collins
Allow adaption of KnitData to pack files.
346
2592.3.70 by Robert Collins
Allow setting a writer after creating a knit._PackAccess object.
347
    def test_set_writer(self):
348
        """The writer should be settable post construction."""
349
        access = _PackAccess({})
350
        transport = self.get_transport()
351
        packname = 'packfile'
352
        index = 'foo'
353
        def write_data(bytes):
354
            transport.append_bytes(packname, bytes)
355
        writer = pack.ContainerWriter(write_data)
356
        writer.begin()
357
        access.set_writer(writer, index, (transport, packname))
358
        memos = access.add_raw_records([10], '1234567890')
359
        writer.end()
360
        self.assertEqual(['1234567890'], list(access.get_raw_records(memos)))
361
2592.3.66 by Robert Collins
Allow adaption of KnitData to pack files.
362
2329.1.1 by John Arbash Meinel
Update _KnitData parser to raise more helpful errors when it detects corruption.
363
class LowLevelKnitDataTests(TestCase):
364
365
    def create_gz_content(self, text):
366
        sio = StringIO()
367
        gz_file = gzip.GzipFile(mode='wb', fileobj=sio)
368
        gz_file.write(text)
369
        gz_file.close()
370
        return sio.getvalue()
371
372
    def test_valid_knit_data(self):
373
        sha1sum = sha.new('foo\nbar\n').hexdigest()
374
        gz_txt = self.create_gz_content('version rev-id-1 2 %s\n'
375
                                        'foo\n'
376
                                        'bar\n'
377
                                        'end rev-id-1\n'
378
                                        % (sha1sum,))
379
        transport = MockTransport([gz_txt])
2592.3.66 by Robert Collins
Allow adaption of KnitData to pack files.
380
        access = _KnitAccess(transport, 'filename', None, None, False, False)
381
        data = _KnitData(access=access)
2592.3.71 by Robert Collins
Basic version of knit-based repository operating, many tests failing.
382
        records = [('rev-id-1', (None, 0, len(gz_txt)))]
2329.1.1 by John Arbash Meinel
Update _KnitData parser to raise more helpful errors when it detects corruption.
383
384
        contents = data.read_records(records)
385
        self.assertEqual({'rev-id-1':(['foo\n', 'bar\n'], sha1sum)}, contents)
386
387
        raw_contents = list(data.read_records_iter_raw(records))
388
        self.assertEqual([('rev-id-1', gz_txt)], raw_contents)
389
390
    def test_not_enough_lines(self):
391
        sha1sum = sha.new('foo\n').hexdigest()
392
        # record says 2 lines data says 1
393
        gz_txt = self.create_gz_content('version rev-id-1 2 %s\n'
394
                                        'foo\n'
395
                                        'end rev-id-1\n'
396
                                        % (sha1sum,))
397
        transport = MockTransport([gz_txt])
2592.3.66 by Robert Collins
Allow adaption of KnitData to pack files.
398
        access = _KnitAccess(transport, 'filename', None, None, False, False)
399
        data = _KnitData(access=access)
2592.3.71 by Robert Collins
Basic version of knit-based repository operating, many tests failing.
400
        records = [('rev-id-1', (None, 0, len(gz_txt)))]
2329.1.1 by John Arbash Meinel
Update _KnitData parser to raise more helpful errors when it detects corruption.
401
        self.assertRaises(errors.KnitCorrupt, data.read_records, records)
402
403
        # read_records_iter_raw won't detect that sort of mismatch/corruption
404
        raw_contents = list(data.read_records_iter_raw(records))
405
        self.assertEqual([('rev-id-1', gz_txt)], raw_contents)
406
407
    def test_too_many_lines(self):
408
        sha1sum = sha.new('foo\nbar\n').hexdigest()
409
        # record says 1 lines data says 2
410
        gz_txt = self.create_gz_content('version rev-id-1 1 %s\n'
411
                                        'foo\n'
412
                                        'bar\n'
413
                                        'end rev-id-1\n'
414
                                        % (sha1sum,))
415
        transport = MockTransport([gz_txt])
2592.3.66 by Robert Collins
Allow adaption of KnitData to pack files.
416
        access = _KnitAccess(transport, 'filename', None, None, False, False)
417
        data = _KnitData(access=access)
2592.3.71 by Robert Collins
Basic version of knit-based repository operating, many tests failing.
418
        records = [('rev-id-1', (None, 0, len(gz_txt)))]
2329.1.1 by John Arbash Meinel
Update _KnitData parser to raise more helpful errors when it detects corruption.
419
        self.assertRaises(errors.KnitCorrupt, data.read_records, records)
420
421
        # read_records_iter_raw won't detect that sort of mismatch/corruption
422
        raw_contents = list(data.read_records_iter_raw(records))
423
        self.assertEqual([('rev-id-1', gz_txt)], raw_contents)
424
425
    def test_mismatched_version_id(self):
426
        sha1sum = sha.new('foo\nbar\n').hexdigest()
427
        gz_txt = self.create_gz_content('version rev-id-1 2 %s\n'
428
                                        'foo\n'
429
                                        'bar\n'
430
                                        'end rev-id-1\n'
431
                                        % (sha1sum,))
432
        transport = MockTransport([gz_txt])
2592.3.66 by Robert Collins
Allow adaption of KnitData to pack files.
433
        access = _KnitAccess(transport, 'filename', None, None, False, False)
434
        data = _KnitData(access=access)
2329.1.1 by John Arbash Meinel
Update _KnitData parser to raise more helpful errors when it detects corruption.
435
        # We are asking for rev-id-2, but the data is rev-id-1
2592.3.71 by Robert Collins
Basic version of knit-based repository operating, many tests failing.
436
        records = [('rev-id-2', (None, 0, len(gz_txt)))]
2329.1.1 by John Arbash Meinel
Update _KnitData parser to raise more helpful errors when it detects corruption.
437
        self.assertRaises(errors.KnitCorrupt, data.read_records, records)
438
439
        # read_records_iter_raw will notice if we request the wrong version.
440
        self.assertRaises(errors.KnitCorrupt, list,
441
                          data.read_records_iter_raw(records))
442
443
    def test_uncompressed_data(self):
444
        sha1sum = sha.new('foo\nbar\n').hexdigest()
445
        txt = ('version rev-id-1 2 %s\n'
446
               'foo\n'
447
               'bar\n'
448
               'end rev-id-1\n'
449
               % (sha1sum,))
450
        transport = MockTransport([txt])
2592.3.66 by Robert Collins
Allow adaption of KnitData to pack files.
451
        access = _KnitAccess(transport, 'filename', None, None, False, False)
452
        data = _KnitData(access=access)
2592.3.71 by Robert Collins
Basic version of knit-based repository operating, many tests failing.
453
        records = [('rev-id-1', (None, 0, len(txt)))]
2329.1.1 by John Arbash Meinel
Update _KnitData parser to raise more helpful errors when it detects corruption.
454
455
        # We don't have valid gzip data ==> corrupt
456
        self.assertRaises(errors.KnitCorrupt, data.read_records, records)
457
458
        # read_records_iter_raw will notice the bad data
459
        self.assertRaises(errors.KnitCorrupt, list,
460
                          data.read_records_iter_raw(records))
461
462
    def test_corrupted_data(self):
463
        sha1sum = sha.new('foo\nbar\n').hexdigest()
464
        gz_txt = self.create_gz_content('version rev-id-1 2 %s\n'
465
                                        'foo\n'
466
                                        'bar\n'
467
                                        'end rev-id-1\n'
468
                                        % (sha1sum,))
469
        # Change 2 bytes in the middle to \xff
470
        gz_txt = gz_txt[:10] + '\xff\xff' + gz_txt[12:]
471
        transport = MockTransport([gz_txt])
2592.3.66 by Robert Collins
Allow adaption of KnitData to pack files.
472
        access = _KnitAccess(transport, 'filename', None, None, False, False)
473
        data = _KnitData(access=access)
2592.3.71 by Robert Collins
Basic version of knit-based repository operating, many tests failing.
474
        records = [('rev-id-1', (None, 0, len(gz_txt)))]
2329.1.1 by John Arbash Meinel
Update _KnitData parser to raise more helpful errors when it detects corruption.
475
476
        self.assertRaises(errors.KnitCorrupt, data.read_records, records)
477
478
        # read_records_iter_raw will notice if we request the wrong version.
479
        self.assertRaises(errors.KnitCorrupt, list,
480
                          data.read_records_iter_raw(records))
481
482
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
483
class LowLevelKnitIndexTests(TestCase):
484
2484.1.1 by John Arbash Meinel
Add an initial function to read knit indexes in pyrex.
485
    def get_knit_index(self, *args, **kwargs):
486
        orig = knit._load_data
487
        def reset():
488
            knit._load_data = orig
489
        self.addCleanup(reset)
2484.1.12 by John Arbash Meinel
Switch the layout to use a matching _knit_load_data_py.py and _knit_load_data_c.pyx
490
        from bzrlib._knit_load_data_py import _load_data_py
491
        knit._load_data = _load_data_py
2484.1.1 by John Arbash Meinel
Add an initial function to read knit indexes in pyrex.
492
        return _KnitIndex(*args, **kwargs)
493
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
494
    def test_no_such_file(self):
495
        transport = MockTransport()
496
2484.1.1 by John Arbash Meinel
Add an initial function to read knit indexes in pyrex.
497
        self.assertRaises(NoSuchFile, self.get_knit_index,
498
                          transport, "filename", "r")
499
        self.assertRaises(NoSuchFile, self.get_knit_index,
500
                          transport, "filename", "w", create=False)
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
501
502
    def test_create_file(self):
503
        transport = MockTransport()
504
2484.1.1 by John Arbash Meinel
Add an initial function to read knit indexes in pyrex.
505
        index = self.get_knit_index(transport, "filename", "w",
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
506
            file_mode="wb", create=True)
507
        self.assertEqual(
508
                ("put_bytes_non_atomic",
509
                    ("filename", index.HEADER), {"mode": "wb"}),
510
                transport.calls.pop(0))
511
512
    def test_delay_create_file(self):
513
        transport = MockTransport()
514
2484.1.1 by John Arbash Meinel
Add an initial function to read knit indexes in pyrex.
515
        index = self.get_knit_index(transport, "filename", "w",
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
516
            create=True, file_mode="wb", create_parent_dir=True,
517
            delay_create=True, dir_mode=0777)
518
        self.assertEqual([], transport.calls)
519
520
        index.add_versions([])
521
        name, (filename, f), kwargs = transport.calls.pop(0)
522
        self.assertEqual("put_file_non_atomic", name)
523
        self.assertEqual(
524
            {"dir_mode": 0777, "create_parent_dir": True, "mode": "wb"},
525
            kwargs)
526
        self.assertEqual("filename", filename)
527
        self.assertEqual(index.HEADER, f.read())
528
529
        index.add_versions([])
530
        self.assertEqual(("append_bytes", ("filename", ""), {}),
531
            transport.calls.pop(0))
532
533
    def test_read_utf8_version_id(self):
2249.5.12 by John Arbash Meinel
Change the APIs for VersionedFile, Store, and some of Repository into utf-8
534
        unicode_revision_id = u"version-\N{CYRILLIC CAPITAL LETTER A}"
535
        utf8_revision_id = unicode_revision_id.encode('utf-8')
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
536
        transport = MockTransport([
537
            _KnitIndex.HEADER,
2249.5.12 by John Arbash Meinel
Change the APIs for VersionedFile, Store, and some of Repository into utf-8
538
            '%s option 0 1 :' % (utf8_revision_id,)
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
539
            ])
2484.1.1 by John Arbash Meinel
Add an initial function to read knit indexes in pyrex.
540
        index = self.get_knit_index(transport, "filename", "r")
2249.5.12 by John Arbash Meinel
Change the APIs for VersionedFile, Store, and some of Repository into utf-8
541
        # _KnitIndex is a private class, and deals in utf8 revision_ids, not
542
        # Unicode revision_ids.
543
        self.assertTrue(index.has_version(utf8_revision_id))
544
        self.assertFalse(index.has_version(unicode_revision_id))
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
545
546
    def test_read_utf8_parents(self):
2249.5.12 by John Arbash Meinel
Change the APIs for VersionedFile, Store, and some of Repository into utf-8
547
        unicode_revision_id = u"version-\N{CYRILLIC CAPITAL LETTER A}"
548
        utf8_revision_id = unicode_revision_id.encode('utf-8')
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
549
        transport = MockTransport([
550
            _KnitIndex.HEADER,
2249.5.12 by John Arbash Meinel
Change the APIs for VersionedFile, Store, and some of Repository into utf-8
551
            "version option 0 1 .%s :" % (utf8_revision_id,)
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
552
            ])
2484.1.1 by John Arbash Meinel
Add an initial function to read knit indexes in pyrex.
553
        index = self.get_knit_index(transport, "filename", "r")
2249.5.12 by John Arbash Meinel
Change the APIs for VersionedFile, Store, and some of Repository into utf-8
554
        self.assertEqual([utf8_revision_id],
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
555
            index.get_parents_with_ghosts("version"))
556
557
    def test_read_ignore_corrupted_lines(self):
558
        transport = MockTransport([
559
            _KnitIndex.HEADER,
560
            "corrupted",
561
            "corrupted options 0 1 .b .c ",
562
            "version options 0 1 :"
563
            ])
2484.1.1 by John Arbash Meinel
Add an initial function to read knit indexes in pyrex.
564
        index = self.get_knit_index(transport, "filename", "r")
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
565
        self.assertEqual(1, index.num_versions())
2249.5.12 by John Arbash Meinel
Change the APIs for VersionedFile, Store, and some of Repository into utf-8
566
        self.assertTrue(index.has_version("version"))
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
567
568
    def test_read_corrupted_header(self):
2196.2.3 by John Arbash Meinel
Update tests and code to pass after merging bzr.dev
569
        transport = MockTransport(['not a bzr knit index header\n'])
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
570
        self.assertRaises(KnitHeaderError,
2484.1.1 by John Arbash Meinel
Add an initial function to read knit indexes in pyrex.
571
            self.get_knit_index, transport, "filename", "r")
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
572
573
    def test_read_duplicate_entries(self):
574
        transport = MockTransport([
575
            _KnitIndex.HEADER,
576
            "parent options 0 1 :",
577
            "version options1 0 1 0 :",
578
            "version options2 1 2 .other :",
579
            "version options3 3 4 0 .other :"
580
            ])
2484.1.1 by John Arbash Meinel
Add an initial function to read knit indexes in pyrex.
581
        index = self.get_knit_index(transport, "filename", "r")
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
582
        self.assertEqual(2, index.num_versions())
2592.3.8 by Robert Collins
Remove unneeded pulib method lookup on private class _KnitIndex.
583
        # check that the index used is the first one written. (Specific
584
        # to KnitIndex style indices.
585
        self.assertEqual("1", index._version_list_to_index(["version"]))
2592.3.71 by Robert Collins
Basic version of knit-based repository operating, many tests failing.
586
        self.assertEqual((None, 3, 4), index.get_position("version"))
2249.5.12 by John Arbash Meinel
Change the APIs for VersionedFile, Store, and some of Repository into utf-8
587
        self.assertEqual(["options3"], index.get_options("version"))
588
        self.assertEqual(["parent", "other"],
589
            index.get_parents_with_ghosts("version"))
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
590
591
    def test_read_compressed_parents(self):
592
        transport = MockTransport([
593
            _KnitIndex.HEADER,
594
            "a option 0 1 :",
595
            "b option 0 1 0 :",
596
            "c option 0 1 1 0 :",
597
            ])
2484.1.1 by John Arbash Meinel
Add an initial function to read knit indexes in pyrex.
598
        index = self.get_knit_index(transport, "filename", "r")
2249.5.12 by John Arbash Meinel
Change the APIs for VersionedFile, Store, and some of Repository into utf-8
599
        self.assertEqual(["a"], index.get_parents("b"))
600
        self.assertEqual(["b", "a"], index.get_parents("c"))
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
601
602
    def test_write_utf8_version_id(self):
2249.5.12 by John Arbash Meinel
Change the APIs for VersionedFile, Store, and some of Repository into utf-8
603
        unicode_revision_id = u"version-\N{CYRILLIC CAPITAL LETTER A}"
604
        utf8_revision_id = unicode_revision_id.encode('utf-8')
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
605
        transport = MockTransport([
606
            _KnitIndex.HEADER
607
            ])
2484.1.1 by John Arbash Meinel
Add an initial function to read knit indexes in pyrex.
608
        index = self.get_knit_index(transport, "filename", "r")
2592.3.71 by Robert Collins
Basic version of knit-based repository operating, many tests failing.
609
        index.add_version(utf8_revision_id, ["option"], (None, 0, 1), [])
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
610
        self.assertEqual(("append_bytes", ("filename",
2249.5.12 by John Arbash Meinel
Change the APIs for VersionedFile, Store, and some of Repository into utf-8
611
            "\n%s option 0 1  :" % (utf8_revision_id,)),
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
612
            {}),
613
            transport.calls.pop(0))
614
615
    def test_write_utf8_parents(self):
2249.5.12 by John Arbash Meinel
Change the APIs for VersionedFile, Store, and some of Repository into utf-8
616
        unicode_revision_id = u"version-\N{CYRILLIC CAPITAL LETTER A}"
617
        utf8_revision_id = unicode_revision_id.encode('utf-8')
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
618
        transport = MockTransport([
619
            _KnitIndex.HEADER
620
            ])
2484.1.1 by John Arbash Meinel
Add an initial function to read knit indexes in pyrex.
621
        index = self.get_knit_index(transport, "filename", "r")
2592.3.71 by Robert Collins
Basic version of knit-based repository operating, many tests failing.
622
        index.add_version("version", ["option"], (None, 0, 1), [utf8_revision_id])
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
623
        self.assertEqual(("append_bytes", ("filename",
2249.5.12 by John Arbash Meinel
Change the APIs for VersionedFile, Store, and some of Repository into utf-8
624
            "\nversion option 0 1 .%s :" % (utf8_revision_id,)),
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
625
            {}),
626
            transport.calls.pop(0))
627
628
    def test_get_graph(self):
629
        transport = MockTransport()
2484.1.1 by John Arbash Meinel
Add an initial function to read knit indexes in pyrex.
630
        index = self.get_knit_index(transport, "filename", "w", create=True)
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
631
        self.assertEqual([], index.get_graph())
632
2592.3.71 by Robert Collins
Basic version of knit-based repository operating, many tests failing.
633
        index.add_version("a", ["option"], (None, 0, 1), ["b"])
2249.5.12 by John Arbash Meinel
Change the APIs for VersionedFile, Store, and some of Repository into utf-8
634
        self.assertEqual([("a", ["b"])], index.get_graph())
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
635
2592.3.71 by Robert Collins
Basic version of knit-based repository operating, many tests failing.
636
        index.add_version("c", ["option"], (None, 0, 1), ["d"])
2249.5.12 by John Arbash Meinel
Change the APIs for VersionedFile, Store, and some of Repository into utf-8
637
        self.assertEqual([("a", ["b"]), ("c", ["d"])],
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
638
            sorted(index.get_graph()))
639
640
    def test_get_ancestry(self):
641
        transport = MockTransport([
642
            _KnitIndex.HEADER,
643
            "a option 0 1 :",
644
            "b option 0 1 0 .e :",
645
            "c option 0 1 1 0 :",
646
            "d option 0 1 2 .f :"
647
            ])
2484.1.1 by John Arbash Meinel
Add an initial function to read knit indexes in pyrex.
648
        index = self.get_knit_index(transport, "filename", "r")
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
649
650
        self.assertEqual([], index.get_ancestry([]))
2249.5.12 by John Arbash Meinel
Change the APIs for VersionedFile, Store, and some of Repository into utf-8
651
        self.assertEqual(["a"], index.get_ancestry(["a"]))
652
        self.assertEqual(["a", "b"], index.get_ancestry(["b"]))
653
        self.assertEqual(["a", "b", "c"], index.get_ancestry(["c"]))
654
        self.assertEqual(["a", "b", "c", "d"], index.get_ancestry(["d"]))
655
        self.assertEqual(["a", "b"], index.get_ancestry(["a", "b"]))
656
        self.assertEqual(["a", "b", "c"], index.get_ancestry(["a", "c"]))
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
657
2249.5.12 by John Arbash Meinel
Change the APIs for VersionedFile, Store, and some of Repository into utf-8
658
        self.assertRaises(RevisionNotPresent, index.get_ancestry, ["e"])
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
659
660
    def test_get_ancestry_with_ghosts(self):
661
        transport = MockTransport([
662
            _KnitIndex.HEADER,
663
            "a option 0 1 :",
664
            "b option 0 1 0 .e :",
665
            "c option 0 1 0 .f .g :",
666
            "d option 0 1 2 .h .j .k :"
667
            ])
2484.1.1 by John Arbash Meinel
Add an initial function to read knit indexes in pyrex.
668
        index = self.get_knit_index(transport, "filename", "r")
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
669
670
        self.assertEqual([], index.get_ancestry_with_ghosts([]))
2249.5.12 by John Arbash Meinel
Change the APIs for VersionedFile, Store, and some of Repository into utf-8
671
        self.assertEqual(["a"], index.get_ancestry_with_ghosts(["a"]))
672
        self.assertEqual(["a", "e", "b"],
673
            index.get_ancestry_with_ghosts(["b"]))
674
        self.assertEqual(["a", "g", "f", "c"],
675
            index.get_ancestry_with_ghosts(["c"]))
676
        self.assertEqual(["a", "g", "f", "c", "k", "j", "h", "d"],
677
            index.get_ancestry_with_ghosts(["d"]))
678
        self.assertEqual(["a", "e", "b"],
679
            index.get_ancestry_with_ghosts(["a", "b"]))
680
        self.assertEqual(["a", "g", "f", "c"],
681
            index.get_ancestry_with_ghosts(["a", "c"]))
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
682
        self.assertEqual(
2249.5.12 by John Arbash Meinel
Change the APIs for VersionedFile, Store, and some of Repository into utf-8
683
            ["a", "g", "f", "c", "e", "b", "k", "j", "h", "d"],
684
            index.get_ancestry_with_ghosts(["b", "d"]))
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
685
686
        self.assertRaises(RevisionNotPresent,
2249.5.12 by John Arbash Meinel
Change the APIs for VersionedFile, Store, and some of Repository into utf-8
687
            index.get_ancestry_with_ghosts, ["e"])
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
688
2592.3.43 by Robert Collins
A knit iter_parents API.
689
    def test_iter_parents(self):
690
        transport = MockTransport()
691
        index = self.get_knit_index(transport, "filename", "w", create=True)
692
        # no parents
2592.3.71 by Robert Collins
Basic version of knit-based repository operating, many tests failing.
693
        index.add_version('r0', ['option'], (None, 0, 1), [])
2592.3.43 by Robert Collins
A knit iter_parents API.
694
        # 1 parent
2592.3.71 by Robert Collins
Basic version of knit-based repository operating, many tests failing.
695
        index.add_version('r1', ['option'], (None, 0, 1), ['r0'])
2592.3.43 by Robert Collins
A knit iter_parents API.
696
        # 2 parents
2592.3.71 by Robert Collins
Basic version of knit-based repository operating, many tests failing.
697
        index.add_version('r2', ['option'], (None, 0, 1), ['r1', 'r0'])
2592.3.43 by Robert Collins
A knit iter_parents API.
698
        # XXX TODO a ghost
699
        # cases: each sample data individually:
700
        self.assertEqual(set([('r0', ())]),
701
            set(index.iter_parents(['r0'])))
702
        self.assertEqual(set([('r1', ('r0', ))]),
703
            set(index.iter_parents(['r1'])))
704
        self.assertEqual(set([('r2', ('r1', 'r0'))]),
705
            set(index.iter_parents(['r2'])))
706
        # no nodes returned for a missing node
707
        self.assertEqual(set(),
708
            set(index.iter_parents(['missing'])))
709
        # 1 node returned with missing nodes skipped
710
        self.assertEqual(set([('r1', ('r0', ))]),
711
            set(index.iter_parents(['ghost1', 'r1', 'ghost'])))
712
        # 2 nodes returned
713
        self.assertEqual(set([('r0', ()), ('r1', ('r0', ))]),
714
            set(index.iter_parents(['r0', 'r1'])))
715
        # 2 nodes returned, missing skipped
716
        self.assertEqual(set([('r0', ()), ('r1', ('r0', ))]),
717
            set(index.iter_parents(['a', 'r0', 'b', 'r1', 'c'])))
718
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
719
    def test_num_versions(self):
720
        transport = MockTransport([
721
            _KnitIndex.HEADER
722
            ])
2484.1.1 by John Arbash Meinel
Add an initial function to read knit indexes in pyrex.
723
        index = self.get_knit_index(transport, "filename", "r")
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
724
725
        self.assertEqual(0, index.num_versions())
726
        self.assertEqual(0, len(index))
727
2592.3.71 by Robert Collins
Basic version of knit-based repository operating, many tests failing.
728
        index.add_version("a", ["option"], (None, 0, 1), [])
729
        self.assertEqual(1, index.num_versions())
730
        self.assertEqual(1, len(index))
731
732
        index.add_version("a", ["option2"], (None, 1, 2), [])
733
        self.assertEqual(1, index.num_versions())
734
        self.assertEqual(1, len(index))
735
736
        index.add_version("b", ["option"], (None, 0, 1), [])
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
737
        self.assertEqual(2, index.num_versions())
738
        self.assertEqual(2, len(index))
739
740
    def test_get_versions(self):
741
        transport = MockTransport([
742
            _KnitIndex.HEADER
743
            ])
2484.1.1 by John Arbash Meinel
Add an initial function to read knit indexes in pyrex.
744
        index = self.get_knit_index(transport, "filename", "r")
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
745
746
        self.assertEqual([], index.get_versions())
747
2592.3.71 by Robert Collins
Basic version of knit-based repository operating, many tests failing.
748
        index.add_version("a", ["option"], (None, 0, 1), [])
749
        self.assertEqual(["a"], index.get_versions())
750
751
        index.add_version("a", ["option"], (None, 0, 1), [])
752
        self.assertEqual(["a"], index.get_versions())
753
754
        index.add_version("b", ["option"], (None, 0, 1), [])
2249.5.12 by John Arbash Meinel
Change the APIs for VersionedFile, Store, and some of Repository into utf-8
755
        self.assertEqual(["a", "b"], index.get_versions())
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
756
757
    def test_add_version(self):
758
        transport = MockTransport([
759
            _KnitIndex.HEADER
760
            ])
2484.1.1 by John Arbash Meinel
Add an initial function to read knit indexes in pyrex.
761
        index = self.get_knit_index(transport, "filename", "r")
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
762
2592.3.71 by Robert Collins
Basic version of knit-based repository operating, many tests failing.
763
        index.add_version("a", ["option"], (None, 0, 1), ["b"])
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
764
        self.assertEqual(("append_bytes",
765
            ("filename", "\na option 0 1 .b :"),
766
            {}), transport.calls.pop(0))
2249.5.12 by John Arbash Meinel
Change the APIs for VersionedFile, Store, and some of Repository into utf-8
767
        self.assertTrue(index.has_version("a"))
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
768
        self.assertEqual(1, index.num_versions())
2592.3.71 by Robert Collins
Basic version of knit-based repository operating, many tests failing.
769
        self.assertEqual((None, 0, 1), index.get_position("a"))
2249.5.12 by John Arbash Meinel
Change the APIs for VersionedFile, Store, and some of Repository into utf-8
770
        self.assertEqual(["option"], index.get_options("a"))
771
        self.assertEqual(["b"], index.get_parents_with_ghosts("a"))
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
772
2592.3.71 by Robert Collins
Basic version of knit-based repository operating, many tests failing.
773
        index.add_version("a", ["opt"], (None, 1, 2), ["c"])
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
774
        self.assertEqual(("append_bytes",
775
            ("filename", "\na opt 1 2 .c :"),
776
            {}), transport.calls.pop(0))
2249.5.12 by John Arbash Meinel
Change the APIs for VersionedFile, Store, and some of Repository into utf-8
777
        self.assertTrue(index.has_version("a"))
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
778
        self.assertEqual(1, index.num_versions())
2592.3.71 by Robert Collins
Basic version of knit-based repository operating, many tests failing.
779
        self.assertEqual((None, 1, 2), index.get_position("a"))
2249.5.12 by John Arbash Meinel
Change the APIs for VersionedFile, Store, and some of Repository into utf-8
780
        self.assertEqual(["opt"], index.get_options("a"))
781
        self.assertEqual(["c"], index.get_parents_with_ghosts("a"))
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
782
2592.3.71 by Robert Collins
Basic version of knit-based repository operating, many tests failing.
783
        index.add_version("b", ["option"], (None, 2, 3), ["a"])
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
784
        self.assertEqual(("append_bytes",
785
            ("filename", "\nb option 2 3 0 :"),
786
            {}), transport.calls.pop(0))
2249.5.12 by John Arbash Meinel
Change the APIs for VersionedFile, Store, and some of Repository into utf-8
787
        self.assertTrue(index.has_version("b"))
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
788
        self.assertEqual(2, index.num_versions())
2592.3.71 by Robert Collins
Basic version of knit-based repository operating, many tests failing.
789
        self.assertEqual((None, 2, 3), index.get_position("b"))
2249.5.12 by John Arbash Meinel
Change the APIs for VersionedFile, Store, and some of Repository into utf-8
790
        self.assertEqual(["option"], index.get_options("b"))
791
        self.assertEqual(["a"], index.get_parents_with_ghosts("b"))
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
792
793
    def test_add_versions(self):
794
        transport = MockTransport([
795
            _KnitIndex.HEADER
796
            ])
2484.1.1 by John Arbash Meinel
Add an initial function to read knit indexes in pyrex.
797
        index = self.get_knit_index(transport, "filename", "r")
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
798
799
        index.add_versions([
2592.3.71 by Robert Collins
Basic version of knit-based repository operating, many tests failing.
800
            ("a", ["option"], (None, 0, 1), ["b"]),
801
            ("a", ["opt"], (None, 1, 2), ["c"]),
802
            ("b", ["option"], (None, 2, 3), ["a"])
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
803
            ])
804
        self.assertEqual(("append_bytes", ("filename",
805
            "\na option 0 1 .b :"
806
            "\na opt 1 2 .c :"
807
            "\nb option 2 3 0 :"
808
            ), {}), transport.calls.pop(0))
2249.5.12 by John Arbash Meinel
Change the APIs for VersionedFile, Store, and some of Repository into utf-8
809
        self.assertTrue(index.has_version("a"))
810
        self.assertTrue(index.has_version("b"))
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
811
        self.assertEqual(2, index.num_versions())
2592.3.71 by Robert Collins
Basic version of knit-based repository operating, many tests failing.
812
        self.assertEqual((None, 1, 2), index.get_position("a"))
813
        self.assertEqual((None, 2, 3), index.get_position("b"))
2249.5.12 by John Arbash Meinel
Change the APIs for VersionedFile, Store, and some of Repository into utf-8
814
        self.assertEqual(["opt"], index.get_options("a"))
815
        self.assertEqual(["option"], index.get_options("b"))
816
        self.assertEqual(["c"], index.get_parents_with_ghosts("a"))
817
        self.assertEqual(["a"], index.get_parents_with_ghosts("b"))
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
818
2841.2.1 by Robert Collins
* Commit no longer checks for new text keys during insertion when the
819
    def test_add_versions_random_id_is_accepted(self):
820
        transport = MockTransport([
821
            _KnitIndex.HEADER
822
            ])
823
        index = self.get_knit_index(transport, "filename", "r")
824
825
        index.add_versions([
826
            ("a", ["option"], (None, 0, 1), ["b"]),
827
            ("a", ["opt"], (None, 1, 2), ["c"]),
828
            ("b", ["option"], (None, 2, 3), ["a"])
829
            ], random_id=True)
830
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
831
    def test_delay_create_and_add_versions(self):
832
        transport = MockTransport()
833
2484.1.1 by John Arbash Meinel
Add an initial function to read knit indexes in pyrex.
834
        index = self.get_knit_index(transport, "filename", "w",
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
835
            create=True, file_mode="wb", create_parent_dir=True,
836
            delay_create=True, dir_mode=0777)
837
        self.assertEqual([], transport.calls)
838
839
        index.add_versions([
2592.3.71 by Robert Collins
Basic version of knit-based repository operating, many tests failing.
840
            ("a", ["option"], (None, 0, 1), ["b"]),
841
            ("a", ["opt"], (None, 1, 2), ["c"]),
842
            ("b", ["option"], (None, 2, 3), ["a"])
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
843
            ])
844
        name, (filename, f), kwargs = transport.calls.pop(0)
845
        self.assertEqual("put_file_non_atomic", name)
846
        self.assertEqual(
847
            {"dir_mode": 0777, "create_parent_dir": True, "mode": "wb"},
848
            kwargs)
849
        self.assertEqual("filename", filename)
850
        self.assertEqual(
851
            index.HEADER +
852
            "\na option 0 1 .b :"
853
            "\na opt 1 2 .c :"
854
            "\nb option 2 3 0 :",
855
            f.read())
856
857
    def test_has_version(self):
858
        transport = MockTransport([
859
            _KnitIndex.HEADER,
860
            "a option 0 1 :"
861
            ])
2484.1.1 by John Arbash Meinel
Add an initial function to read knit indexes in pyrex.
862
        index = self.get_knit_index(transport, "filename", "r")
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
863
2249.5.12 by John Arbash Meinel
Change the APIs for VersionedFile, Store, and some of Repository into utf-8
864
        self.assertTrue(index.has_version("a"))
865
        self.assertFalse(index.has_version("b"))
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
866
867
    def test_get_position(self):
868
        transport = MockTransport([
869
            _KnitIndex.HEADER,
870
            "a option 0 1 :",
871
            "b option 1 2 :"
872
            ])
2484.1.1 by John Arbash Meinel
Add an initial function to read knit indexes in pyrex.
873
        index = self.get_knit_index(transport, "filename", "r")
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
874
2592.3.71 by Robert Collins
Basic version of knit-based repository operating, many tests failing.
875
        self.assertEqual((None, 0, 1), index.get_position("a"))
876
        self.assertEqual((None, 1, 2), index.get_position("b"))
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
877
878
    def test_get_method(self):
879
        transport = MockTransport([
880
            _KnitIndex.HEADER,
881
            "a fulltext,unknown 0 1 :",
882
            "b unknown,line-delta 1 2 :",
883
            "c bad 3 4 :"
884
            ])
2484.1.1 by John Arbash Meinel
Add an initial function to read knit indexes in pyrex.
885
        index = self.get_knit_index(transport, "filename", "r")
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
886
2249.5.12 by John Arbash Meinel
Change the APIs for VersionedFile, Store, and some of Repository into utf-8
887
        self.assertEqual("fulltext", index.get_method("a"))
888
        self.assertEqual("line-delta", index.get_method("b"))
889
        self.assertRaises(errors.KnitIndexUnknownMethod, index.get_method, "c")
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
890
891
    def test_get_options(self):
892
        transport = MockTransport([
893
            _KnitIndex.HEADER,
894
            "a opt1 0 1 :",
895
            "b opt2,opt3 1 2 :"
896
            ])
2484.1.1 by John Arbash Meinel
Add an initial function to read knit indexes in pyrex.
897
        index = self.get_knit_index(transport, "filename", "r")
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
898
2249.5.12 by John Arbash Meinel
Change the APIs for VersionedFile, Store, and some of Repository into utf-8
899
        self.assertEqual(["opt1"], index.get_options("a"))
900
        self.assertEqual(["opt2", "opt3"], index.get_options("b"))
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
901
902
    def test_get_parents(self):
903
        transport = MockTransport([
904
            _KnitIndex.HEADER,
905
            "a option 0 1 :",
906
            "b option 1 2 0 .c :",
907
            "c option 1 2 1 0 .e :"
908
            ])
2484.1.1 by John Arbash Meinel
Add an initial function to read knit indexes in pyrex.
909
        index = self.get_knit_index(transport, "filename", "r")
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
910
2249.5.12 by John Arbash Meinel
Change the APIs for VersionedFile, Store, and some of Repository into utf-8
911
        self.assertEqual([], index.get_parents("a"))
912
        self.assertEqual(["a", "c"], index.get_parents("b"))
913
        self.assertEqual(["b", "a"], index.get_parents("c"))
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
914
915
    def test_get_parents_with_ghosts(self):
916
        transport = MockTransport([
917
            _KnitIndex.HEADER,
918
            "a option 0 1 :",
919
            "b option 1 2 0 .c :",
920
            "c option 1 2 1 0 .e :"
921
            ])
2484.1.1 by John Arbash Meinel
Add an initial function to read knit indexes in pyrex.
922
        index = self.get_knit_index(transport, "filename", "r")
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
923
2249.5.12 by John Arbash Meinel
Change the APIs for VersionedFile, Store, and some of Repository into utf-8
924
        self.assertEqual([], index.get_parents_with_ghosts("a"))
925
        self.assertEqual(["a", "c"], index.get_parents_with_ghosts("b"))
926
        self.assertEqual(["b", "a", "e"],
927
            index.get_parents_with_ghosts("c"))
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
928
929
    def test_check_versions_present(self):
930
        transport = MockTransport([
931
            _KnitIndex.HEADER,
932
            "a option 0 1 :",
933
            "b option 0 1 :"
934
            ])
2484.1.1 by John Arbash Meinel
Add an initial function to read knit indexes in pyrex.
935
        index = self.get_knit_index(transport, "filename", "r")
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
936
937
        check = index.check_versions_present
938
939
        check([])
2249.5.12 by John Arbash Meinel
Change the APIs for VersionedFile, Store, and some of Repository into utf-8
940
        check(["a"])
941
        check(["b"])
942
        check(["a", "b"])
943
        self.assertRaises(RevisionNotPresent, check, ["c"])
944
        self.assertRaises(RevisionNotPresent, check, ["a", "b", "c"])
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
945
2484.1.13 by John Arbash Meinel
Add a test that KnitCorrupt is raised when parent strings are invalid.
946
    def test_impossible_parent(self):
947
        """Test we get KnitCorrupt if the parent couldn't possibly exist."""
948
        transport = MockTransport([
949
            _KnitIndex.HEADER,
950
            "a option 0 1 :",
951
            "b option 0 1 4 :"  # We don't have a 4th record
952
            ])
2484.1.17 by John Arbash Meinel
Workaround for Pyrex <0.9.5 and python >=2.5 incompatibilities.
953
        try:
954
            self.assertRaises(errors.KnitCorrupt,
955
                              self.get_knit_index, transport, 'filename', 'r')
956
        except TypeError, e:
957
            if (str(e) == ('exceptions must be strings, classes, or instances,'
958
                           ' not exceptions.IndexError')
959
                and sys.version_info[0:2] >= (2,5)):
960
                self.knownFailure('Pyrex <0.9.5 fails with TypeError when'
961
                                  ' raising new style exceptions with python'
962
                                  ' >=2.5')
2484.1.19 by John Arbash Meinel
Don't suppress the TypeError if it doesn't match our requirements.
963
            else:
964
                raise
2484.1.13 by John Arbash Meinel
Add a test that KnitCorrupt is raised when parent strings are invalid.
965
966
    def test_corrupted_parent(self):
967
        transport = MockTransport([
968
            _KnitIndex.HEADER,
969
            "a option 0 1 :",
970
            "b option 0 1 :",
971
            "c option 0 1 1v :", # Can't have a parent of '1v'
972
            ])
2484.1.17 by John Arbash Meinel
Workaround for Pyrex <0.9.5 and python >=2.5 incompatibilities.
973
        try:
974
            self.assertRaises(errors.KnitCorrupt,
975
                              self.get_knit_index, transport, 'filename', 'r')
976
        except TypeError, e:
977
            if (str(e) == ('exceptions must be strings, classes, or instances,'
978
                           ' not exceptions.ValueError')
979
                and sys.version_info[0:2] >= (2,5)):
980
                self.knownFailure('Pyrex <0.9.5 fails with TypeError when'
981
                                  ' raising new style exceptions with python'
982
                                  ' >=2.5')
2484.1.19 by John Arbash Meinel
Don't suppress the TypeError if it doesn't match our requirements.
983
            else:
984
                raise
2484.1.13 by John Arbash Meinel
Add a test that KnitCorrupt is raised when parent strings are invalid.
985
986
    def test_corrupted_parent_in_list(self):
987
        transport = MockTransport([
988
            _KnitIndex.HEADER,
989
            "a option 0 1 :",
990
            "b option 0 1 :",
2484.1.17 by John Arbash Meinel
Workaround for Pyrex <0.9.5 and python >=2.5 incompatibilities.
991
            "c option 0 1 1 v :", # Can't have a parent of 'v'
2484.1.13 by John Arbash Meinel
Add a test that KnitCorrupt is raised when parent strings are invalid.
992
            ])
2484.1.17 by John Arbash Meinel
Workaround for Pyrex <0.9.5 and python >=2.5 incompatibilities.
993
        try:
994
            self.assertRaises(errors.KnitCorrupt,
995
                              self.get_knit_index, transport, 'filename', 'r')
996
        except TypeError, e:
997
            if (str(e) == ('exceptions must be strings, classes, or instances,'
998
                           ' not exceptions.ValueError')
999
                and sys.version_info[0:2] >= (2,5)):
1000
                self.knownFailure('Pyrex <0.9.5 fails with TypeError when'
1001
                                  ' raising new style exceptions with python'
1002
                                  ' >=2.5')
2484.1.19 by John Arbash Meinel
Don't suppress the TypeError if it doesn't match our requirements.
1003
            else:
1004
                raise
2484.1.13 by John Arbash Meinel
Add a test that KnitCorrupt is raised when parent strings are invalid.
1005
2484.1.18 by John Arbash Meinel
Test that we properly verify the size and position strings.
1006
    def test_invalid_position(self):
1007
        transport = MockTransport([
1008
            _KnitIndex.HEADER,
1009
            "a option 1v 1 :",
1010
            ])
1011
        try:
1012
            self.assertRaises(errors.KnitCorrupt,
1013
                              self.get_knit_index, transport, 'filename', 'r')
1014
        except TypeError, e:
1015
            if (str(e) == ('exceptions must be strings, classes, or instances,'
1016
                           ' not exceptions.ValueError')
1017
                and sys.version_info[0:2] >= (2,5)):
1018
                self.knownFailure('Pyrex <0.9.5 fails with TypeError when'
1019
                                  ' raising new style exceptions with python'
1020
                                  ' >=2.5')
2484.1.19 by John Arbash Meinel
Don't suppress the TypeError if it doesn't match our requirements.
1021
            else:
1022
                raise
2484.1.18 by John Arbash Meinel
Test that we properly verify the size and position strings.
1023
1024
    def test_invalid_size(self):
1025
        transport = MockTransport([
1026
            _KnitIndex.HEADER,
1027
            "a option 1 1v :",
1028
            ])
1029
        try:
1030
            self.assertRaises(errors.KnitCorrupt,
1031
                              self.get_knit_index, transport, 'filename', 'r')
1032
        except TypeError, e:
1033
            if (str(e) == ('exceptions must be strings, classes, or instances,'
1034
                           ' not exceptions.ValueError')
1035
                and sys.version_info[0:2] >= (2,5)):
1036
                self.knownFailure('Pyrex <0.9.5 fails with TypeError when'
1037
                                  ' raising new style exceptions with python'
1038
                                  ' >=2.5')
2484.1.19 by John Arbash Meinel
Don't suppress the TypeError if it doesn't match our requirements.
1039
            else:
1040
                raise
2484.1.18 by John Arbash Meinel
Test that we properly verify the size and position strings.
1041
2484.1.24 by John Arbash Meinel
Add direct tests of how we handle incomplete/'broken' lines
1042
    def test_short_line(self):
1043
        transport = MockTransport([
1044
            _KnitIndex.HEADER,
1045
            "a option 0 10  :",
1046
            "b option 10 10 0", # This line isn't terminated, ignored
1047
            ])
1048
        index = self.get_knit_index(transport, "filename", "r")
1049
        self.assertEqual(['a'], index.get_versions())
1050
1051
    def test_skip_incomplete_record(self):
1052
        # A line with bogus data should just be skipped
1053
        transport = MockTransport([
1054
            _KnitIndex.HEADER,
1055
            "a option 0 10  :",
1056
            "b option 10 10 0", # This line isn't terminated, ignored
1057
            "c option 20 10 0 :", # Properly terminated, and starts with '\n'
1058
            ])
1059
        index = self.get_knit_index(transport, "filename", "r")
1060
        self.assertEqual(['a', 'c'], index.get_versions())
1061
1062
    def test_trailing_characters(self):
1063
        # A line with bogus data should just be skipped
1064
        transport = MockTransport([
1065
            _KnitIndex.HEADER,
1066
            "a option 0 10  :",
1067
            "b option 10 10 0 :a", # This line has extra trailing characters
1068
            "c option 20 10 0 :", # Properly terminated, and starts with '\n'
1069
            ])
1070
        index = self.get_knit_index(transport, "filename", "r")
1071
        self.assertEqual(['a', 'c'], index.get_versions())
1072
2158.3.1 by Dmitry Vasiliev
KnitIndex tests/fixes/optimizations
1073
2484.1.1 by John Arbash Meinel
Add an initial function to read knit indexes in pyrex.
1074
class LowLevelKnitIndexTests_c(LowLevelKnitIndexTests):
1075
1076
    _test_needs_features = [CompiledKnitFeature]
1077
1078
    def get_knit_index(self, *args, **kwargs):
1079
        orig = knit._load_data
1080
        def reset():
1081
            knit._load_data = orig
1082
        self.addCleanup(reset)
2484.1.12 by John Arbash Meinel
Switch the layout to use a matching _knit_load_data_py.py and _knit_load_data_c.pyx
1083
        from bzrlib._knit_load_data_c import _load_data_c
1084
        knit._load_data = _load_data_c
2484.1.1 by John Arbash Meinel
Add an initial function to read knit indexes in pyrex.
1085
        return _KnitIndex(*args, **kwargs)
1086
1087
1088
1684.3.3 by Robert Collins
Add a special cased weaves to knit converter.
1089
class KnitTests(TestCaseWithTransport):
1090
    """Class containing knit test helper routines."""
1563.2.16 by Robert Collins
Change WeaveStore into VersionedFileStore and make its versoined file class parameterisable.
1091
2535.3.27 by Andrew Bennetts
Merge from bzr.dev.
1092
    def make_test_knit(self, annotate=False, delay_create=False, index=None,
1093
                       name='test'):
1563.2.16 by Robert Collins
Change WeaveStore into VersionedFileStore and make its versoined file class parameterisable.
1094
        if not annotate:
1095
            factory = KnitPlainFactory()
1096
        else:
1097
            factory = None
2535.3.4 by Andrew Bennetts
Simple implementation of Knit.insert_data_stream.
1098
        return KnitVersionedFile(name, get_transport('.'), access_mode='w',
1946.2.1 by John Arbash Meinel
2 changes to knits. Delay creating the .knit or .kndx file until we have actually tried to write data. Because of this, we must allow the Knit to create the prefix directories
1099
                                 factory=factory, create=True,
2592.3.2 by Robert Collins
Implement a get_graph for a new KnitGraphIndex that will implement a KnitIndex on top of the GraphIndex API.
1100
                                 delay_create=delay_create, index=index)
1563.2.4 by Robert Collins
First cut at including the knit implementation of versioned_file.
1101
2535.3.53 by Andrew Bennetts
Remove get_stream_as_bytes from KnitVersionedFile's API, make it a function in knitrepo.py instead.
1102
    def assertRecordContentEqual(self, knit, version_id, candidate_content):
1103
        """Assert that some raw record content matches the raw record content
1104
        for a particular version_id in the given knit.
1105
        """
1106
        index_memo = knit._index.get_position(version_id)
1107
        record = (version_id, index_memo)
1108
        [(_, expected_content)] = list(knit._data.read_records_iter_raw([record]))
1109
        self.assertEqual(expected_content, candidate_content)
1110
1684.3.3 by Robert Collins
Add a special cased weaves to knit converter.
1111
1112
class BasicKnitTests(KnitTests):
1113
1114
    def add_stock_one_and_one_a(self, k):
1115
        k.add_lines('text-1', [], split_lines(TEXT_1))
1116
        k.add_lines('text-1a', ['text-1'], split_lines(TEXT_1A))
1117
1118
    def test_knit_constructor(self):
1119
        """Construct empty k"""
1120
        self.make_test_knit()
1121
2592.3.1 by Robert Collins
Allow giving KnitVersionedFile an index object to use rather than implicitly creating one.
1122
    def test_make_explicit_index(self):
1123
        """We can supply an index to use."""
1124
        knit = KnitVersionedFile('test', get_transport('.'),
1125
            index='strangelove')
1126
        self.assertEqual(knit._index, 'strangelove')
1127
1563.2.4 by Robert Collins
First cut at including the knit implementation of versioned_file.
1128
    def test_knit_add(self):
1129
        """Store one text in knit and retrieve"""
1563.2.16 by Robert Collins
Change WeaveStore into VersionedFileStore and make its versoined file class parameterisable.
1130
        k = self.make_test_knit()
1563.2.4 by Robert Collins
First cut at including the knit implementation of versioned_file.
1131
        k.add_lines('text-1', [], split_lines(TEXT_1))
1132
        self.assertTrue(k.has_version('text-1'))
1133
        self.assertEqualDiff(''.join(k.get_lines('text-1')), TEXT_1)
1134
1135
    def test_knit_reload(self):
1641.1.2 by Robert Collins
Change knit index files to be robust in the presence of partial writes.
1136
        # test that the content in a reloaded knit is correct
1563.2.16 by Robert Collins
Change WeaveStore into VersionedFileStore and make its versoined file class parameterisable.
1137
        k = self.make_test_knit()
1563.2.4 by Robert Collins
First cut at including the knit implementation of versioned_file.
1138
        k.add_lines('text-1', [], split_lines(TEXT_1))
1139
        del k
1685.1.39 by John Arbash Meinel
Updating test_knit to not instantiate a LocalTransport directly.
1140
        k2 = KnitVersionedFile('test', get_transport('.'), access_mode='r', factory=KnitPlainFactory(), create=True)
1563.2.4 by Robert Collins
First cut at including the knit implementation of versioned_file.
1141
        self.assertTrue(k2.has_version('text-1'))
1142
        self.assertEqualDiff(''.join(k2.get_lines('text-1')), TEXT_1)
1143
1144
    def test_knit_several(self):
1145
        """Store several texts in a knit"""
1563.2.16 by Robert Collins
Change WeaveStore into VersionedFileStore and make its versoined file class parameterisable.
1146
        k = self.make_test_knit()
1563.2.4 by Robert Collins
First cut at including the knit implementation of versioned_file.
1147
        k.add_lines('text-1', [], split_lines(TEXT_1))
1148
        k.add_lines('text-2', [], split_lines(TEXT_2))
1149
        self.assertEqualDiff(''.join(k.get_lines('text-1')), TEXT_1)
1150
        self.assertEqualDiff(''.join(k.get_lines('text-2')), TEXT_2)
1151
        
1152
    def test_repeated_add(self):
1153
        """Knit traps attempt to replace existing version"""
1563.2.16 by Robert Collins
Change WeaveStore into VersionedFileStore and make its versoined file class parameterisable.
1154
        k = self.make_test_knit()
1563.2.4 by Robert Collins
First cut at including the knit implementation of versioned_file.
1155
        k.add_lines('text-1', [], split_lines(TEXT_1))
1156
        self.assertRaises(RevisionAlreadyPresent, 
1157
                k.add_lines,
1158
                'text-1', [], split_lines(TEXT_1))
1159
1160
    def test_empty(self):
1563.2.16 by Robert Collins
Change WeaveStore into VersionedFileStore and make its versoined file class parameterisable.
1161
        k = self.make_test_knit(True)
1563.2.4 by Robert Collins
First cut at including the knit implementation of versioned_file.
1162
        k.add_lines('text-1', [], [])
1163
        self.assertEquals(k.get_lines('text-1'), [])
1164
1165
    def test_incomplete(self):
1166
        """Test if texts without a ending line-end can be inserted and
1167
        extracted."""
1685.1.39 by John Arbash Meinel
Updating test_knit to not instantiate a LocalTransport directly.
1168
        k = KnitVersionedFile('test', get_transport('.'), delta=False, create=True)
1563.2.4 by Robert Collins
First cut at including the knit implementation of versioned_file.
1169
        k.add_lines('text-1', [], ['a\n',    'b'  ])
1170
        k.add_lines('text-2', ['text-1'], ['a\rb\n', 'b\n'])
1666.1.6 by Robert Collins
Make knit the default format.
1171
        # reopening ensures maximum room for confusion
1685.1.39 by John Arbash Meinel
Updating test_knit to not instantiate a LocalTransport directly.
1172
        k = KnitVersionedFile('test', get_transport('.'), delta=False, create=True)
1563.2.4 by Robert Collins
First cut at including the knit implementation of versioned_file.
1173
        self.assertEquals(k.get_lines('text-1'), ['a\n',    'b'  ])
1174
        self.assertEquals(k.get_lines('text-2'), ['a\rb\n', 'b\n'])
1175
1176
    def test_delta(self):
1177
        """Expression of knit delta as lines"""
1563.2.16 by Robert Collins
Change WeaveStore into VersionedFileStore and make its versoined file class parameterisable.
1178
        k = self.make_test_knit()
1563.2.4 by Robert Collins
First cut at including the knit implementation of versioned_file.
1179
        td = list(line_delta(TEXT_1.splitlines(True),
1180
                             TEXT_1A.splitlines(True)))
1181
        self.assertEqualDiff(''.join(td), delta_1_1a)
1182
        out = apply_line_delta(TEXT_1.splitlines(True), td)
1183
        self.assertEqualDiff(''.join(out), TEXT_1A)
1184
1185
    def test_add_with_parents(self):
1186
        """Store in knit with parents"""
1563.2.16 by Robert Collins
Change WeaveStore into VersionedFileStore and make its versoined file class parameterisable.
1187
        k = self.make_test_knit()
1563.2.4 by Robert Collins
First cut at including the knit implementation of versioned_file.
1188
        self.add_stock_one_and_one_a(k)
1189
        self.assertEquals(k.get_parents('text-1'), [])
1190
        self.assertEquals(k.get_parents('text-1a'), ['text-1'])
1191
1192
    def test_ancestry(self):
1193
        """Store in knit with parents"""
1563.2.16 by Robert Collins
Change WeaveStore into VersionedFileStore and make its versoined file class parameterisable.
1194
        k = self.make_test_knit()
1563.2.4 by Robert Collins
First cut at including the knit implementation of versioned_file.
1195
        self.add_stock_one_and_one_a(k)
1196
        self.assertEquals(set(k.get_ancestry(['text-1a'])), set(['text-1a', 'text-1']))
1197
1198
    def test_add_delta(self):
1199
        """Store in knit with parents"""
1685.1.39 by John Arbash Meinel
Updating test_knit to not instantiate a LocalTransport directly.
1200
        k = KnitVersionedFile('test', get_transport('.'), factory=KnitPlainFactory(),
1563.2.25 by Robert Collins
Merge in upstream.
1201
            delta=True, create=True)
1563.2.4 by Robert Collins
First cut at including the knit implementation of versioned_file.
1202
        self.add_stock_one_and_one_a(k)
1596.2.7 by Robert Collins
Remove the requirement for reannotation in knit joins.
1203
        k.clear_cache()
1563.2.4 by Robert Collins
First cut at including the knit implementation of versioned_file.
1204
        self.assertEqualDiff(''.join(k.get_lines('text-1a')), TEXT_1A)
1205
2592.3.21 by Robert Collins
Test using a KnitGraphIndex for storage.
1206
    def test_add_delta_knit_graph_index(self):
1207
        """Does adding work with a KnitGraphIndex."""
1208
        index = InMemoryGraphIndex(2)
1209
        knit_index = KnitGraphIndex(index, add_callback=index.add_nodes,
1210
            deltas=True)
1211
        k = KnitVersionedFile('test', get_transport('.'),
1212
            delta=True, create=True, index=knit_index)
1213
        self.add_stock_one_and_one_a(k)
1214
        k.clear_cache()
1215
        self.assertEqualDiff(''.join(k.get_lines('text-1a')), TEXT_1A)
1216
        # check the index had the right data added.
1217
        self.assertEqual(set([
2624.2.14 by Robert Collins
Add source index to the index iteration API to allow mapping back to the origin of retrieved data.
1218
            (index, ('text-1', ), ' 0 127', ((), ())),
1219
            (index, ('text-1a', ), ' 127 140', ((('text-1', ),), (('text-1', ),))),
2592.3.21 by Robert Collins
Test using a KnitGraphIndex for storage.
1220
            ]), set(index.iter_all_entries()))
1221
        # we should not have a .kndx file
1222
        self.assertFalse(get_transport('.').has('test.kndx'))
1223
1563.2.4 by Robert Collins
First cut at including the knit implementation of versioned_file.
1224
    def test_annotate(self):
1225
        """Annotations"""
1685.1.39 by John Arbash Meinel
Updating test_knit to not instantiate a LocalTransport directly.
1226
        k = KnitVersionedFile('knit', get_transport('.'), factory=KnitAnnotateFactory(),
1563.2.25 by Robert Collins
Merge in upstream.
1227
            delta=True, create=True)
1563.2.4 by Robert Collins
First cut at including the knit implementation of versioned_file.
1228
        self.insert_and_test_small_annotate(k)
1229
1230
    def insert_and_test_small_annotate(self, k):
1231
        """test annotation with k works correctly."""
1232
        k.add_lines('text-1', [], ['a\n', 'b\n'])
1233
        k.add_lines('text-2', ['text-1'], ['a\n', 'c\n'])
1234
1235
        origins = k.annotate('text-2')
1236
        self.assertEquals(origins[0], ('text-1', 'a\n'))
1237
        self.assertEquals(origins[1], ('text-2', 'c\n'))
1238
1239
    def test_annotate_fulltext(self):
1240
        """Annotations"""
1685.1.39 by John Arbash Meinel
Updating test_knit to not instantiate a LocalTransport directly.
1241
        k = KnitVersionedFile('knit', get_transport('.'), factory=KnitAnnotateFactory(),
1563.2.25 by Robert Collins
Merge in upstream.
1242
            delta=False, create=True)
1563.2.4 by Robert Collins
First cut at including the knit implementation of versioned_file.
1243
        self.insert_and_test_small_annotate(k)
1244
1245
    def test_annotate_merge_1(self):
1563.2.16 by Robert Collins
Change WeaveStore into VersionedFileStore and make its versoined file class parameterisable.
1246
        k = self.make_test_knit(True)
1563.2.4 by Robert Collins
First cut at including the knit implementation of versioned_file.
1247
        k.add_lines('text-a1', [], ['a\n', 'b\n'])
1248
        k.add_lines('text-a2', [], ['d\n', 'c\n'])
1249
        k.add_lines('text-am', ['text-a1', 'text-a2'], ['d\n', 'b\n'])
1250
        origins = k.annotate('text-am')
1251
        self.assertEquals(origins[0], ('text-a2', 'd\n'))
1252
        self.assertEquals(origins[1], ('text-a1', 'b\n'))
1253
1254
    def test_annotate_merge_2(self):
1563.2.16 by Robert Collins
Change WeaveStore into VersionedFileStore and make its versoined file class parameterisable.
1255
        k = self.make_test_knit(True)
1563.2.4 by Robert Collins
First cut at including the knit implementation of versioned_file.
1256
        k.add_lines('text-a1', [], ['a\n', 'b\n', 'c\n'])
1257
        k.add_lines('text-a2', [], ['x\n', 'y\n', 'z\n'])
1258
        k.add_lines('text-am', ['text-a1', 'text-a2'], ['a\n', 'y\n', 'c\n'])
1259
        origins = k.annotate('text-am')
1260
        self.assertEquals(origins[0], ('text-a1', 'a\n'))
1261
        self.assertEquals(origins[1], ('text-a2', 'y\n'))
1262
        self.assertEquals(origins[2], ('text-a1', 'c\n'))
1263
1264
    def test_annotate_merge_9(self):
1563.2.16 by Robert Collins
Change WeaveStore into VersionedFileStore and make its versoined file class parameterisable.
1265
        k = self.make_test_knit(True)
1563.2.4 by Robert Collins
First cut at including the knit implementation of versioned_file.
1266
        k.add_lines('text-a1', [], ['a\n', 'b\n', 'c\n'])
1267
        k.add_lines('text-a2', [], ['x\n', 'y\n', 'z\n'])
1268
        k.add_lines('text-am', ['text-a1', 'text-a2'], ['k\n', 'y\n', 'c\n'])
1269
        origins = k.annotate('text-am')
1270
        self.assertEquals(origins[0], ('text-am', 'k\n'))
1271
        self.assertEquals(origins[1], ('text-a2', 'y\n'))
1272
        self.assertEquals(origins[2], ('text-a1', 'c\n'))
1273
1274
    def test_annotate_merge_3(self):
1563.2.16 by Robert Collins
Change WeaveStore into VersionedFileStore and make its versoined file class parameterisable.
1275
        k = self.make_test_knit(True)
1563.2.4 by Robert Collins
First cut at including the knit implementation of versioned_file.
1276
        k.add_lines('text-a1', [], ['a\n', 'b\n', 'c\n'])
1277
        k.add_lines('text-a2', [] ,['x\n', 'y\n', 'z\n'])
1278
        k.add_lines('text-am', ['text-a1', 'text-a2'], ['k\n', 'y\n', 'z\n'])
1279
        origins = k.annotate('text-am')
1280
        self.assertEquals(origins[0], ('text-am', 'k\n'))
1281
        self.assertEquals(origins[1], ('text-a2', 'y\n'))
1282
        self.assertEquals(origins[2], ('text-a2', 'z\n'))
1283
1284
    def test_annotate_merge_4(self):
1563.2.16 by Robert Collins
Change WeaveStore into VersionedFileStore and make its versoined file class parameterisable.
1285
        k = self.make_test_knit(True)
1563.2.4 by Robert Collins
First cut at including the knit implementation of versioned_file.
1286
        k.add_lines('text-a1', [], ['a\n', 'b\n', 'c\n'])
1287
        k.add_lines('text-a2', [], ['x\n', 'y\n', 'z\n'])
1288
        k.add_lines('text-a3', ['text-a1'], ['a\n', 'b\n', 'p\n'])
1289
        k.add_lines('text-am', ['text-a2', 'text-a3'], ['a\n', 'b\n', 'z\n'])
1290
        origins = k.annotate('text-am')
1291
        self.assertEquals(origins[0], ('text-a1', 'a\n'))
1292
        self.assertEquals(origins[1], ('text-a1', 'b\n'))
1293
        self.assertEquals(origins[2], ('text-a2', 'z\n'))
1294
1295
    def test_annotate_merge_5(self):
1563.2.16 by Robert Collins
Change WeaveStore into VersionedFileStore and make its versoined file class parameterisable.
1296
        k = self.make_test_knit(True)
1563.2.4 by Robert Collins
First cut at including the knit implementation of versioned_file.
1297
        k.add_lines('text-a1', [], ['a\n', 'b\n', 'c\n'])
1298
        k.add_lines('text-a2', [], ['d\n', 'e\n', 'f\n'])
1299
        k.add_lines('text-a3', [], ['x\n', 'y\n', 'z\n'])
1300
        k.add_lines('text-am',
1301
                    ['text-a1', 'text-a2', 'text-a3'],
1302
                    ['a\n', 'e\n', 'z\n'])
1303
        origins = k.annotate('text-am')
1304
        self.assertEquals(origins[0], ('text-a1', 'a\n'))
1305
        self.assertEquals(origins[1], ('text-a2', 'e\n'))
1306
        self.assertEquals(origins[2], ('text-a3', 'z\n'))
1307
1308
    def test_annotate_file_cherry_pick(self):
1563.2.16 by Robert Collins
Change WeaveStore into VersionedFileStore and make its versoined file class parameterisable.
1309
        k = self.make_test_knit(True)
1563.2.4 by Robert Collins
First cut at including the knit implementation of versioned_file.
1310
        k.add_lines('text-1', [], ['a\n', 'b\n', 'c\n'])
1311
        k.add_lines('text-2', ['text-1'], ['d\n', 'e\n', 'f\n'])
1312
        k.add_lines('text-3', ['text-2', 'text-1'], ['a\n', 'b\n', 'c\n'])
1313
        origins = k.annotate('text-3')
1314
        self.assertEquals(origins[0], ('text-1', 'a\n'))
1315
        self.assertEquals(origins[1], ('text-1', 'b\n'))
1316
        self.assertEquals(origins[2], ('text-1', 'c\n'))
1317
2851.4.6 by Ian Clatworthy
review tweaks
1318
    def _test_join_with_factories(self, k1_factory, k2_factory):
2851.4.1 by Ian Clatworthy
Support joining plain knits to annotated knits and vice versa
1319
        k1 = KnitVersionedFile('test1', get_transport('.'), factory=k1_factory, create=True)
1320
        k1.add_lines('text-a', [], ['a1\n', 'a2\n', 'a3\n'])
1321
        k1.add_lines('text-b', ['text-a'], ['a1\n', 'b2\n', 'a3\n'])
1322
        k1.add_lines('text-c', [], ['c1\n', 'c2\n', 'c3\n'])
1323
        k1.add_lines('text-d', ['text-c'], ['c1\n', 'd2\n', 'd3\n'])
1324
        k1.add_lines('text-m', ['text-b', 'text-d'], ['a1\n', 'b2\n', 'd3\n'])
1325
        k2 = KnitVersionedFile('test2', get_transport('.'), factory=k2_factory, create=True)
2851.4.6 by Ian Clatworthy
review tweaks
1326
        count = k2.join(k1, version_ids=['text-m'])
1327
        self.assertEquals(count, 5)
1328
        self.assertTrue(k2.has_version('text-a'))
1329
        self.assertTrue(k2.has_version('text-c'))
1330
        origins = k2.annotate('text-m')
1331
        self.assertEquals(origins[0], ('text-a', 'a1\n'))
1332
        self.assertEquals(origins[1], ('text-b', 'b2\n'))
1333
        self.assertEquals(origins[2], ('text-d', 'd3\n'))
2851.4.1 by Ian Clatworthy
Support joining plain knits to annotated knits and vice versa
1334
1335
    def test_knit_join_plain_to_plain(self):
1336
        """Test joining a plain knit with a plain knit."""
2851.4.6 by Ian Clatworthy
review tweaks
1337
        self._test_join_with_factories(KnitPlainFactory(), KnitPlainFactory())
2851.4.1 by Ian Clatworthy
Support joining plain knits to annotated knits and vice versa
1338
1339
    def test_knit_join_anno_to_anno(self):
1340
        """Test joining an annotated knit with an annotated knit."""
2851.4.6 by Ian Clatworthy
review tweaks
1341
        self._test_join_with_factories(None, None)
2851.4.1 by Ian Clatworthy
Support joining plain knits to annotated knits and vice versa
1342
1343
    def test_knit_join_anno_to_plain(self):
1344
        """Test joining an annotated knit with a plain knit."""
2851.4.6 by Ian Clatworthy
review tweaks
1345
        self._test_join_with_factories(None, KnitPlainFactory())
2851.4.1 by Ian Clatworthy
Support joining plain knits to annotated knits and vice versa
1346
1347
    def test_knit_join_plain_to_anno(self):
1348
        """Test joining a plain knit with an annotated knit."""
2851.4.6 by Ian Clatworthy
review tweaks
1349
        self._test_join_with_factories(KnitPlainFactory(), None)
1563.2.4 by Robert Collins
First cut at including the knit implementation of versioned_file.
1350
1351
    def test_reannotate(self):
1685.1.39 by John Arbash Meinel
Updating test_knit to not instantiate a LocalTransport directly.
1352
        k1 = KnitVersionedFile('knit1', get_transport('.'),
1563.2.25 by Robert Collins
Merge in upstream.
1353
                               factory=KnitAnnotateFactory(), create=True)
1563.2.4 by Robert Collins
First cut at including the knit implementation of versioned_file.
1354
        # 0
1355
        k1.add_lines('text-a', [], ['a\n', 'b\n'])
1356
        # 1
1357
        k1.add_lines('text-b', ['text-a'], ['a\n', 'c\n'])
1358
1685.1.39 by John Arbash Meinel
Updating test_knit to not instantiate a LocalTransport directly.
1359
        k2 = KnitVersionedFile('test2', get_transport('.'),
1563.2.25 by Robert Collins
Merge in upstream.
1360
                               factory=KnitAnnotateFactory(), create=True)
1563.2.4 by Robert Collins
First cut at including the knit implementation of versioned_file.
1361
        k2.join(k1, version_ids=['text-b'])
1362
1363
        # 2
1364
        k1.add_lines('text-X', ['text-b'], ['a\n', 'b\n'])
1365
        # 2
1366
        k2.add_lines('text-c', ['text-b'], ['z\n', 'c\n'])
1367
        # 3
1368
        k2.add_lines('text-Y', ['text-b'], ['b\n', 'c\n'])
1369
1370
        # test-c will have index 3
1371
        k1.join(k2, version_ids=['text-c'])
1372
1373
        lines = k1.get_lines('text-c')
1374
        self.assertEquals(lines, ['z\n', 'c\n'])
1375
1376
        origins = k1.annotate('text-c')
1594.2.24 by Robert Collins
Make use of the transaction finalisation warning support to implement in-knit caching.
1377
        self.assertEquals(origins[0], ('text-c', 'z\n'))
1378
        self.assertEquals(origins[1], ('text-b', 'c\n'))
1379
1756.3.4 by Aaron Bentley
Fix bug getting texts when line deltas were reused
1380
    def test_get_line_delta_texts(self):
1381
        """Make sure we can call get_texts on text with reused line deltas"""
1382
        k1 = KnitVersionedFile('test1', get_transport('.'), 
1383
                               factory=KnitPlainFactory(), create=True)
1384
        for t in range(3):
1385
            if t == 0:
1386
                parents = []
1387
            else:
1388
                parents = ['%d' % (t-1)]
1389
            k1.add_lines('%d' % t, parents, ['hello\n'] * t)
1390
        k1.get_texts(('%d' % t) for t in range(3))
1594.3.1 by Robert Collins
Merge transaction finalisation and ensure iter_lines_added_or_present in knits does a old-to-new read in the knit.
1391
        
1392
    def test_iter_lines_reads_in_order(self):
2745.5.3 by Robert Collins
* Move transport logging into a new transport class
1393
        instrumented_t = get_transport('trace+memory:///')
1594.3.1 by Robert Collins
Merge transaction finalisation and ensure iter_lines_added_or_present in knits does a old-to-new read in the knit.
1394
        k1 = KnitVersionedFile('id', instrumented_t, create=True, delta=True)
2745.5.3 by Robert Collins
* Move transport logging into a new transport class
1395
        self.assertEqual([('get', 'id.kndx',)], instrumented_t._activity)
1594.3.1 by Robert Collins
Merge transaction finalisation and ensure iter_lines_added_or_present in knits does a old-to-new read in the knit.
1396
        # add texts with no required ordering
1397
        k1.add_lines('base', [], ['text\n'])
1398
        k1.add_lines('base2', [], ['text2\n'])
1399
        k1.clear_cache()
2745.5.4 by Robert Collins
Review feedback.
1400
        # clear the logged activity, but preserve the list instance in case of
1401
        # clones pointing at it.
2745.5.3 by Robert Collins
* Move transport logging into a new transport class
1402
        del instrumented_t._activity[:]
1594.3.1 by Robert Collins
Merge transaction finalisation and ensure iter_lines_added_or_present in knits does a old-to-new read in the knit.
1403
        # request a last-first iteration
2745.5.3 by Robert Collins
* Move transport logging into a new transport class
1404
        results = list(k1.iter_lines_added_or_present_in_versions(
1405
            ['base2', 'base']))
2745.5.6 by Robert Collins
Fix knit test fallout from final readv api change.
1406
        self.assertEqual(
1407
            [('readv', 'id.knit', [(0, 87), (87, 89)], False, None)],
2745.5.3 by Robert Collins
* Move transport logging into a new transport class
1408
            instrumented_t._activity)
2975.3.1 by Robert Collins
Change (without backwards compatibility) the
1409
        self.assertEqual([('text\n', 'base'), ('text2\n', 'base2')], results)
1563.2.4 by Robert Collins
First cut at including the knit implementation of versioned_file.
1410
1563.2.13 by Robert Collins
InterVersionedFile implemented.
1411
    def test_create_empty_annotated(self):
1563.2.16 by Robert Collins
Change WeaveStore into VersionedFileStore and make its versoined file class parameterisable.
1412
        k1 = self.make_test_knit(True)
1563.2.13 by Robert Collins
InterVersionedFile implemented.
1413
        # 0
1414
        k1.add_lines('text-a', [], ['a\n', 'b\n'])
1415
        k2 = k1.create_empty('t', MemoryTransport())
1416
        self.assertTrue(isinstance(k2.factory, KnitAnnotateFactory))
1417
        self.assertEqual(k1.delta, k2.delta)
1418
        # the generic test checks for empty content and file class
1419
1641.1.2 by Robert Collins
Change knit index files to be robust in the presence of partial writes.
1420
    def test_knit_format(self):
1421
        # this tests that a new knit index file has the expected content
1422
        # and that is writes the data we expect as records are added.
1423
        knit = self.make_test_knit(True)
1946.2.1 by John Arbash Meinel
2 changes to knits. Delay creating the .knit or .kndx file until we have actually tried to write data. Because of this, we must allow the Knit to create the prefix directories
1424
        # Now knit files are not created until we first add data to them
1666.1.6 by Robert Collins
Make knit the default format.
1425
        self.assertFileEqual("# bzr knit index 8\n", 'test.kndx')
1641.1.2 by Robert Collins
Change knit index files to be robust in the presence of partial writes.
1426
        knit.add_lines_with_ghosts('revid', ['a_ghost'], ['a\n'])
1427
        self.assertFileEqual(
1666.1.6 by Robert Collins
Make knit the default format.
1428
            "# bzr knit index 8\n"
1641.1.2 by Robert Collins
Change knit index files to be robust in the presence of partial writes.
1429
            "\n"
1430
            "revid fulltext 0 84 .a_ghost :",
1431
            'test.kndx')
1432
        knit.add_lines_with_ghosts('revid2', ['revid'], ['a\n'])
1433
        self.assertFileEqual(
1666.1.6 by Robert Collins
Make knit the default format.
1434
            "# bzr knit index 8\n"
1641.1.2 by Robert Collins
Change knit index files to be robust in the presence of partial writes.
1435
            "\nrevid fulltext 0 84 .a_ghost :"
1436
            "\nrevid2 line-delta 84 82 0 :",
1437
            'test.kndx')
1438
        # we should be able to load this file again
1685.1.39 by John Arbash Meinel
Updating test_knit to not instantiate a LocalTransport directly.
1439
        knit = KnitVersionedFile('test', get_transport('.'), access_mode='r')
1641.1.2 by Robert Collins
Change knit index files to be robust in the presence of partial writes.
1440
        self.assertEqual(['revid', 'revid2'], knit.versions())
1441
        # write a short write to the file and ensure that its ignored
2484.1.23 by John Arbash Meinel
When we append a new line, don't use text mode
1442
        indexfile = file('test.kndx', 'ab')
1641.1.2 by Robert Collins
Change knit index files to be robust in the presence of partial writes.
1443
        indexfile.write('\nrevid3 line-delta 166 82 1 2 3 4 5 .phwoar:demo ')
1444
        indexfile.close()
1445
        # we should be able to load this file again
1685.1.39 by John Arbash Meinel
Updating test_knit to not instantiate a LocalTransport directly.
1446
        knit = KnitVersionedFile('test', get_transport('.'), access_mode='w')
1654.1.5 by Robert Collins
Merge partial index write support for knits, adding a test case per review comments.
1447
        self.assertEqual(['revid', 'revid2'], knit.versions())
1448
        # and add a revision with the same id the failed write had
1449
        knit.add_lines('revid3', ['revid2'], ['a\n'])
1450
        # and when reading it revid3 should now appear.
1685.1.39 by John Arbash Meinel
Updating test_knit to not instantiate a LocalTransport directly.
1451
        knit = KnitVersionedFile('test', get_transport('.'), access_mode='r')
1654.1.5 by Robert Collins
Merge partial index write support for knits, adding a test case per review comments.
1452
        self.assertEqual(['revid', 'revid2', 'revid3'], knit.versions())
1453
        self.assertEqual(['revid2'], knit.get_parents('revid3'))
1454
1946.2.1 by John Arbash Meinel
2 changes to knits. Delay creating the .knit or .kndx file until we have actually tried to write data. Because of this, we must allow the Knit to create the prefix directories
1455
    def test_delay_create(self):
1456
        """Test that passing delay_create=True creates files late"""
1457
        knit = self.make_test_knit(annotate=True, delay_create=True)
1458
        self.failIfExists('test.knit')
1459
        self.failIfExists('test.kndx')
1460
        knit.add_lines_with_ghosts('revid', ['a_ghost'], ['a\n'])
1461
        self.failUnlessExists('test.knit')
1462
        self.assertFileEqual(
1463
            "# bzr knit index 8\n"
1464
            "\n"
1465
            "revid fulltext 0 84 .a_ghost :",
1466
            'test.kndx')
1467
1946.2.2 by John Arbash Meinel
test delay_create does the right thing
1468
    def test_create_parent_dir(self):
1469
        """create_parent_dir can create knits in nonexistant dirs"""
1470
        # Has no effect if we don't set 'delay_create'
1471
        trans = get_transport('.')
1472
        self.assertRaises(NoSuchFile, KnitVersionedFile, 'dir/test',
1473
                          trans, access_mode='w', factory=None,
1474
                          create=True, create_parent_dir=True)
1475
        # Nothing should have changed yet
1476
        knit = KnitVersionedFile('dir/test', trans, access_mode='w',
1477
                                 factory=None, create=True,
1478
                                 create_parent_dir=True,
1479
                                 delay_create=True)
1480
        self.failIfExists('dir/test.knit')
1481
        self.failIfExists('dir/test.kndx')
1482
        self.failIfExists('dir')
1483
        knit.add_lines('revid', [], ['a\n'])
1484
        self.failUnlessExists('dir')
1485
        self.failUnlessExists('dir/test.knit')
1486
        self.assertFileEqual(
1487
            "# bzr knit index 8\n"
1488
            "\n"
1489
            "revid fulltext 0 84  :",
1490
            'dir/test.kndx')
1491
1946.2.13 by John Arbash Meinel
Test that passing modes does the right thing for knits.
1492
    def test_create_mode_700(self):
1493
        trans = get_transport('.')
1494
        if not trans._can_roundtrip_unix_modebits():
1495
            # Can't roundtrip, so no need to run this test
1496
            return
1497
        knit = KnitVersionedFile('dir/test', trans, access_mode='w',
1498
                                 factory=None, create=True,
1499
                                 create_parent_dir=True,
1500
                                 delay_create=True,
1501
                                 file_mode=0600,
1502
                                 dir_mode=0700)
1503
        knit.add_lines('revid', [], ['a\n'])
1504
        self.assertTransportMode(trans, 'dir', 0700)
1505
        self.assertTransportMode(trans, 'dir/test.knit', 0600)
1506
        self.assertTransportMode(trans, 'dir/test.kndx', 0600)
1507
1508
    def test_create_mode_770(self):
1509
        trans = get_transport('.')
1510
        if not trans._can_roundtrip_unix_modebits():
1511
            # Can't roundtrip, so no need to run this test
1512
            return
1513
        knit = KnitVersionedFile('dir/test', trans, access_mode='w',
1514
                                 factory=None, create=True,
1515
                                 create_parent_dir=True,
1516
                                 delay_create=True,
1517
                                 file_mode=0660,
1518
                                 dir_mode=0770)
1519
        knit.add_lines('revid', [], ['a\n'])
1520
        self.assertTransportMode(trans, 'dir', 0770)
1521
        self.assertTransportMode(trans, 'dir/test.knit', 0660)
1522
        self.assertTransportMode(trans, 'dir/test.kndx', 0660)
1523
1524
    def test_create_mode_777(self):
1525
        trans = get_transport('.')
1526
        if not trans._can_roundtrip_unix_modebits():
1527
            # Can't roundtrip, so no need to run this test
1528
            return
1529
        knit = KnitVersionedFile('dir/test', trans, access_mode='w',
1530
                                 factory=None, create=True,
1531
                                 create_parent_dir=True,
1532
                                 delay_create=True,
1533
                                 file_mode=0666,
1534
                                 dir_mode=0777)
1535
        knit.add_lines('revid', [], ['a\n'])
1536
        self.assertTransportMode(trans, 'dir', 0777)
1537
        self.assertTransportMode(trans, 'dir/test.knit', 0666)
1538
        self.assertTransportMode(trans, 'dir/test.kndx', 0666)
1539
1664.2.1 by Aaron Bentley
Start work on plan_merge test
1540
    def test_plan_merge(self):
1541
        my_knit = self.make_test_knit(annotate=True)
1542
        my_knit.add_lines('text1', [], split_lines(TEXT_1))
1543
        my_knit.add_lines('text1a', ['text1'], split_lines(TEXT_1A))
1544
        my_knit.add_lines('text1b', ['text1'], split_lines(TEXT_1B))
1664.2.3 by Aaron Bentley
Add failing test case
1545
        plan = list(my_knit.plan_merge('text1a', 'text1b'))
1664.2.6 by Aaron Bentley
Got plan-merge passing tests
1546
        for plan_line, expected_line in zip(plan, AB_MERGE):
1547
            self.assertEqual(plan_line, expected_line)
1641.1.2 by Robert Collins
Change knit index files to be robust in the presence of partial writes.
1548
2535.3.3 by Andrew Bennetts
Add Knit.get_data_stream.
1549
    def test_get_stream_empty(self):
1550
        """Get a data stream for an empty knit file."""
1551
        k1 = self.make_test_knit()
1552
        format, data_list, reader_callable = k1.get_data_stream([])
2535.3.17 by Andrew Bennetts
[broken] Closer to a working Repository.fetch_revisions smart request.
1553
        self.assertEqual('knit-plain', format)
2535.3.3 by Andrew Bennetts
Add Knit.get_data_stream.
1554
        self.assertEqual([], data_list)
1555
        content = reader_callable(None)
1556
        self.assertEqual('', content)
1557
        self.assertIsInstance(content, str)
1558
1559
    def test_get_stream_one_version(self):
1560
        """Get a data stream for a single record out of a knit containing just
1561
        one record.
1562
        """
1563
        k1 = self.make_test_knit()
1564
        test_data = [
1565
            ('text-a', [], TEXT_1),
1566
            ]
1567
        expected_data_list = [
1568
            # version, options, length, parents
1569
            ('text-a', ['fulltext'], 122, []),
1570
           ]
1571
        for version_id, parents, lines in test_data:
1572
            k1.add_lines(version_id, parents, split_lines(lines))
1573
1574
        format, data_list, reader_callable = k1.get_data_stream(['text-a'])
2535.3.17 by Andrew Bennetts
[broken] Closer to a working Repository.fetch_revisions smart request.
1575
        self.assertEqual('knit-plain', format)
2535.3.3 by Andrew Bennetts
Add Knit.get_data_stream.
1576
        self.assertEqual(expected_data_list, data_list)
1577
        # There's only one record in the knit, so the content should be the
1578
        # entire knit data file's contents.
2535.3.36 by Andrew Bennetts
Merge bzr.dev
1579
        self.assertEqual(k1.transport.get_bytes(k1._data._access._filename),
2535.3.3 by Andrew Bennetts
Add Knit.get_data_stream.
1580
                         reader_callable(None))
1581
        
1582
    def test_get_stream_get_one_version_of_many(self):
1583
        """Get a data stream for just one version out of a knit containing many
1584
        versions.
1585
        """
1586
        k1 = self.make_test_knit()
1587
        # Insert the same data as test_knit_join, as they seem to cover a range
1588
        # of cases (no parents, one parent, multiple parents).
1589
        test_data = [
1590
            ('text-a', [], TEXT_1),
1591
            ('text-b', ['text-a'], TEXT_1),
1592
            ('text-c', [], TEXT_1),
1593
            ('text-d', ['text-c'], TEXT_1),
1594
            ('text-m', ['text-b', 'text-d'], TEXT_1),
1595
            ]
1596
        expected_data_list = [
1597
            # version, options, length, parents
1598
            ('text-m', ['line-delta'], 84, ['text-b', 'text-d']),
1599
            ]
1600
        for version_id, parents, lines in test_data:
1601
            k1.add_lines(version_id, parents, split_lines(lines))
1602
1603
        format, data_list, reader_callable = k1.get_data_stream(['text-m'])
2535.3.17 by Andrew Bennetts
[broken] Closer to a working Repository.fetch_revisions smart request.
1604
        self.assertEqual('knit-plain', format)
2535.3.3 by Andrew Bennetts
Add Knit.get_data_stream.
1605
        self.assertEqual(expected_data_list, data_list)
1606
        self.assertRecordContentEqual(k1, 'text-m', reader_callable(None))
1607
        
3023.2.2 by Martin Pool
Fix KnitVersionedFile.get_data_stream to not assume .versions() is sorted. (lp:165106)
1608
    def test_get_data_stream_unordered_index(self):
1609
        """Get a data stream when the knit index reports versions out of order.
1610
1611
        https://bugs.launchpad.net/bzr/+bug/164637
1612
        """
1613
        k1 = self.make_test_knit()
1614
        test_data = [
1615
            ('text-a', [], TEXT_1),
1616
            ('text-b', ['text-a'], TEXT_1),
1617
            ('text-c', [], TEXT_1),
1618
            ('text-d', ['text-c'], TEXT_1),
1619
            ('text-m', ['text-b', 'text-d'], TEXT_1),
1620
            ]
1621
        for version_id, parents, lines in test_data:
1622
            k1.add_lines(version_id, parents, split_lines(lines))
1623
        # monkey-patch versions method to return out of order, as if coming
1624
        # from multiple independently indexed packs
1625
        original_versions = k1.versions
1626
        k1.versions = lambda: reversed(original_versions())
1627
        expected_data_list = [
1628
            ('text-a', ['fulltext'], 122, []),
1629
            ('text-b', ['line-delta'], 84, ['text-a'])]
1630
        # now check the fulltext is first and the delta second
1631
        format, data_list, _ = k1.get_data_stream(['text-a', 'text-b'])
1632
        self.assertEqual('knit-plain', format)
1633
        self.assertEqual(expected_data_list, data_list)
1634
        # and that's true if we ask for them in the opposite order too
1635
        format, data_list, _ = k1.get_data_stream(['text-b', 'text-a'])
1636
        self.assertEqual(expected_data_list, data_list)
1637
        # also try requesting more versions
1638
        format, data_list, _ = k1.get_data_stream([
1639
            'text-m', 'text-b', 'text-a'])
1640
        self.assertEqual([
1641
            ('text-a', ['fulltext'], 122, []),
1642
            ('text-b', ['line-delta'], 84, ['text-a']),
1643
            ('text-m', ['line-delta'], 84, ['text-b', 'text-d']),
1644
            ], data_list)
1645
2535.3.3 by Andrew Bennetts
Add Knit.get_data_stream.
1646
    def test_get_stream_ghost_parent(self):
1647
        """Get a data stream for a version with a ghost parent."""
1648
        k1 = self.make_test_knit()
1649
        # Test data
1650
        k1.add_lines('text-a', [], split_lines(TEXT_1))
1651
        k1.add_lines_with_ghosts('text-b', ['text-a', 'text-ghost'],
1652
                                 split_lines(TEXT_1))
1653
        # Expected data
1654
        expected_data_list = [
1655
            # version, options, length, parents
1656
            ('text-b', ['line-delta'], 84, ['text-a', 'text-ghost']),
1657
            ]
1658
        
1659
        format, data_list, reader_callable = k1.get_data_stream(['text-b'])
2535.3.17 by Andrew Bennetts
[broken] Closer to a working Repository.fetch_revisions smart request.
1660
        self.assertEqual('knit-plain', format)
2535.3.3 by Andrew Bennetts
Add Knit.get_data_stream.
1661
        self.assertEqual(expected_data_list, data_list)
1662
        self.assertRecordContentEqual(k1, 'text-b', reader_callable(None))
1663
    
1664
    def test_get_stream_get_multiple_records(self):
1665
        """Get a stream for multiple records of a knit."""
1666
        k1 = self.make_test_knit()
1667
        # Insert the same data as test_knit_join, as they seem to cover a range
1668
        # of cases (no parents, one parent, multiple parents).
1669
        test_data = [
1670
            ('text-a', [], TEXT_1),
1671
            ('text-b', ['text-a'], TEXT_1),
1672
            ('text-c', [], TEXT_1),
1673
            ('text-d', ['text-c'], TEXT_1),
1674
            ('text-m', ['text-b', 'text-d'], TEXT_1),
1675
            ]
1676
        expected_data_list = [
1677
            # version, options, length, parents
1678
            ('text-b', ['line-delta'], 84, ['text-a']),
1679
            ('text-d', ['line-delta'], 84, ['text-c']),
1680
            ]
1681
        for version_id, parents, lines in test_data:
1682
            k1.add_lines(version_id, parents, split_lines(lines))
1683
1684
        # Note that even though we request the revision IDs in a particular
1685
        # order, the data stream may return them in any order it likes.  In this
1686
        # case, they'll be in the order they were inserted into the knit.
1687
        format, data_list, reader_callable = k1.get_data_stream(
1688
            ['text-d', 'text-b'])
2535.3.17 by Andrew Bennetts
[broken] Closer to a working Repository.fetch_revisions smart request.
1689
        self.assertEqual('knit-plain', format)
2535.3.3 by Andrew Bennetts
Add Knit.get_data_stream.
1690
        self.assertEqual(expected_data_list, data_list)
1691
        self.assertRecordContentEqual(k1, 'text-b', reader_callable(84))
1692
        self.assertRecordContentEqual(k1, 'text-d', reader_callable(84))
1693
        self.assertEqual('', reader_callable(None),
1694
                         "There should be no more bytes left to read.")
1695
1696
    def test_get_stream_all(self):
1697
        """Get a data stream for all the records in a knit.
1698
1699
        This exercises fulltext records, line-delta records, records with
1700
        various numbers of parents, and reading multiple records out of the
1701
        callable.  These cases ought to all be exercised individually by the
1702
        other test_get_stream_* tests; this test is basically just paranoia.
1703
        """
1704
        k1 = self.make_test_knit()
1705
        # Insert the same data as test_knit_join, as they seem to cover a range
1706
        # of cases (no parents, one parent, multiple parents).
1707
        test_data = [
1708
            ('text-a', [], TEXT_1),
1709
            ('text-b', ['text-a'], TEXT_1),
1710
            ('text-c', [], TEXT_1),
1711
            ('text-d', ['text-c'], TEXT_1),
1712
            ('text-m', ['text-b', 'text-d'], TEXT_1),
1713
           ]
1714
        expected_data_list = [
1715
            # version, options, length, parents
1716
            ('text-a', ['fulltext'], 122, []),
1717
            ('text-b', ['line-delta'], 84, ['text-a']),
1718
            ('text-c', ['fulltext'], 121, []),
1719
            ('text-d', ['line-delta'], 84, ['text-c']),
1720
            ('text-m', ['line-delta'], 84, ['text-b', 'text-d']),
1721
            ]
1722
        for version_id, parents, lines in test_data:
1723
            k1.add_lines(version_id, parents, split_lines(lines))
1724
1725
        format, data_list, reader_callable = k1.get_data_stream(
1726
            ['text-a', 'text-b', 'text-c', 'text-d', 'text-m'])
2535.3.17 by Andrew Bennetts
[broken] Closer to a working Repository.fetch_revisions smart request.
1727
        self.assertEqual('knit-plain', format)
2535.3.3 by Andrew Bennetts
Add Knit.get_data_stream.
1728
        self.assertEqual(expected_data_list, data_list)
1729
        for version_id, options, length, parents in expected_data_list:
1730
            bytes = reader_callable(length)
1731
            self.assertRecordContentEqual(k1, version_id, bytes)
1732
2535.3.4 by Andrew Bennetts
Simple implementation of Knit.insert_data_stream.
1733
    def assertKnitFilesEqual(self, knit1, knit2):
1734
        """Assert that the contents of the index and data files of two knits are
1735
        equal.
1736
        """
1737
        self.assertEqual(
2535.3.36 by Andrew Bennetts
Merge bzr.dev
1738
            knit1.transport.get_bytes(knit1._data._access._filename),
1739
            knit2.transport.get_bytes(knit2._data._access._filename))
2535.3.4 by Andrew Bennetts
Simple implementation of Knit.insert_data_stream.
1740
        self.assertEqual(
1741
            knit1.transport.get_bytes(knit1._index._filename),
1742
            knit2.transport.get_bytes(knit2._index._filename))
1743
1744
    def test_insert_data_stream_empty(self):
1745
        """Inserting a data stream with no records should not put any data into
1746
        the knit.
1747
        """
1748
        k1 = self.make_test_knit()
1749
        k1.insert_data_stream(
1750
            (k1.get_format_signature(), [], lambda ignored: ''))
2535.3.36 by Andrew Bennetts
Merge bzr.dev
1751
        self.assertEqual('', k1.transport.get_bytes(k1._data._access._filename),
2535.3.4 by Andrew Bennetts
Simple implementation of Knit.insert_data_stream.
1752
                         "The .knit should be completely empty.")
1753
        self.assertEqual(k1._index.HEADER,
1754
                         k1.transport.get_bytes(k1._index._filename),
1755
                         "The .kndx should have nothing apart from the header.")
1756
1757
    def test_insert_data_stream_one_record(self):
1758
        """Inserting a data stream with one record from a knit with one record
1759
        results in byte-identical files.
1760
        """
1761
        source = self.make_test_knit(name='source')
1762
        source.add_lines('text-a', [], split_lines(TEXT_1))
1763
        data_stream = source.get_data_stream(['text-a'])
1764
        
1765
        target = self.make_test_knit(name='target')
1766
        target.insert_data_stream(data_stream)
1767
        
1768
        self.assertKnitFilesEqual(source, target)
1769
1770
    def test_insert_data_stream_records_already_present(self):
1771
        """Insert a data stream where some records are alreday present in the
1772
        target, and some not.  Only the new records are inserted.
1773
        """
1774
        source = self.make_test_knit(name='source')
1775
        target = self.make_test_knit(name='target')
1776
        # Insert 'text-a' into both source and target
1777
        source.add_lines('text-a', [], split_lines(TEXT_1))
1778
        target.insert_data_stream(source.get_data_stream(['text-a']))
1779
        # Insert 'text-b' into just the source.
1780
        source.add_lines('text-b', ['text-a'], split_lines(TEXT_1))
1781
        # Get a data stream of both text-a and text-b, and insert it.
1782
        data_stream = source.get_data_stream(['text-a', 'text-b'])
1783
        target.insert_data_stream(data_stream)
1784
        # The source and target will now be identical.  This means the text-a
1785
        # record was not added a second time.
1786
        self.assertKnitFilesEqual(source, target)
1787
1788
    def test_insert_data_stream_multiple_records(self):
1789
        """Inserting a data stream of all records from a knit with multiple
1790
        records results in byte-identical files.
1791
        """
1792
        source = self.make_test_knit(name='source')
1793
        source.add_lines('text-a', [], split_lines(TEXT_1))
1794
        source.add_lines('text-b', ['text-a'], split_lines(TEXT_1))
1795
        source.add_lines('text-c', [], split_lines(TEXT_1))
1796
        data_stream = source.get_data_stream(['text-a', 'text-b', 'text-c'])
1797
        
1798
        target = self.make_test_knit(name='target')
1799
        target.insert_data_stream(data_stream)
1800
        
1801
        self.assertKnitFilesEqual(source, target)
1802
1803
    def test_insert_data_stream_ghost_parent(self):
1804
        """Insert a data stream with a record that has a ghost parent."""
1805
        # Make a knit with a record, text-a, that has a ghost parent.
1806
        source = self.make_test_knit(name='source')
1807
        source.add_lines_with_ghosts('text-a', ['text-ghost'],
1808
                                     split_lines(TEXT_1))
1809
        data_stream = source.get_data_stream(['text-a'])
1810
1811
        target = self.make_test_knit(name='target')
1812
        target.insert_data_stream(data_stream)
1813
1814
        self.assertKnitFilesEqual(source, target)
1815
1816
        # The target knit object is in a consistent state, i.e. the record we
1817
        # just added is immediately visible.
1818
        self.assertTrue(target.has_version('text-a'))
1819
        self.assertTrue(target.has_ghost('text-ghost'))
1820
        self.assertEqual(split_lines(TEXT_1), target.get_lines('text-a'))
1821
1822
    def test_insert_data_stream_inconsistent_version_lines(self):
1823
        """Inserting a data stream which has different content for a version_id
1824
        than already exists in the knit will raise KnitCorrupt.
1825
        """
1826
        source = self.make_test_knit(name='source')
1827
        target = self.make_test_knit(name='target')
1828
        # Insert a different 'text-a' into both source and target
1829
        source.add_lines('text-a', [], split_lines(TEXT_1))
1830
        target.add_lines('text-a', [], split_lines(TEXT_2))
1831
        # Insert a data stream with conflicting content into the target
1832
        data_stream = source.get_data_stream(['text-a'])
1833
        self.assertRaises(
1834
            errors.KnitCorrupt, target.insert_data_stream, data_stream)
1835
1836
    def test_insert_data_stream_inconsistent_version_parents(self):
1837
        """Inserting a data stream which has different parents for a version_id
1838
        than already exists in the knit will raise KnitCorrupt.
1839
        """
1840
        source = self.make_test_knit(name='source')
1841
        target = self.make_test_knit(name='target')
1842
        # Insert a different 'text-a' into both source and target.  They differ
1843
        # only by the parents list, the content is the same.
1844
        source.add_lines_with_ghosts('text-a', [], split_lines(TEXT_1))
1845
        target.add_lines_with_ghosts('text-a', ['a-ghost'], split_lines(TEXT_1))
1846
        # Insert a data stream with conflicting content into the target
1847
        data_stream = source.get_data_stream(['text-a'])
1848
        self.assertRaises(
1849
            errors.KnitCorrupt, target.insert_data_stream, data_stream)
1850
1851
    def test_insert_data_stream_incompatible_format(self):
1852
        """A data stream in a different format to the target knit cannot be
1853
        inserted.
1854
1855
        It will raise KnitDataStreamIncompatible.
1856
        """
1857
        data_stream = ('fake-format-signature', [], lambda _: '')
1858
        target = self.make_test_knit(name='target')
1859
        self.assertRaises(
1860
            errors.KnitDataStreamIncompatible,
1861
            target.insert_data_stream, data_stream)
1862
2535.3.5 by Andrew Bennetts
Batch writes as much as possible in insert_data_stream.
1863
    #  * test that a stream of "already present version, then new version"
1864
    #    inserts correctly.
1563.2.4 by Robert Collins
First cut at including the knit implementation of versioned_file.
1865
1866
TEXT_1 = """\
1867
Banana cup cakes:
1868
1869
- bananas
1870
- eggs
1871
- broken tea cups
1872
"""
1873
1874
TEXT_1A = """\
1875
Banana cup cake recipe
1876
(serves 6)
1877
1878
- bananas
1879
- eggs
1880
- broken tea cups
1881
- self-raising flour
1882
"""
1883
1664.2.1 by Aaron Bentley
Start work on plan_merge test
1884
TEXT_1B = """\
1885
Banana cup cake recipe
1886
1887
- bananas (do not use plantains!!!)
1888
- broken tea cups
1889
- flour
1890
"""
1891
1563.2.4 by Robert Collins
First cut at including the knit implementation of versioned_file.
1892
delta_1_1a = """\
1893
0,1,2
1894
Banana cup cake recipe
1895
(serves 6)
1896
5,5,1
1897
- self-raising flour
1898
"""
1899
1900
TEXT_2 = """\
1901
Boeuf bourguignon
1902
1903
- beef
1904
- red wine
1905
- small onions
1906
- carrot
1907
- mushrooms
1908
"""
1909
1664.2.3 by Aaron Bentley
Add failing test case
1910
AB_MERGE_TEXT="""unchanged|Banana cup cake recipe
1911
new-a|(serves 6)
1912
unchanged|
1913
killed-b|- bananas
1914
killed-b|- eggs
1915
new-b|- bananas (do not use plantains!!!)
1916
unchanged|- broken tea cups
1917
new-a|- self-raising flour
1664.2.6 by Aaron Bentley
Got plan-merge passing tests
1918
new-b|- flour
1919
"""
1664.2.3 by Aaron Bentley
Add failing test case
1920
AB_MERGE=[tuple(l.split('|')) for l in AB_MERGE_TEXT.splitlines(True)]
1921
1922
1563.2.4 by Robert Collins
First cut at including the knit implementation of versioned_file.
1923
def line_delta(from_lines, to_lines):
1924
    """Generate line-based delta from one text to another"""
1925
    s = difflib.SequenceMatcher(None, from_lines, to_lines)
1926
    for op in s.get_opcodes():
1927
        if op[0] == 'equal':
1928
            continue
1929
        yield '%d,%d,%d\n' % (op[1], op[2], op[4]-op[3])
1930
        for i in range(op[3], op[4]):
1931
            yield to_lines[i]
1932
1933
1934
def apply_line_delta(basis_lines, delta_lines):
1935
    """Apply a line-based perfect diff
1936
    
1937
    basis_lines -- text to apply the patch to
1938
    delta_lines -- diff instructions and content
1939
    """
1940
    out = basis_lines[:]
1941
    i = 0
1942
    offset = 0
1943
    while i < len(delta_lines):
1944
        l = delta_lines[i]
1945
        a, b, c = map(long, l.split(','))
1946
        i = i + 1
1947
        out[offset+a:offset+b] = delta_lines[i:i+c]
1948
        i = i + c
1949
        offset = offset + (b - a) + c
1950
    return out
1684.3.3 by Robert Collins
Add a special cased weaves to knit converter.
1951
1952
1953
class TestWeaveToKnit(KnitTests):
1954
1955
    def test_weave_to_knit_matches(self):
1956
        # check that the WeaveToKnit is_compatible function
1957
        # registers True for a Weave to a Knit.
1958
        w = Weave()
1959
        k = self.make_test_knit()
1960
        self.failUnless(WeaveToKnit.is_compatible(w, k))
1961
        self.failIf(WeaveToKnit.is_compatible(k, w))
1962
        self.failIf(WeaveToKnit.is_compatible(w, w))
1963
        self.failIf(WeaveToKnit.is_compatible(k, k))
1863.1.1 by John Arbash Meinel
Allow Versioned files to do caching if explicitly asked, and implement for Knit
1964
1965
1966
class TestKnitCaching(KnitTests):
1967
    
2850.1.1 by Robert Collins
* ``KnitVersionedFile.add*`` will no longer cache added records even when
1968
    def create_knit(self):
1863.1.1 by John Arbash Meinel
Allow Versioned files to do caching if explicitly asked, and implement for Knit
1969
        k = self.make_test_knit(True)
1970
        k.add_lines('text-1', [], split_lines(TEXT_1))
1971
        k.add_lines('text-2', [], split_lines(TEXT_2))
1972
        return k
1973
1974
    def test_no_caching(self):
1975
        k = self.create_knit()
1976
        # Nothing should be cached without setting 'enable_cache'
1977
        self.assertEqual({}, k._data._cache)
1978
1979
    def test_cache_data_read_raw(self):
1980
        k = self.create_knit()
1981
1982
        # Now cache and read
1983
        k.enable_cache()
1984
1985
        def read_one_raw(version):
1986
            pos_map = k._get_components_positions([version])
2592.3.71 by Robert Collins
Basic version of knit-based repository operating, many tests failing.
1987
            method, index_memo, next = pos_map[version]
1988
            lst = list(k._data.read_records_iter_raw([(version, index_memo)]))
1863.1.1 by John Arbash Meinel
Allow Versioned files to do caching if explicitly asked, and implement for Knit
1989
            self.assertEqual(1, len(lst))
1990
            return lst[0]
1991
1992
        val = read_one_raw('text-1')
1863.1.8 by John Arbash Meinel
Removing disk-backed-cache
1993
        self.assertEqual({'text-1':val[1]}, k._data._cache)
1863.1.1 by John Arbash Meinel
Allow Versioned files to do caching if explicitly asked, and implement for Knit
1994
1995
        k.clear_cache()
1996
        # After clear, new reads are not cached
1997
        self.assertEqual({}, k._data._cache)
1998
1999
        val2 = read_one_raw('text-1')
2000
        self.assertEqual(val, val2)
2001
        self.assertEqual({}, k._data._cache)
2002
2003
    def test_cache_data_read(self):
2004
        k = self.create_knit()
2005
2006
        def read_one(version):
2007
            pos_map = k._get_components_positions([version])
2592.3.71 by Robert Collins
Basic version of knit-based repository operating, many tests failing.
2008
            method, index_memo, next = pos_map[version]
2009
            lst = list(k._data.read_records_iter([(version, index_memo)]))
1863.1.1 by John Arbash Meinel
Allow Versioned files to do caching if explicitly asked, and implement for Knit
2010
            self.assertEqual(1, len(lst))
2011
            return lst[0]
2012
2013
        # Now cache and read
2014
        k.enable_cache()
2015
2016
        val = read_one('text-2')
2017
        self.assertEqual(['text-2'], k._data._cache.keys())
2018
        self.assertEqual('text-2', val[0])
2019
        content, digest = k._data._parse_record('text-2',
2020
                                                k._data._cache['text-2'])
2021
        self.assertEqual(content, val[1])
2022
        self.assertEqual(digest, val[2])
2023
2024
        k.clear_cache()
2025
        self.assertEqual({}, k._data._cache)
2026
2027
        val2 = read_one('text-2')
2028
        self.assertEqual(val, val2)
2029
        self.assertEqual({}, k._data._cache)
2030
2031
    def test_cache_read(self):
2032
        k = self.create_knit()
2033
        k.enable_cache()
2034
2035
        text = k.get_text('text-1')
2036
        self.assertEqual(TEXT_1, text)
2037
        self.assertEqual(['text-1'], k._data._cache.keys())
2038
2039
        k.clear_cache()
2040
        self.assertEqual({}, k._data._cache)
2041
2042
        text = k.get_text('text-1')
2043
        self.assertEqual(TEXT_1, text)
2044
        self.assertEqual({}, k._data._cache)
2102.2.1 by John Arbash Meinel
Fix bug #64789 _KnitIndex.add_versions() should dict compress new revisions
2045
2046
2047
class TestKnitIndex(KnitTests):
2048
2049
    def test_add_versions_dictionary_compresses(self):
2050
        """Adding versions to the index should update the lookup dict"""
2051
        knit = self.make_test_knit()
2052
        idx = knit._index
2592.3.71 by Robert Collins
Basic version of knit-based repository operating, many tests failing.
2053
        idx.add_version('a-1', ['fulltext'], (None, 0, 0), [])
2102.2.1 by John Arbash Meinel
Fix bug #64789 _KnitIndex.add_versions() should dict compress new revisions
2054
        self.check_file_contents('test.kndx',
2055
            '# bzr knit index 8\n'
2056
            '\n'
2057
            'a-1 fulltext 0 0  :'
2058
            )
2592.3.71 by Robert Collins
Basic version of knit-based repository operating, many tests failing.
2059
        idx.add_versions([('a-2', ['fulltext'], (None, 0, 0), ['a-1']),
2060
                          ('a-3', ['fulltext'], (None, 0, 0), ['a-2']),
2102.2.1 by John Arbash Meinel
Fix bug #64789 _KnitIndex.add_versions() should dict compress new revisions
2061
                         ])
2062
        self.check_file_contents('test.kndx',
2063
            '# bzr knit index 8\n'
2064
            '\n'
2065
            'a-1 fulltext 0 0  :\n'
2066
            'a-2 fulltext 0 0 0 :\n'
2067
            'a-3 fulltext 0 0 1 :'
2068
            )
2069
        self.assertEqual(['a-1', 'a-2', 'a-3'], idx._history)
2070
        self.assertEqual({'a-1':('a-1', ['fulltext'], 0, 0, [], 0),
2071
                          'a-2':('a-2', ['fulltext'], 0, 0, ['a-1'], 1),
2072
                          'a-3':('a-3', ['fulltext'], 0, 0, ['a-2'], 2),
2073
                         }, idx._cache)
2074
2075
    def test_add_versions_fails_clean(self):
2076
        """If add_versions fails in the middle, it restores a pristine state.
2077
2078
        Any modifications that are made to the index are reset if all versions
2079
        cannot be added.
2080
        """
2081
        # This cheats a little bit by passing in a generator which will
2082
        # raise an exception before the processing finishes
2083
        # Other possibilities would be to have an version with the wrong number
2084
        # of entries, or to make the backing transport unable to write any
2085
        # files.
2086
2087
        knit = self.make_test_knit()
2088
        idx = knit._index
2592.3.71 by Robert Collins
Basic version of knit-based repository operating, many tests failing.
2089
        idx.add_version('a-1', ['fulltext'], (None, 0, 0), [])
2102.2.1 by John Arbash Meinel
Fix bug #64789 _KnitIndex.add_versions() should dict compress new revisions
2090
2091
        class StopEarly(Exception):
2092
            pass
2093
2094
        def generate_failure():
2095
            """Add some entries and then raise an exception"""
2592.3.71 by Robert Collins
Basic version of knit-based repository operating, many tests failing.
2096
            yield ('a-2', ['fulltext'], (None, 0, 0), ['a-1'])
2097
            yield ('a-3', ['fulltext'], (None, 0, 0), ['a-2'])
2102.2.1 by John Arbash Meinel
Fix bug #64789 _KnitIndex.add_versions() should dict compress new revisions
2098
            raise StopEarly()
2099
2100
        # Assert the pre-condition
2101
        self.assertEqual(['a-1'], idx._history)
2102
        self.assertEqual({'a-1':('a-1', ['fulltext'], 0, 0, [], 0)}, idx._cache)
2103
2104
        self.assertRaises(StopEarly, idx.add_versions, generate_failure())
2105
2106
        # And it shouldn't be modified
2107
        self.assertEqual(['a-1'], idx._history)
2108
        self.assertEqual({'a-1':('a-1', ['fulltext'], 0, 0, [], 0)}, idx._cache)
2171.1.1 by John Arbash Meinel
Knit index files should ignore empty indexes rather than consider them corrupt.
2109
2110
    def test_knit_index_ignores_empty_files(self):
2111
        # There was a race condition in older bzr, where a ^C at the right time
2112
        # could leave an empty .kndx file, which bzr would later claim was a
2113
        # corrupted file since the header was not present. In reality, the file
2114
        # just wasn't created, so it should be ignored.
2115
        t = get_transport('.')
2116
        t.put_bytes('test.kndx', '')
2117
2118
        knit = self.make_test_knit()
2119
2120
    def test_knit_index_checks_header(self):
2121
        t = get_transport('.')
2122
        t.put_bytes('test.kndx', '# not really a knit header\n\n')
2123
2196.2.1 by John Arbash Meinel
Merge Dmitry's optimizations and minimize the actual diff.
2124
        self.assertRaises(KnitHeaderError, self.make_test_knit)
2592.3.2 by Robert Collins
Implement a get_graph for a new KnitGraphIndex that will implement a KnitIndex on top of the GraphIndex API.
2125
2126
2127
class TestGraphIndexKnit(KnitTests):
2128
    """Tests for knits using a GraphIndex rather than a KnitIndex."""
2129
2130
    def make_g_index(self, name, ref_lists=0, nodes=[]):
2131
        builder = GraphIndexBuilder(ref_lists)
2132
        for node, references, value in nodes:
2133
            builder.add_node(node, references, value)
2134
        stream = builder.finish()
2135
        trans = self.get_transport()
2890.2.1 by Robert Collins
* ``bzrlib.index.GraphIndex`` now requires a size parameter to the
2136
        size = trans.put_file(name, stream)
2137
        return GraphIndex(trans, name, size)
2592.3.2 by Robert Collins
Implement a get_graph for a new KnitGraphIndex that will implement a KnitIndex on top of the GraphIndex API.
2138
2592.3.19 by Robert Collins
Change KnitGraphIndex from returning data to performing a callback on insertions.
2139
    def two_graph_index(self, deltas=False, catch_adds=False):
2592.3.13 by Robert Collins
Implement KnitGraphIndex.get_method.
2140
        """Build a two-graph index.
2141
2142
        :param deltas: If true, use underlying indices with two node-ref
2143
            lists and 'parent' set to a delta-compressed against tail.
2144
        """
2592.3.2 by Robert Collins
Implement a get_graph for a new KnitGraphIndex that will implement a KnitIndex on top of the GraphIndex API.
2145
        # build a complex graph across several indices.
2592.3.13 by Robert Collins
Implement KnitGraphIndex.get_method.
2146
        if deltas:
2624.2.5 by Robert Collins
Change bzrlib.index.Index keys to be 1-tuples, not strings.
2147
            # delta compression inn the index
2592.3.13 by Robert Collins
Implement KnitGraphIndex.get_method.
2148
            index1 = self.make_g_index('1', 2, [
2624.2.5 by Robert Collins
Change bzrlib.index.Index keys to be 1-tuples, not strings.
2149
                (('tip', ), 'N0 100', ([('parent', )], [], )),
2150
                (('tail', ), '', ([], []))])
2592.3.13 by Robert Collins
Implement KnitGraphIndex.get_method.
2151
            index2 = self.make_g_index('2', 2, [
2624.2.5 by Robert Collins
Change bzrlib.index.Index keys to be 1-tuples, not strings.
2152
                (('parent', ), ' 100 78', ([('tail', ), ('ghost', )], [('tail', )])),
2153
                (('separate', ), '', ([], []))])
2592.3.13 by Robert Collins
Implement KnitGraphIndex.get_method.
2154
        else:
2624.2.5 by Robert Collins
Change bzrlib.index.Index keys to be 1-tuples, not strings.
2155
            # just blob location and graph in the index.
2592.3.13 by Robert Collins
Implement KnitGraphIndex.get_method.
2156
            index1 = self.make_g_index('1', 1, [
2624.2.5 by Robert Collins
Change bzrlib.index.Index keys to be 1-tuples, not strings.
2157
                (('tip', ), 'N0 100', ([('parent', )], )),
2158
                (('tail', ), '', ([], ))])
2592.3.13 by Robert Collins
Implement KnitGraphIndex.get_method.
2159
            index2 = self.make_g_index('2', 1, [
2624.2.5 by Robert Collins
Change bzrlib.index.Index keys to be 1-tuples, not strings.
2160
                (('parent', ), ' 100 78', ([('tail', ), ('ghost', )], )),
2161
                (('separate', ), '', ([], ))])
2592.3.2 by Robert Collins
Implement a get_graph for a new KnitGraphIndex that will implement a KnitIndex on top of the GraphIndex API.
2162
        combined_index = CombinedGraphIndex([index1, index2])
2592.3.19 by Robert Collins
Change KnitGraphIndex from returning data to performing a callback on insertions.
2163
        if catch_adds:
2164
            self.combined_index = combined_index
2165
            self.caught_entries = []
2166
            add_callback = self.catch_add
2167
        else:
2168
            add_callback = None
2169
        return KnitGraphIndex(combined_index, deltas=deltas,
2170
            add_callback=add_callback)
2592.3.4 by Robert Collins
Implement get_ancestry/get_ancestry_with_ghosts for KnitGraphIndex.
2171
2172
    def test_get_graph(self):
2173
        index = self.two_graph_index()
2592.3.2 by Robert Collins
Implement a get_graph for a new KnitGraphIndex that will implement a KnitIndex on top of the GraphIndex API.
2174
        self.assertEqual(set([
2175
            ('tip', ('parent', )),
2176
            ('tail', ()),
2177
            ('parent', ('tail', 'ghost')),
2178
            ('separate', ()),
2179
            ]), set(index.get_graph()))
2592.3.4 by Robert Collins
Implement get_ancestry/get_ancestry_with_ghosts for KnitGraphIndex.
2180
2181
    def test_get_ancestry(self):
2592.3.30 by Robert Collins
Make GraphKnitIndex get_ancestry the same as regular knits.
2182
        # get_ancestry is defined as eliding ghosts, not erroring.
2183
        index = self.two_graph_index()
2592.3.4 by Robert Collins
Implement get_ancestry/get_ancestry_with_ghosts for KnitGraphIndex.
2184
        self.assertEqual([], index.get_ancestry([]))
2185
        self.assertEqual(['separate'], index.get_ancestry(['separate']))
2186
        self.assertEqual(['tail'], index.get_ancestry(['tail']))
2187
        self.assertEqual(['tail', 'parent'], index.get_ancestry(['parent']))
2188
        self.assertEqual(['tail', 'parent', 'tip'], index.get_ancestry(['tip']))
2189
        self.assertTrue(index.get_ancestry(['tip', 'separate']) in
2190
            (['tail', 'parent', 'tip', 'separate'],
2191
             ['separate', 'tail', 'parent', 'tip'],
2192
            ))
2193
        # and without topo_sort
2194
        self.assertEqual(set(['separate']),
2195
            set(index.get_ancestry(['separate'], topo_sorted=False)))
2196
        self.assertEqual(set(['tail']),
2197
            set(index.get_ancestry(['tail'], topo_sorted=False)))
2198
        self.assertEqual(set(['tail', 'parent']),
2199
            set(index.get_ancestry(['parent'], topo_sorted=False)))
2200
        self.assertEqual(set(['tail', 'parent', 'tip']),
2201
            set(index.get_ancestry(['tip'], topo_sorted=False)))
2202
        self.assertEqual(set(['separate', 'tail', 'parent', 'tip']),
2203
            set(index.get_ancestry(['tip', 'separate'])))
2592.3.30 by Robert Collins
Make GraphKnitIndex get_ancestry the same as regular knits.
2204
        # asking for a ghost makes it go boom.
2205
        self.assertRaises(errors.RevisionNotPresent, index.get_ancestry, ['ghost'])
2592.3.4 by Robert Collins
Implement get_ancestry/get_ancestry_with_ghosts for KnitGraphIndex.
2206
2207
    def test_get_ancestry_with_ghosts(self):
2208
        index = self.two_graph_index()
2209
        self.assertEqual([], index.get_ancestry_with_ghosts([]))
2210
        self.assertEqual(['separate'], index.get_ancestry_with_ghosts(['separate']))
2211
        self.assertEqual(['tail'], index.get_ancestry_with_ghosts(['tail']))
2212
        self.assertTrue(index.get_ancestry_with_ghosts(['parent']) in
2213
            (['tail', 'ghost', 'parent'],
2214
             ['ghost', 'tail', 'parent'],
2215
            ))
2216
        self.assertTrue(index.get_ancestry_with_ghosts(['tip']) in
2217
            (['tail', 'ghost', 'parent', 'tip'],
2218
             ['ghost', 'tail', 'parent', 'tip'],
2219
            ))
2220
        self.assertTrue(index.get_ancestry_with_ghosts(['tip', 'separate']) in
2221
            (['tail', 'ghost', 'parent', 'tip', 'separate'],
2222
             ['ghost', 'tail', 'parent', 'tip', 'separate'],
2223
             ['separate', 'tail', 'ghost', 'parent', 'tip'],
2224
             ['separate', 'ghost', 'tail', 'parent', 'tip'],
2225
            ))
2592.3.30 by Robert Collins
Make GraphKnitIndex get_ancestry the same as regular knits.
2226
        # asking for a ghost makes it go boom.
2592.3.34 by Robert Collins
Rough unfactored support for parentless KnitGraphIndexs.
2227
        self.assertRaises(errors.RevisionNotPresent, index.get_ancestry_with_ghosts, ['ghost'])
2592.3.5 by Robert Collins
Implement KnitGraphIndex.num_versions.
2228
2229
    def test_num_versions(self):
2230
        index = self.two_graph_index()
2231
        self.assertEqual(4, index.num_versions())
2592.3.6 by Robert Collins
Implement KnitGraphIndex.get_versions.
2232
2233
    def test_get_versions(self):
2234
        index = self.two_graph_index()
2235
        self.assertEqual(set(['tail', 'tip', 'parent', 'separate']),
2236
            set(index.get_versions()))
2237
2592.3.9 by Robert Collins
Implement KnitGraphIndex.has_version.
2238
    def test_has_version(self):
2239
        index = self.two_graph_index()
2240
        self.assertTrue(index.has_version('tail'))
2241
        self.assertFalse(index.has_version('ghost'))
2242
2592.3.10 by Robert Collins
Implement KnitGraphIndex.get_position.
2243
    def test_get_position(self):
2244
        index = self.two_graph_index()
2592.3.71 by Robert Collins
Basic version of knit-based repository operating, many tests failing.
2245
        self.assertEqual((index._graph_index._indices[0], 0, 100), index.get_position('tip'))
2246
        self.assertEqual((index._graph_index._indices[1], 100, 78), index.get_position('parent'))
2592.3.10 by Robert Collins
Implement KnitGraphIndex.get_position.
2247
2592.3.13 by Robert Collins
Implement KnitGraphIndex.get_method.
2248
    def test_get_method_deltas(self):
2249
        index = self.two_graph_index(deltas=True)
2592.3.11 by Robert Collins
Implement KnitGraphIndex.get_method.
2250
        self.assertEqual('fulltext', index.get_method('tip'))
2251
        self.assertEqual('line-delta', index.get_method('parent'))
2252
2592.3.13 by Robert Collins
Implement KnitGraphIndex.get_method.
2253
    def test_get_method_no_deltas(self):
2254
        # check that the parent-history lookup is ignored with deltas=False.
2255
        index = self.two_graph_index(deltas=False)
2256
        self.assertEqual('fulltext', index.get_method('tip'))
2257
        self.assertEqual('fulltext', index.get_method('parent'))
2258
2592.3.14 by Robert Collins
Implement KnitGraphIndex.get_options.
2259
    def test_get_options_deltas(self):
2260
        index = self.two_graph_index(deltas=True)
2658.2.1 by Robert Collins
Fix mismatch between KnitGraphIndex and KnitIndex in get_options.
2261
        self.assertEqual(['fulltext', 'no-eol'], index.get_options('tip'))
2262
        self.assertEqual(['line-delta'], index.get_options('parent'))
2592.3.14 by Robert Collins
Implement KnitGraphIndex.get_options.
2263
2264
    def test_get_options_no_deltas(self):
2265
        # check that the parent-history lookup is ignored with deltas=False.
2266
        index = self.two_graph_index(deltas=False)
2658.2.1 by Robert Collins
Fix mismatch between KnitGraphIndex and KnitIndex in get_options.
2267
        self.assertEqual(['fulltext', 'no-eol'], index.get_options('tip'))
2268
        self.assertEqual(['fulltext'], index.get_options('parent'))
2592.3.14 by Robert Collins
Implement KnitGraphIndex.get_options.
2269
2592.3.15 by Robert Collins
Implement KnitGraphIndex.get_parents/get_parents_with_ghosts.
2270
    def test_get_parents(self):
2271
        # get_parents ignores ghosts
2272
        index = self.two_graph_index()
2592.3.43 by Robert Collins
A knit iter_parents API.
2273
        self.assertEqual(('tail', ), index.get_parents('parent'))
2274
        # and errors on ghosts.
2275
        self.assertRaises(errors.RevisionNotPresent,
2276
            index.get_parents, 'ghost')
2592.3.15 by Robert Collins
Implement KnitGraphIndex.get_parents/get_parents_with_ghosts.
2277
2278
    def test_get_parents_with_ghosts(self):
2279
        index = self.two_graph_index()
2280
        self.assertEqual(('tail', 'ghost'), index.get_parents_with_ghosts('parent'))
2592.3.43 by Robert Collins
A knit iter_parents API.
2281
        # and errors on ghosts.
2282
        self.assertRaises(errors.RevisionNotPresent,
2283
            index.get_parents_with_ghosts, 'ghost')
2592.3.15 by Robert Collins
Implement KnitGraphIndex.get_parents/get_parents_with_ghosts.
2284
2592.3.16 by Robert Collins
Implement KnitGraphIndex.check_versions_present.
2285
    def test_check_versions_present(self):
2286
        # ghosts should not be considered present
2287
        index = self.two_graph_index()
2288
        self.assertRaises(RevisionNotPresent, index.check_versions_present,
2289
            ['ghost'])
2290
        self.assertRaises(RevisionNotPresent, index.check_versions_present,
2291
            ['tail', 'ghost'])
2292
        index.check_versions_present(['tail', 'separate'])
2592.3.14 by Robert Collins
Implement KnitGraphIndex.get_options.
2293
2592.3.19 by Robert Collins
Change KnitGraphIndex from returning data to performing a callback on insertions.
2294
    def catch_add(self, entries):
2295
        self.caught_entries.append(entries)
2296
2297
    def test_add_no_callback_errors(self):
2298
        index = self.two_graph_index()
2299
        self.assertRaises(errors.ReadOnlyError, index.add_version,
2670.2.2 by Robert Collins
* In ``bzrlib.knit`` the internal interface has been altered to use
2300
            'new', 'fulltext,no-eol', (None, 50, 60), ['separate'])
2592.3.19 by Robert Collins
Change KnitGraphIndex from returning data to performing a callback on insertions.
2301
2592.3.17 by Robert Collins
Add add_version(s) to KnitGraphIndex, completing the required api for KnitVersionedFile.
2302
    def test_add_version_smoke(self):
2592.3.19 by Robert Collins
Change KnitGraphIndex from returning data to performing a callback on insertions.
2303
        index = self.two_graph_index(catch_adds=True)
2670.2.2 by Robert Collins
* In ``bzrlib.knit`` the internal interface has been altered to use
2304
        index.add_version('new', 'fulltext,no-eol', (None, 50, 60), ['separate'])
2624.2.5 by Robert Collins
Change bzrlib.index.Index keys to be 1-tuples, not strings.
2305
        self.assertEqual([[(('new', ), 'N50 60', ((('separate',),),))]],
2592.3.19 by Robert Collins
Change KnitGraphIndex from returning data to performing a callback on insertions.
2306
            self.caught_entries)
2592.3.17 by Robert Collins
Add add_version(s) to KnitGraphIndex, completing the required api for KnitVersionedFile.
2307
2308
    def test_add_version_delta_not_delta_index(self):
2592.3.19 by Robert Collins
Change KnitGraphIndex from returning data to performing a callback on insertions.
2309
        index = self.two_graph_index(catch_adds=True)
2592.3.17 by Robert Collins
Add add_version(s) to KnitGraphIndex, completing the required api for KnitVersionedFile.
2310
        self.assertRaises(errors.KnitCorrupt, index.add_version,
2670.2.2 by Robert Collins
* In ``bzrlib.knit`` the internal interface has been altered to use
2311
            'new', 'no-eol,line-delta', (None, 0, 100), ['parent'])
2592.3.19 by Robert Collins
Change KnitGraphIndex from returning data to performing a callback on insertions.
2312
        self.assertEqual([], self.caught_entries)
2592.3.17 by Robert Collins
Add add_version(s) to KnitGraphIndex, completing the required api for KnitVersionedFile.
2313
2314
    def test_add_version_same_dup(self):
2592.3.19 by Robert Collins
Change KnitGraphIndex from returning data to performing a callback on insertions.
2315
        index = self.two_graph_index(catch_adds=True)
2592.3.17 by Robert Collins
Add add_version(s) to KnitGraphIndex, completing the required api for KnitVersionedFile.
2316
        # options can be spelt two different ways
2670.2.2 by Robert Collins
* In ``bzrlib.knit`` the internal interface has been altered to use
2317
        index.add_version('tip', 'fulltext,no-eol', (None, 0, 100), ['parent'])
2318
        index.add_version('tip', 'no-eol,fulltext', (None, 0, 100), ['parent'])
2592.3.19 by Robert Collins
Change KnitGraphIndex from returning data to performing a callback on insertions.
2319
        # but neither should have added data.
2320
        self.assertEqual([[], []], self.caught_entries)
2592.3.17 by Robert Collins
Add add_version(s) to KnitGraphIndex, completing the required api for KnitVersionedFile.
2321
        
2322
    def test_add_version_different_dup(self):
2592.3.19 by Robert Collins
Change KnitGraphIndex from returning data to performing a callback on insertions.
2323
        index = self.two_graph_index(deltas=True, catch_adds=True)
2592.3.17 by Robert Collins
Add add_version(s) to KnitGraphIndex, completing the required api for KnitVersionedFile.
2324
        # change options
2325
        self.assertRaises(errors.KnitCorrupt, index.add_version,
2670.2.2 by Robert Collins
* In ``bzrlib.knit`` the internal interface has been altered to use
2326
            'tip', 'no-eol,line-delta', (None, 0, 100), ['parent'])
2327
        self.assertRaises(errors.KnitCorrupt, index.add_version,
2328
            'tip', 'line-delta,no-eol', (None, 0, 100), ['parent'])
2329
        self.assertRaises(errors.KnitCorrupt, index.add_version,
2330
            'tip', 'fulltext', (None, 0, 100), ['parent'])
2592.3.17 by Robert Collins
Add add_version(s) to KnitGraphIndex, completing the required api for KnitVersionedFile.
2331
        # position/length
2332
        self.assertRaises(errors.KnitCorrupt, index.add_version,
2670.2.2 by Robert Collins
* In ``bzrlib.knit`` the internal interface has been altered to use
2333
            'tip', 'fulltext,no-eol', (None, 50, 100), ['parent'])
2592.3.17 by Robert Collins
Add add_version(s) to KnitGraphIndex, completing the required api for KnitVersionedFile.
2334
        self.assertRaises(errors.KnitCorrupt, index.add_version,
2670.2.2 by Robert Collins
* In ``bzrlib.knit`` the internal interface has been altered to use
2335
            'tip', 'fulltext,no-eol', (None, 0, 1000), ['parent'])
2592.3.17 by Robert Collins
Add add_version(s) to KnitGraphIndex, completing the required api for KnitVersionedFile.
2336
        # parents
2337
        self.assertRaises(errors.KnitCorrupt, index.add_version,
2670.2.2 by Robert Collins
* In ``bzrlib.knit`` the internal interface has been altered to use
2338
            'tip', 'fulltext,no-eol', (None, 0, 100), [])
2592.3.19 by Robert Collins
Change KnitGraphIndex from returning data to performing a callback on insertions.
2339
        self.assertEqual([], self.caught_entries)
2592.3.17 by Robert Collins
Add add_version(s) to KnitGraphIndex, completing the required api for KnitVersionedFile.
2340
        
2341
    def test_add_versions_nodeltas(self):
2592.3.19 by Robert Collins
Change KnitGraphIndex from returning data to performing a callback on insertions.
2342
        index = self.two_graph_index(catch_adds=True)
2343
        index.add_versions([
2670.2.2 by Robert Collins
* In ``bzrlib.knit`` the internal interface has been altered to use
2344
                ('new', 'fulltext,no-eol', (None, 50, 60), ['separate']),
2345
                ('new2', 'fulltext', (None, 0, 6), ['new']),
2592.3.19 by Robert Collins
Change KnitGraphIndex from returning data to performing a callback on insertions.
2346
                ])
2624.2.5 by Robert Collins
Change bzrlib.index.Index keys to be 1-tuples, not strings.
2347
        self.assertEqual([(('new', ), 'N50 60', ((('separate',),),)),
2348
            (('new2', ), ' 0 6', ((('new',),),))],
2592.3.19 by Robert Collins
Change KnitGraphIndex from returning data to performing a callback on insertions.
2349
            sorted(self.caught_entries[0]))
2350
        self.assertEqual(1, len(self.caught_entries))
2592.3.17 by Robert Collins
Add add_version(s) to KnitGraphIndex, completing the required api for KnitVersionedFile.
2351
2352
    def test_add_versions_deltas(self):
2592.3.19 by Robert Collins
Change KnitGraphIndex from returning data to performing a callback on insertions.
2353
        index = self.two_graph_index(deltas=True, catch_adds=True)
2354
        index.add_versions([
2670.2.2 by Robert Collins
* In ``bzrlib.knit`` the internal interface has been altered to use
2355
                ('new', 'fulltext,no-eol', (None, 50, 60), ['separate']),
2356
                ('new2', 'line-delta', (None, 0, 6), ['new']),
2592.3.19 by Robert Collins
Change KnitGraphIndex from returning data to performing a callback on insertions.
2357
                ])
2624.2.5 by Robert Collins
Change bzrlib.index.Index keys to be 1-tuples, not strings.
2358
        self.assertEqual([(('new', ), 'N50 60', ((('separate',),), ())),
2359
            (('new2', ), ' 0 6', ((('new',),), (('new',),), ))],
2592.3.19 by Robert Collins
Change KnitGraphIndex from returning data to performing a callback on insertions.
2360
            sorted(self.caught_entries[0]))
2361
        self.assertEqual(1, len(self.caught_entries))
2592.3.17 by Robert Collins
Add add_version(s) to KnitGraphIndex, completing the required api for KnitVersionedFile.
2362
2363
    def test_add_versions_delta_not_delta_index(self):
2592.3.19 by Robert Collins
Change KnitGraphIndex from returning data to performing a callback on insertions.
2364
        index = self.two_graph_index(catch_adds=True)
2592.3.17 by Robert Collins
Add add_version(s) to KnitGraphIndex, completing the required api for KnitVersionedFile.
2365
        self.assertRaises(errors.KnitCorrupt, index.add_versions,
2670.2.2 by Robert Collins
* In ``bzrlib.knit`` the internal interface has been altered to use
2366
            [('new', 'no-eol,line-delta', (None, 0, 100), ['parent'])])
2592.3.19 by Robert Collins
Change KnitGraphIndex from returning data to performing a callback on insertions.
2367
        self.assertEqual([], self.caught_entries)
2592.3.17 by Robert Collins
Add add_version(s) to KnitGraphIndex, completing the required api for KnitVersionedFile.
2368
2841.2.1 by Robert Collins
* Commit no longer checks for new text keys during insertion when the
2369
    def test_add_versions_random_id_accepted(self):
2370
        index = self.two_graph_index(catch_adds=True)
2371
        index.add_versions([], random_id=True)
2372
2592.3.17 by Robert Collins
Add add_version(s) to KnitGraphIndex, completing the required api for KnitVersionedFile.
2373
    def test_add_versions_same_dup(self):
2592.3.19 by Robert Collins
Change KnitGraphIndex from returning data to performing a callback on insertions.
2374
        index = self.two_graph_index(catch_adds=True)
2592.3.17 by Robert Collins
Add add_version(s) to KnitGraphIndex, completing the required api for KnitVersionedFile.
2375
        # options can be spelt two different ways
2670.2.2 by Robert Collins
* In ``bzrlib.knit`` the internal interface has been altered to use
2376
        index.add_versions([('tip', 'fulltext,no-eol', (None, 0, 100), ['parent'])])
2377
        index.add_versions([('tip', 'no-eol,fulltext', (None, 0, 100), ['parent'])])
2592.3.19 by Robert Collins
Change KnitGraphIndex from returning data to performing a callback on insertions.
2378
        # but neither should have added data.
2379
        self.assertEqual([[], []], self.caught_entries)
2592.3.17 by Robert Collins
Add add_version(s) to KnitGraphIndex, completing the required api for KnitVersionedFile.
2380
        
2381
    def test_add_versions_different_dup(self):
2592.3.19 by Robert Collins
Change KnitGraphIndex from returning data to performing a callback on insertions.
2382
        index = self.two_graph_index(deltas=True, catch_adds=True)
2592.3.17 by Robert Collins
Add add_version(s) to KnitGraphIndex, completing the required api for KnitVersionedFile.
2383
        # change options
2384
        self.assertRaises(errors.KnitCorrupt, index.add_versions,
2670.2.2 by Robert Collins
* In ``bzrlib.knit`` the internal interface has been altered to use
2385
            [('tip', 'no-eol,line-delta', (None, 0, 100), ['parent'])])
2386
        self.assertRaises(errors.KnitCorrupt, index.add_versions,
2387
            [('tip', 'line-delta,no-eol', (None, 0, 100), ['parent'])])
2388
        self.assertRaises(errors.KnitCorrupt, index.add_versions,
2389
            [('tip', 'fulltext', (None, 0, 100), ['parent'])])
2592.3.17 by Robert Collins
Add add_version(s) to KnitGraphIndex, completing the required api for KnitVersionedFile.
2390
        # position/length
2391
        self.assertRaises(errors.KnitCorrupt, index.add_versions,
2670.2.2 by Robert Collins
* In ``bzrlib.knit`` the internal interface has been altered to use
2392
            [('tip', 'fulltext,no-eol', (None, 50, 100), ['parent'])])
2592.3.17 by Robert Collins
Add add_version(s) to KnitGraphIndex, completing the required api for KnitVersionedFile.
2393
        self.assertRaises(errors.KnitCorrupt, index.add_versions,
2670.2.2 by Robert Collins
* In ``bzrlib.knit`` the internal interface has been altered to use
2394
            [('tip', 'fulltext,no-eol', (None, 0, 1000), ['parent'])])
2592.3.17 by Robert Collins
Add add_version(s) to KnitGraphIndex, completing the required api for KnitVersionedFile.
2395
        # parents
2396
        self.assertRaises(errors.KnitCorrupt, index.add_versions,
2670.2.2 by Robert Collins
* In ``bzrlib.knit`` the internal interface has been altered to use
2397
            [('tip', 'fulltext,no-eol', (None, 0, 100), [])])
2592.3.17 by Robert Collins
Add add_version(s) to KnitGraphIndex, completing the required api for KnitVersionedFile.
2398
        # change options in the second record
2399
        self.assertRaises(errors.KnitCorrupt, index.add_versions,
2670.2.2 by Robert Collins
* In ``bzrlib.knit`` the internal interface has been altered to use
2400
            [('tip', 'fulltext,no-eol', (None, 0, 100), ['parent']),
2401
             ('tip', 'no-eol,line-delta', (None, 0, 100), ['parent'])])
2592.3.19 by Robert Collins
Change KnitGraphIndex from returning data to performing a callback on insertions.
2402
        self.assertEqual([], self.caught_entries)
2592.3.34 by Robert Collins
Rough unfactored support for parentless KnitGraphIndexs.
2403
2592.3.43 by Robert Collins
A knit iter_parents API.
2404
    def test_iter_parents(self):
2405
        index1 = self.make_g_index('1', 1, [
2406
        # no parents
2624.2.5 by Robert Collins
Change bzrlib.index.Index keys to be 1-tuples, not strings.
2407
            (('r0', ), 'N0 100', ([], )),
2592.3.43 by Robert Collins
A knit iter_parents API.
2408
        # 1 parent
2624.2.5 by Robert Collins
Change bzrlib.index.Index keys to be 1-tuples, not strings.
2409
            (('r1', ), '', ([('r0', )], ))])
2592.3.43 by Robert Collins
A knit iter_parents API.
2410
        index2 = self.make_g_index('2', 1, [
2411
        # 2 parents
2624.2.5 by Robert Collins
Change bzrlib.index.Index keys to be 1-tuples, not strings.
2412
            (('r2', ), 'N0 100', ([('r1', ), ('r0', )], )),
2592.3.43 by Robert Collins
A knit iter_parents API.
2413
            ])
2414
        combined_index = CombinedGraphIndex([index1, index2])
2415
        index = KnitGraphIndex(combined_index)
2416
        # XXX TODO a ghost
2417
        # cases: each sample data individually:
2418
        self.assertEqual(set([('r0', ())]),
2419
            set(index.iter_parents(['r0'])))
2420
        self.assertEqual(set([('r1', ('r0', ))]),
2421
            set(index.iter_parents(['r1'])))
2422
        self.assertEqual(set([('r2', ('r1', 'r0'))]),
2423
            set(index.iter_parents(['r2'])))
2424
        # no nodes returned for a missing node
2425
        self.assertEqual(set(),
2426
            set(index.iter_parents(['missing'])))
2427
        # 1 node returned with missing nodes skipped
2428
        self.assertEqual(set([('r1', ('r0', ))]),
2429
            set(index.iter_parents(['ghost1', 'r1', 'ghost'])))
2430
        # 2 nodes returned
2431
        self.assertEqual(set([('r0', ()), ('r1', ('r0', ))]),
2432
            set(index.iter_parents(['r0', 'r1'])))
2433
        # 2 nodes returned, missing skipped
2434
        self.assertEqual(set([('r0', ()), ('r1', ('r0', ))]),
2435
            set(index.iter_parents(['a', 'r0', 'b', 'r1', 'c'])))
2436
2592.3.34 by Robert Collins
Rough unfactored support for parentless KnitGraphIndexs.
2437
2438
class TestNoParentsGraphIndexKnit(KnitTests):
2439
    """Tests for knits using KnitGraphIndex with no parents."""
2440
2441
    def make_g_index(self, name, ref_lists=0, nodes=[]):
2442
        builder = GraphIndexBuilder(ref_lists)
2443
        for node, references in nodes:
2444
            builder.add_node(node, references)
2445
        stream = builder.finish()
2446
        trans = self.get_transport()
2890.2.1 by Robert Collins
* ``bzrlib.index.GraphIndex`` now requires a size parameter to the
2447
        size = trans.put_file(name, stream)
2448
        return GraphIndex(trans, name, size)
2592.3.34 by Robert Collins
Rough unfactored support for parentless KnitGraphIndexs.
2449
2450
    def test_parents_deltas_incompatible(self):
2451
        index = CombinedGraphIndex([])
2452
        self.assertRaises(errors.KnitError, KnitGraphIndex, index,
2453
            deltas=True, parents=False)
2454
2455
    def two_graph_index(self, catch_adds=False):
2456
        """Build a two-graph index.
2457
2458
        :param deltas: If true, use underlying indices with two node-ref
2459
            lists and 'parent' set to a delta-compressed against tail.
2460
        """
2461
        # put several versions in the index.
2462
        index1 = self.make_g_index('1', 0, [
2624.2.5 by Robert Collins
Change bzrlib.index.Index keys to be 1-tuples, not strings.
2463
            (('tip', ), 'N0 100'),
2464
            (('tail', ), '')])
2592.3.34 by Robert Collins
Rough unfactored support for parentless KnitGraphIndexs.
2465
        index2 = self.make_g_index('2', 0, [
2624.2.5 by Robert Collins
Change bzrlib.index.Index keys to be 1-tuples, not strings.
2466
            (('parent', ), ' 100 78'),
2467
            (('separate', ), '')])
2592.3.34 by Robert Collins
Rough unfactored support for parentless KnitGraphIndexs.
2468
        combined_index = CombinedGraphIndex([index1, index2])
2469
        if catch_adds:
2470
            self.combined_index = combined_index
2471
            self.caught_entries = []
2472
            add_callback = self.catch_add
2473
        else:
2474
            add_callback = None
2475
        return KnitGraphIndex(combined_index, parents=False,
2476
            add_callback=add_callback)
2477
2478
    def test_get_graph(self):
2479
        index = self.two_graph_index()
2480
        self.assertEqual(set([
2481
            ('tip', ()),
2482
            ('tail', ()),
2483
            ('parent', ()),
2484
            ('separate', ()),
2485
            ]), set(index.get_graph()))
2486
2487
    def test_get_ancestry(self):
2488
        # with no parents, ancestry is always just the key.
2489
        index = self.two_graph_index()
2490
        self.assertEqual([], index.get_ancestry([]))
2491
        self.assertEqual(['separate'], index.get_ancestry(['separate']))
2492
        self.assertEqual(['tail'], index.get_ancestry(['tail']))
2493
        self.assertEqual(['parent'], index.get_ancestry(['parent']))
2494
        self.assertEqual(['tip'], index.get_ancestry(['tip']))
2495
        self.assertTrue(index.get_ancestry(['tip', 'separate']) in
2496
            (['tip', 'separate'],
2497
             ['separate', 'tip'],
2498
            ))
2499
        # asking for a ghost makes it go boom.
2500
        self.assertRaises(errors.RevisionNotPresent, index.get_ancestry, ['ghost'])
2501
2502
    def test_get_ancestry_with_ghosts(self):
2503
        index = self.two_graph_index()
2504
        self.assertEqual([], index.get_ancestry_with_ghosts([]))
2505
        self.assertEqual(['separate'], index.get_ancestry_with_ghosts(['separate']))
2506
        self.assertEqual(['tail'], index.get_ancestry_with_ghosts(['tail']))
2507
        self.assertEqual(['parent'], index.get_ancestry_with_ghosts(['parent']))
2508
        self.assertEqual(['tip'], index.get_ancestry_with_ghosts(['tip']))
2509
        self.assertTrue(index.get_ancestry_with_ghosts(['tip', 'separate']) in
2510
            (['tip', 'separate'],
2511
             ['separate', 'tip'],
2512
            ))
2513
        # asking for a ghost makes it go boom.
2514
        self.assertRaises(errors.RevisionNotPresent, index.get_ancestry_with_ghosts, ['ghost'])
2515
2516
    def test_num_versions(self):
2517
        index = self.two_graph_index()
2518
        self.assertEqual(4, index.num_versions())
2519
2520
    def test_get_versions(self):
2521
        index = self.two_graph_index()
2522
        self.assertEqual(set(['tail', 'tip', 'parent', 'separate']),
2523
            set(index.get_versions()))
2524
2525
    def test_has_version(self):
2526
        index = self.two_graph_index()
2527
        self.assertTrue(index.has_version('tail'))
2528
        self.assertFalse(index.has_version('ghost'))
2529
2530
    def test_get_position(self):
2531
        index = self.two_graph_index()
2592.3.71 by Robert Collins
Basic version of knit-based repository operating, many tests failing.
2532
        self.assertEqual((index._graph_index._indices[0], 0, 100), index.get_position('tip'))
2533
        self.assertEqual((index._graph_index._indices[1], 100, 78), index.get_position('parent'))
2592.3.34 by Robert Collins
Rough unfactored support for parentless KnitGraphIndexs.
2534
2535
    def test_get_method(self):
2536
        index = self.two_graph_index()
2537
        self.assertEqual('fulltext', index.get_method('tip'))
2658.2.1 by Robert Collins
Fix mismatch between KnitGraphIndex and KnitIndex in get_options.
2538
        self.assertEqual(['fulltext'], index.get_options('parent'))
2592.3.34 by Robert Collins
Rough unfactored support for parentless KnitGraphIndexs.
2539
2540
    def test_get_options(self):
2541
        index = self.two_graph_index()
2658.2.1 by Robert Collins
Fix mismatch between KnitGraphIndex and KnitIndex in get_options.
2542
        self.assertEqual(['fulltext', 'no-eol'], index.get_options('tip'))
2543
        self.assertEqual(['fulltext'], index.get_options('parent'))
2592.3.34 by Robert Collins
Rough unfactored support for parentless KnitGraphIndexs.
2544
2545
    def test_get_parents(self):
2546
        index = self.two_graph_index()
2547
        self.assertEqual((), index.get_parents('parent'))
2592.3.43 by Robert Collins
A knit iter_parents API.
2548
        # and errors on ghosts.
2549
        self.assertRaises(errors.RevisionNotPresent,
2550
            index.get_parents, 'ghost')
2592.3.34 by Robert Collins
Rough unfactored support for parentless KnitGraphIndexs.
2551
2552
    def test_get_parents_with_ghosts(self):
2553
        index = self.two_graph_index()
2554
        self.assertEqual((), index.get_parents_with_ghosts('parent'))
2592.3.43 by Robert Collins
A knit iter_parents API.
2555
        # and errors on ghosts.
2556
        self.assertRaises(errors.RevisionNotPresent,
2557
            index.get_parents_with_ghosts, 'ghost')
2592.3.34 by Robert Collins
Rough unfactored support for parentless KnitGraphIndexs.
2558
2559
    def test_check_versions_present(self):
2560
        index = self.two_graph_index()
2561
        self.assertRaises(RevisionNotPresent, index.check_versions_present,
2562
            ['missing'])
2563
        self.assertRaises(RevisionNotPresent, index.check_versions_present,
2564
            ['tail', 'missing'])
2565
        index.check_versions_present(['tail', 'separate'])
2566
2567
    def catch_add(self, entries):
2568
        self.caught_entries.append(entries)
2569
2570
    def test_add_no_callback_errors(self):
2571
        index = self.two_graph_index()
2572
        self.assertRaises(errors.ReadOnlyError, index.add_version,
2670.2.2 by Robert Collins
* In ``bzrlib.knit`` the internal interface has been altered to use
2573
            'new', 'fulltext,no-eol', (None, 50, 60), ['separate'])
2592.3.34 by Robert Collins
Rough unfactored support for parentless KnitGraphIndexs.
2574
2575
    def test_add_version_smoke(self):
2576
        index = self.two_graph_index(catch_adds=True)
2670.2.2 by Robert Collins
* In ``bzrlib.knit`` the internal interface has been altered to use
2577
        index.add_version('new', 'fulltext,no-eol', (None, 50, 60), [])
2624.2.5 by Robert Collins
Change bzrlib.index.Index keys to be 1-tuples, not strings.
2578
        self.assertEqual([[(('new', ), 'N50 60')]],
2592.3.34 by Robert Collins
Rough unfactored support for parentless KnitGraphIndexs.
2579
            self.caught_entries)
2580
2581
    def test_add_version_delta_not_delta_index(self):
2582
        index = self.two_graph_index(catch_adds=True)
2583
        self.assertRaises(errors.KnitCorrupt, index.add_version,
2670.2.2 by Robert Collins
* In ``bzrlib.knit`` the internal interface has been altered to use
2584
            'new', 'no-eol,line-delta', (None, 0, 100), [])
2592.3.34 by Robert Collins
Rough unfactored support for parentless KnitGraphIndexs.
2585
        self.assertEqual([], self.caught_entries)
2586
2587
    def test_add_version_same_dup(self):
2588
        index = self.two_graph_index(catch_adds=True)
2589
        # options can be spelt two different ways
2670.2.2 by Robert Collins
* In ``bzrlib.knit`` the internal interface has been altered to use
2590
        index.add_version('tip', 'fulltext,no-eol', (None, 0, 100), [])
2591
        index.add_version('tip', 'no-eol,fulltext', (None, 0, 100), [])
2592.3.34 by Robert Collins
Rough unfactored support for parentless KnitGraphIndexs.
2592
        # but neither should have added data.
2593
        self.assertEqual([[], []], self.caught_entries)
2594
        
2595
    def test_add_version_different_dup(self):
2596
        index = self.two_graph_index(catch_adds=True)
2597
        # change options
2598
        self.assertRaises(errors.KnitCorrupt, index.add_version,
2670.2.2 by Robert Collins
* In ``bzrlib.knit`` the internal interface has been altered to use
2599
            'tip', 'no-eol,line-delta', (None, 0, 100), [])
2600
        self.assertRaises(errors.KnitCorrupt, index.add_version,
2601
            'tip', 'line-delta,no-eol', (None, 0, 100), [])
2602
        self.assertRaises(errors.KnitCorrupt, index.add_version,
2603
            'tip', 'fulltext', (None, 0, 100), [])
2592.3.34 by Robert Collins
Rough unfactored support for parentless KnitGraphIndexs.
2604
        # position/length
2605
        self.assertRaises(errors.KnitCorrupt, index.add_version,
2670.2.2 by Robert Collins
* In ``bzrlib.knit`` the internal interface has been altered to use
2606
            'tip', 'fulltext,no-eol', (None, 50, 100), [])
2592.3.34 by Robert Collins
Rough unfactored support for parentless KnitGraphIndexs.
2607
        self.assertRaises(errors.KnitCorrupt, index.add_version,
2670.2.2 by Robert Collins
* In ``bzrlib.knit`` the internal interface has been altered to use
2608
            'tip', 'fulltext,no-eol', (None, 0, 1000), [])
2592.3.34 by Robert Collins
Rough unfactored support for parentless KnitGraphIndexs.
2609
        # parents
2610
        self.assertRaises(errors.KnitCorrupt, index.add_version,
2670.2.2 by Robert Collins
* In ``bzrlib.knit`` the internal interface has been altered to use
2611
            'tip', 'fulltext,no-eol', (None, 0, 100), ['parent'])
2592.3.34 by Robert Collins
Rough unfactored support for parentless KnitGraphIndexs.
2612
        self.assertEqual([], self.caught_entries)
2613
        
2614
    def test_add_versions(self):
2615
        index = self.two_graph_index(catch_adds=True)
2616
        index.add_versions([
2670.2.2 by Robert Collins
* In ``bzrlib.knit`` the internal interface has been altered to use
2617
                ('new', 'fulltext,no-eol', (None, 50, 60), []),
2618
                ('new2', 'fulltext', (None, 0, 6), []),
2592.3.34 by Robert Collins
Rough unfactored support for parentless KnitGraphIndexs.
2619
                ])
2624.2.5 by Robert Collins
Change bzrlib.index.Index keys to be 1-tuples, not strings.
2620
        self.assertEqual([(('new', ), 'N50 60'), (('new2', ), ' 0 6')],
2592.3.34 by Robert Collins
Rough unfactored support for parentless KnitGraphIndexs.
2621
            sorted(self.caught_entries[0]))
2622
        self.assertEqual(1, len(self.caught_entries))
2623
2624
    def test_add_versions_delta_not_delta_index(self):
2625
        index = self.two_graph_index(catch_adds=True)
2626
        self.assertRaises(errors.KnitCorrupt, index.add_versions,
2670.2.2 by Robert Collins
* In ``bzrlib.knit`` the internal interface has been altered to use
2627
            [('new', 'no-eol,line-delta', (None, 0, 100), ['parent'])])
2592.3.34 by Robert Collins
Rough unfactored support for parentless KnitGraphIndexs.
2628
        self.assertEqual([], self.caught_entries)
2629
2630
    def test_add_versions_parents_not_parents_index(self):
2631
        index = self.two_graph_index(catch_adds=True)
2632
        self.assertRaises(errors.KnitCorrupt, index.add_versions,
2670.2.2 by Robert Collins
* In ``bzrlib.knit`` the internal interface has been altered to use
2633
            [('new', 'no-eol,fulltext', (None, 0, 100), ['parent'])])
2592.3.34 by Robert Collins
Rough unfactored support for parentless KnitGraphIndexs.
2634
        self.assertEqual([], self.caught_entries)
2635
2841.2.1 by Robert Collins
* Commit no longer checks for new text keys during insertion when the
2636
    def test_add_versions_random_id_accepted(self):
2637
        index = self.two_graph_index(catch_adds=True)
2638
        index.add_versions([], random_id=True)
2639
2592.3.34 by Robert Collins
Rough unfactored support for parentless KnitGraphIndexs.
2640
    def test_add_versions_same_dup(self):
2641
        index = self.two_graph_index(catch_adds=True)
2642
        # options can be spelt two different ways
2670.2.2 by Robert Collins
* In ``bzrlib.knit`` the internal interface has been altered to use
2643
        index.add_versions([('tip', 'fulltext,no-eol', (None, 0, 100), [])])
2644
        index.add_versions([('tip', 'no-eol,fulltext', (None, 0, 100), [])])
2592.3.34 by Robert Collins
Rough unfactored support for parentless KnitGraphIndexs.
2645
        # but neither should have added data.
2646
        self.assertEqual([[], []], self.caught_entries)
2647
        
2648
    def test_add_versions_different_dup(self):
2649
        index = self.two_graph_index(catch_adds=True)
2650
        # change options
2651
        self.assertRaises(errors.KnitCorrupt, index.add_versions,
2670.2.2 by Robert Collins
* In ``bzrlib.knit`` the internal interface has been altered to use
2652
            [('tip', 'no-eol,line-delta', (None, 0, 100), [])])
2653
        self.assertRaises(errors.KnitCorrupt, index.add_versions,
2654
            [('tip', 'line-delta,no-eol', (None, 0, 100), [])])
2655
        self.assertRaises(errors.KnitCorrupt, index.add_versions,
2656
            [('tip', 'fulltext', (None, 0, 100), [])])
2592.3.34 by Robert Collins
Rough unfactored support for parentless KnitGraphIndexs.
2657
        # position/length
2658
        self.assertRaises(errors.KnitCorrupt, index.add_versions,
2670.2.2 by Robert Collins
* In ``bzrlib.knit`` the internal interface has been altered to use
2659
            [('tip', 'fulltext,no-eol', (None, 50, 100), [])])
2592.3.34 by Robert Collins
Rough unfactored support for parentless KnitGraphIndexs.
2660
        self.assertRaises(errors.KnitCorrupt, index.add_versions,
2670.2.2 by Robert Collins
* In ``bzrlib.knit`` the internal interface has been altered to use
2661
            [('tip', 'fulltext,no-eol', (None, 0, 1000), [])])
2592.3.34 by Robert Collins
Rough unfactored support for parentless KnitGraphIndexs.
2662
        # parents
2663
        self.assertRaises(errors.KnitCorrupt, index.add_versions,
2670.2.2 by Robert Collins
* In ``bzrlib.knit`` the internal interface has been altered to use
2664
            [('tip', 'fulltext,no-eol', (None, 0, 100), ['parent'])])
2592.3.34 by Robert Collins
Rough unfactored support for parentless KnitGraphIndexs.
2665
        # change options in the second record
2666
        self.assertRaises(errors.KnitCorrupt, index.add_versions,
2670.2.2 by Robert Collins
* In ``bzrlib.knit`` the internal interface has been altered to use
2667
            [('tip', 'fulltext,no-eol', (None, 0, 100), []),
2668
             ('tip', 'no-eol,line-delta', (None, 0, 100), [])])
2592.3.34 by Robert Collins
Rough unfactored support for parentless KnitGraphIndexs.
2669
        self.assertEqual([], self.caught_entries)
2670
2592.3.43 by Robert Collins
A knit iter_parents API.
2671
    def test_iter_parents(self):
2672
        index = self.two_graph_index()
2673
        self.assertEqual(set([
2674
            ('tip', ()), ('tail', ()), ('parent', ()), ('separate', ())
2675
            ]),
2676
            set(index.iter_parents(['tip', 'tail', 'ghost', 'parent', 'separate'])))
2677
        self.assertEqual(set([('tip', ())]),
2678
            set(index.iter_parents(['tip'])))
2679
        self.assertEqual(set(),
2680
            set(index.iter_parents([])))