~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/selftest/test_weave.py

  • Committer: John Arbash Meinel
  • Date: 2005-11-14 17:02:35 UTC
  • mto: (1587.1.6 bound-branches)
  • mto: This revision was merged to the branch mainline in revision 1590.
  • Revision ID: john@arbash-meinel.com-20051114170235-f85afa458bae956e
Fixing up the error message for a failed bind.

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
import bzrlib.errors as errors
29
29
from bzrlib.weave import Weave, WeaveFormatError, WeaveError, reweave
30
30
from bzrlib.weavefile import write_weave, read_weave
31
 
from bzrlib.tests import TestCase
 
31
from bzrlib.selftest import TestCase
32
32
from bzrlib.osutils import sha_string
33
33
 
34
34
 
38
38
          "A second line"]
39
39
 
40
40
 
 
41
 
41
42
class TestBase(TestCase):
42
43
    def check_read_write(self, k):
43
44
        """Check the weave k can be written & re-read."""
66
67
    def runTest(self):
67
68
        k = Weave()
68
69
        self.assertFalse('foo' in k)
69
 
        k.add_lines('foo', [], TEXT_1)
 
70
        k.add('foo', [], TEXT_1)
70
71
        self.assertTrue('foo' in k)
71
72
 
72
73
 
77
78
 
78
79
class StoreText(TestBase):
79
80
    """Store and retrieve a simple text."""
80
 
 
81
 
    def test_storing_text(self):
 
81
    def runTest(self):
82
82
        k = Weave()
83
 
        idx = k.add_lines('text0', [], TEXT_0)
84
 
        self.assertEqual(k.get_lines(idx), TEXT_0)
 
83
        idx = k.add('text0', [], TEXT_0)
 
84
        self.assertEqual(k.get(idx), TEXT_0)
85
85
        self.assertEqual(idx, 0)
86
86
 
87
87
 
 
88
 
88
89
class AnnotateOne(TestBase):
89
90
    def runTest(self):
90
91
        k = Weave()
91
 
        k.add_lines('text0', [], TEXT_0)
92
 
        self.assertEqual(k.annotate('text0'),
93
 
                         [('text0', TEXT_0[0])])
 
92
        k.add('text0', [], TEXT_0)
 
93
        self.assertEqual(k.annotate(0),
 
94
                         [(0, TEXT_0[0])])
94
95
 
95
96
 
96
97
class StoreTwo(TestBase):
97
98
    def runTest(self):
98
99
        k = Weave()
99
100
 
100
 
        idx = k.add_lines('text0', [], TEXT_0)
 
101
        idx = k.add('text0', [], TEXT_0)
101
102
        self.assertEqual(idx, 0)
102
103
 
103
 
        idx = k.add_lines('text1', [], TEXT_1)
 
104
        idx = k.add('text1', [], TEXT_1)
104
105
        self.assertEqual(idx, 1)
105
106
 
106
 
        self.assertEqual(k.get_lines(0), TEXT_0)
107
 
        self.assertEqual(k.get_lines(1), TEXT_1)
108
 
 
109
 
 
110
 
class GetSha1(TestBase):
111
 
    def test_get_sha1(self):
 
107
        self.assertEqual(k.get(0), TEXT_0)
 
108
        self.assertEqual(k.get(1), TEXT_1)
 
109
 
 
110
 
 
111
 
 
112
class AddWithGivenSha(TestBase):
 
113
    def runTest(self):
 
114
        """Add with caller-supplied SHA-1"""
112
115
        k = Weave()
113
 
        k.add_lines('text0', [], 'text0')
114
 
        self.assertEqual('34dc0e430c642a26c3dd1c2beb7a8b4f4445eb79',
115
 
                         k.get_sha1('text0'))
116
 
        self.assertRaises(errors.RevisionNotPresent,
117
 
                          k.get_sha1, 0)
118
 
        self.assertRaises(errors.RevisionNotPresent,
119
 
                          k.get_sha1, 'text1')
120
 
                        
 
116
 
 
117
        t = 'text0'
 
118
        k.add('text0', [], [t], sha1=sha_string(t))
 
119
 
 
120
 
121
121
 
122
122
class InvalidAdd(TestBase):
123
123
    """Try to use invalid version number during add."""
124
124
    def runTest(self):
125
125
        k = Weave()
126
126
 
127
 
        self.assertRaises(errors.RevisionNotPresent,
128
 
                          k.add_lines,
 
127
        self.assertRaises(IndexError,
 
128
                          k.add,
129
129
                          'text0',
130
 
                          ['69'],
 
130
                          [69],
131
131
                          ['new text!'])
132
132
 
133
133
 
135
135
    """Add the same version twice; harmless."""
136
136
    def runTest(self):
137
137
        k = Weave()
138
 
        idx = k.add_lines('text0', [], TEXT_0)
139
 
        idx2 = k.add_lines('text0', [], TEXT_0)
 
138
        idx = k.add('text0', [], TEXT_0)
 
139
        idx2 = k.add('text0', [], TEXT_0)
140
140
        self.assertEqual(idx, idx2)
141
141
 
142
142
 
 
143
 
143
144
class InvalidRepeatedAdd(TestBase):
144
145
    def runTest(self):
145
146
        k = Weave()
146
 
        k.add_lines('basis', [], TEXT_0)
147
 
        idx = k.add_lines('text0', [], TEXT_0)
148
 
        self.assertRaises(errors.RevisionAlreadyPresent,
149
 
                          k.add_lines,
 
147
        idx = k.add('text0', [], TEXT_0)
 
148
        self.assertRaises(WeaveError,
 
149
                          k.add,
150
150
                          'text0',
151
151
                          [],
152
152
                          ['not the same text'])
153
 
        self.assertRaises(errors.RevisionAlreadyPresent,
154
 
                          k.add_lines,
 
153
        self.assertRaises(WeaveError,
 
154
                          k.add,
155
155
                          'text0',
156
 
                          ['basis'],         # not the right parents
 
156
                          [12],         # not the right parents
157
157
                          TEXT_0)
158
158
        
159
159
 
 
160
 
160
161
class InsertLines(TestBase):
161
162
    """Store a revision that adds one line to the original.
162
163
 
165
166
    def runTest(self):
166
167
        k = Weave()
167
168
 
168
 
        k.add_lines('text0', [], ['line 1'])
169
 
        k.add_lines('text1', ['text0'], ['line 1', 'line 2'])
170
 
 
171
 
        self.assertEqual(k.annotate('text0'),
172
 
                         [('text0', 'line 1')])
173
 
 
174
 
        self.assertEqual(k.get_lines(1),
 
169
        k.add('text0', [], ['line 1'])
 
170
        k.add('text1', [0], ['line 1', 'line 2'])
 
171
 
 
172
        self.assertEqual(k.annotate(0),
 
173
                         [(0, 'line 1')])
 
174
 
 
175
        self.assertEqual(k.get(1),
175
176
                         ['line 1',
176
177
                          'line 2'])
177
178
 
178
 
        self.assertEqual(k.annotate('text1'),
179
 
                         [('text0', 'line 1'),
180
 
                          ('text1', 'line 2')])
181
 
 
182
 
        k.add_lines('text2', ['text0'], ['line 1', 'diverged line'])
183
 
 
184
 
        self.assertEqual(k.annotate('text2'),
185
 
                         [('text0', 'line 1'),
186
 
                          ('text2', 'diverged line')])
 
179
        self.assertEqual(k.annotate(1),
 
180
                         [(0, 'line 1'),
 
181
                          (1, 'line 2')])
 
182
 
 
183
        k.add('text2', [0], ['line 1', 'diverged line'])
 
184
 
 
185
        self.assertEqual(k.annotate(2),
 
186
                         [(0, 'line 1'),
 
187
                          (2, 'diverged line')])
187
188
 
188
189
        text3 = ['line 1', 'middle line', 'line 2']
189
 
        k.add_lines('text3',
190
 
              ['text0', 'text1'],
 
190
        k.add('text3',
 
191
              [0, 1],
191
192
              text3)
192
193
 
193
194
        # self.log("changes to text3: " + pformat(list(k._delta(set([0, 1]), text3))))
194
195
 
195
196
        self.log("k._weave=" + pformat(k._weave))
196
197
 
197
 
        self.assertEqual(k.annotate('text3'),
198
 
                         [('text0', 'line 1'),
199
 
                          ('text3', 'middle line'),
200
 
                          ('text1', 'line 2')])
 
198
        self.assertEqual(k.annotate(3),
 
199
                         [(0, 'line 1'),
 
200
                          (3, 'middle line'),
 
201
                          (1, 'line 2')])
201
202
 
202
203
        # now multiple insertions at different places
203
 
        k.add_lines('text4',
204
 
              ['text0', 'text1', 'text3'],
 
204
        k.add('text4',
 
205
              [0, 1, 3],
205
206
              ['line 1', 'aaa', 'middle line', 'bbb', 'line 2', 'ccc'])
206
207
 
207
 
        self.assertEqual(k.annotate('text4'), 
208
 
                         [('text0', 'line 1'),
209
 
                          ('text4', 'aaa'),
210
 
                          ('text3', 'middle line'),
211
 
                          ('text4', 'bbb'),
212
 
                          ('text1', 'line 2'),
213
 
                          ('text4', 'ccc')])
 
208
        self.assertEqual(k.annotate(4), 
 
209
                         [(0, 'line 1'),
 
210
                          (4, 'aaa'),
 
211
                          (3, 'middle line'),
 
212
                          (4, 'bbb'),
 
213
                          (1, 'line 2'),
 
214
                          (4, 'ccc')])
 
215
 
214
216
 
215
217
 
216
218
class DeleteLines(TestBase):
222
224
 
223
225
        base_text = ['one', 'two', 'three', 'four']
224
226
 
225
 
        k.add_lines('text0', [], base_text)
 
227
        k.add('text0', [], base_text)
226
228
        
227
229
        texts = [['one', 'two', 'three'],
228
230
                 ['two', 'three', 'four'],
232
234
 
233
235
        i = 1
234
236
        for t in texts:
235
 
            ver = k.add_lines('text%d' % i,
236
 
                        ['text0'], t)
 
237
            ver = k.add('text%d' % i,
 
238
                        [0], t)
237
239
            i += 1
238
240
 
239
241
        self.log('final weave:')
240
242
        self.log('k._weave=' + pformat(k._weave))
241
243
 
242
244
        for i in range(len(texts)):
243
 
            self.assertEqual(k.get_lines(i+1),
 
245
            self.assertEqual(k.get(i+1),
244
246
                             texts[i])
 
247
            
 
248
 
245
249
 
246
250
 
247
251
class SuicideDelete(TestBase):
263
267
        return 
264
268
 
265
269
        self.assertRaises(WeaveFormatError,
266
 
                          k.get_lines,
 
270
                          k.get,
267
271
                          0)        
268
272
 
269
273
 
 
274
 
270
275
class CannedDelete(TestBase):
271
276
    """Unpack canned weave with deleted lines."""
272
277
    def runTest(self):
283
288
                'last line',
284
289
                ('}', 0),
285
290
                ]
286
 
        k._sha1s = [sha_string('first lineline to be deletedlast line')
287
 
                  , sha_string('first linelast line')]
288
291
 
289
 
        self.assertEqual(k.get_lines(0),
 
292
        self.assertEqual(k.get(0),
290
293
                         ['first line',
291
294
                          'line to be deleted',
292
295
                          'last line',
293
296
                          ])
294
297
 
295
 
        self.assertEqual(k.get_lines(1),
 
298
        self.assertEqual(k.get(1),
296
299
                         ['first line',
297
300
                          'last line',
298
301
                          ])
299
302
 
300
303
 
 
304
 
301
305
class CannedReplacement(TestBase):
302
306
    """Unpack canned weave with deleted lines."""
303
307
    def runTest(self):
317
321
                'last line',
318
322
                ('}', 0),
319
323
                ]
320
 
        k._sha1s = [sha_string('first lineline to be deletedlast line')
321
 
                  , sha_string('first linereplacement linelast line')]
322
324
 
323
 
        self.assertEqual(k.get_lines(0),
 
325
        self.assertEqual(k.get(0),
324
326
                         ['first line',
325
327
                          'line to be deleted',
326
328
                          'last line',
327
329
                          ])
328
330
 
329
 
        self.assertEqual(k.get_lines(1),
 
331
        self.assertEqual(k.get(1),
330
332
                         ['first line',
331
333
                          'replacement line',
332
334
                          'last line',
333
335
                          ])
334
336
 
335
337
 
 
338
 
336
339
class BadWeave(TestBase):
337
340
    """Test that we trap an insert which should not occur."""
338
341
    def runTest(self):
418
421
                '}',
419
422
                ('}', 0)]
420
423
 
421
 
        k._sha1s = [sha_string('foo {}')
422
 
                  , sha_string('foo {  added in version 1  also from v1}')
423
 
                  , sha_string('foo {  added in v2}')
424
 
                  , sha_string('foo {  added in version 1  added in v2  also from v1}')
425
 
                  ]
426
 
 
427
 
        self.assertEqual(k.get_lines(0),
 
424
        self.assertEqual(k.get(0),
428
425
                         ['foo {',
429
426
                          '}'])
430
427
 
431
 
        self.assertEqual(k.get_lines(1),
 
428
        self.assertEqual(k.get(1),
432
429
                         ['foo {',
433
430
                          '  added in version 1',
434
431
                          '  also from v1',
435
432
                          '}'])
436
433
                       
437
 
        self.assertEqual(k.get_lines(2),
 
434
        self.assertEqual(k.get(2),
438
435
                         ['foo {',
439
436
                          '  added in v2',
440
437
                          '}'])
441
438
 
442
 
        self.assertEqual(k.get_lines(3),
 
439
        self.assertEqual(k.get(3),
443
440
                         ['foo {',
444
441
                          '  added in version 1',
445
442
                          '  added in v2',
447
444
                          '}'])
448
445
                         
449
446
 
 
447
 
450
448
class DeleteLines2(TestBase):
451
449
    """Test recording revisions that delete lines.
452
450
 
455
453
    def runTest(self):
456
454
        k = Weave()
457
455
 
458
 
        k.add_lines('text0', [], ["line the first",
 
456
        k.add('text0', [], ["line the first",
459
457
                   "line 2",
460
458
                   "line 3",
461
459
                   "fine"])
462
460
 
463
 
        self.assertEqual(len(k.get_lines(0)), 4)
 
461
        self.assertEqual(len(k.get(0)), 4)
464
462
 
465
 
        k.add_lines('text1', ['text0'], ["line the first",
 
463
        k.add('text1', [0], ["line the first",
466
464
                   "fine"])
467
465
 
468
 
        self.assertEqual(k.get_lines(1),
 
466
        self.assertEqual(k.get(1),
469
467
                         ["line the first",
470
468
                          "fine"])
471
469
 
472
 
        self.assertEqual(k.annotate('text1'),
473
 
                         [('text0', "line the first"),
474
 
                          ('text0', "fine")])
 
470
        self.assertEqual(k.annotate(1),
 
471
                         [(0, "line the first"),
 
472
                          (0, "fine")])
 
473
 
475
474
 
476
475
 
477
476
class IncludeVersions(TestBase):
495
494
                "second line",
496
495
                ('}', 1)]
497
496
 
498
 
        k._sha1s = [sha_string('first line')
499
 
                  , sha_string('first linesecond line')]
500
 
 
501
 
        self.assertEqual(k.get_lines(1),
 
497
        self.assertEqual(k.get(1),
502
498
                         ["first line",
503
499
                          "second line"])
504
500
 
505
 
        self.assertEqual(k.get_lines(0),
 
501
        self.assertEqual(k.get(0),
506
502
                         ["first line"])
507
503
 
508
504
 
510
506
    """Weave with two diverged texts based on version 0.
511
507
    """
512
508
    def runTest(self):
513
 
        # FIXME make the weave, dont poke at it.
514
509
        k = Weave()
515
510
 
516
 
        k._names = ['0', '1', '2']
517
 
        k._name_map = {'0':0, '1':1, '2':2}
518
511
        k._parents = [frozenset(),
519
512
                frozenset([0]),
520
513
                frozenset([0]),
530
523
                ('}', 2),                
531
524
                ]
532
525
 
533
 
        k._sha1s = [sha_string('first line')
534
 
                  , sha_string('first linesecond line')
535
 
                  , sha_string('first linealternative second line')]
536
 
 
537
 
        self.assertEqual(k.get_lines(0),
 
526
        self.assertEqual(k.get(0),
538
527
                         ["first line"])
539
528
 
540
 
        self.assertEqual(k.get_lines(1),
 
529
        self.assertEqual(k.get(1),
541
530
                         ["first line",
542
531
                          "second line"])
543
532
 
544
 
        self.assertEqual(k.get_lines('2'),
 
533
        self.assertEqual(k.get(2),
545
534
                         ["first line",
546
535
                          "alternative second line"])
547
536
 
548
 
        self.assertEqual(list(k.get_ancestry(['2'])),
549
 
                         ['0', '2'])
 
537
        self.assertEqual(list(k.inclusions([2])),
 
538
                         [0, 2])
 
539
 
550
540
 
551
541
 
552
542
class ReplaceLine(TestBase):
556
546
        text0 = ['cheddar', 'stilton', 'gruyere']
557
547
        text1 = ['cheddar', 'blue vein', 'neufchatel', 'chevre']
558
548
        
559
 
        k.add_lines('text0', [], text0)
560
 
        k.add_lines('text1', ['text0'], text1)
 
549
        k.add('text0', [], text0)
 
550
        k.add('text1', [0], text1)
561
551
 
562
552
        self.log('k._weave=' + pformat(k._weave))
563
553
 
564
 
        self.assertEqual(k.get_lines(0), text0)
565
 
        self.assertEqual(k.get_lines(1), text1)
 
554
        self.assertEqual(k.get(0), text0)
 
555
        self.assertEqual(k.get(1), text1)
 
556
 
566
557
 
567
558
 
568
559
class Merge(TestBase):
576
567
                 ['header', '', 'line from 1', 'fixup line', 'line from 2'],
577
568
                 ]
578
569
 
579
 
        k.add_lines('text0', [], texts[0])
580
 
        k.add_lines('text1', ['text0'], texts[1])
581
 
        k.add_lines('text2', ['text0'], texts[2])
582
 
        k.add_lines('merge', ['text0', 'text1', 'text2'], texts[3])
 
570
        k.add('text0', [], texts[0])
 
571
        k.add('text1', [0], texts[1])
 
572
        k.add('text2', [0], texts[2])
 
573
        k.add('merge', [0, 1, 2], texts[3])
583
574
 
584
575
        for i, t in enumerate(texts):
585
 
            self.assertEqual(k.get_lines(i), t)
 
576
            self.assertEqual(k.get(i), t)
586
577
 
587
 
        self.assertEqual(k.annotate('merge'),
588
 
                         [('text0', 'header'),
589
 
                          ('text1', ''),
590
 
                          ('text1', 'line from 1'),
591
 
                          ('merge', 'fixup line'),
592
 
                          ('text2', 'line from 2'),
 
578
        self.assertEqual(k.annotate(3),
 
579
                         [(0, 'header'),
 
580
                          (1, ''),
 
581
                          (1, 'line from 1'),
 
582
                          (3, 'fixup line'),
 
583
                          (2, 'line from 2'),
593
584
                          ])
594
585
 
595
 
        self.assertEqual(list(k.get_ancestry(['merge'])),
596
 
                         ['text0', 'text1', 'text2', 'merge'])
 
586
        self.assertEqual(list(k.inclusions([3])),
 
587
                         [0, 1, 2, 3])
597
588
 
598
589
        self.log('k._weave=' + pformat(k._weave))
599
590
 
610
601
        return  # NOT RUN
611
602
        k = Weave()
612
603
 
613
 
        k.add_lines([], ['aaa', 'bbb'])
614
 
        k.add_lines([0], ['aaa', '111', 'bbb'])
615
 
        k.add_lines([1], ['aaa', '222', 'bbb'])
 
604
        k.add([], ['aaa', 'bbb'])
 
605
        k.add([0], ['aaa', '111', 'bbb'])
 
606
        k.add([1], ['aaa', '222', 'bbb'])
616
607
 
617
608
        merged = k.merge([1, 2])
618
609
 
621
612
                           [['bbb']]])
622
613
 
623
614
 
 
615
 
624
616
class NonConflict(TestBase):
625
617
    """Two descendants insert compatible changes.
626
618
 
629
621
        return  # NOT RUN
630
622
        k = Weave()
631
623
 
632
 
        k.add_lines([], ['aaa', 'bbb'])
633
 
        k.add_lines([0], ['111', 'aaa', 'ccc', 'bbb'])
634
 
        k.add_lines([1], ['aaa', 'ccc', 'bbb', '222'])
 
624
        k.add([], ['aaa', 'bbb'])
 
625
        k.add([0], ['111', 'aaa', 'ccc', 'bbb'])
 
626
        k.add([1], ['aaa', 'ccc', 'bbb', '222'])
 
627
 
 
628
    
 
629
    
 
630
 
 
631
 
 
632
class AutoMerge(TestBase):
 
633
    def runTest(self):
 
634
        k = Weave()
 
635
 
 
636
        texts = [['header', 'aaa', 'bbb'],
 
637
                 ['header', 'aaa', 'line from 1', 'bbb'],
 
638
                 ['header', 'aaa', 'bbb', 'line from 2', 'more from 2'],
 
639
                 ]
 
640
 
 
641
        k.add('text0', [], texts[0])
 
642
        k.add('text1', [0], texts[1])
 
643
        k.add('text2', [0], texts[2])
 
644
 
 
645
        self.log('k._weave=' + pformat(k._weave))
 
646
 
 
647
        m = list(k.mash_iter([0, 1, 2]))
 
648
 
 
649
        self.assertEqual(m,
 
650
                         ['header', 'aaa',
 
651
                          'line from 1',
 
652
                          'bbb',
 
653
                          'line from 2', 'more from 2'])
 
654
        
635
655
 
636
656
 
637
657
class Khayyam(TestBase):
638
658
    """Test changes to multi-line texts, and read/write"""
639
 
 
640
 
    def test_multi_line_merge(self):
 
659
    def runTest(self):
641
660
        rawtexts = [
642
661
            """A Book of Verses underneath the Bough,
643
662
            A Jug of Wine, a Loaf of Bread, -- and Thou
669
688
        parents = set()
670
689
        i = 0
671
690
        for t in texts:
672
 
            ver = k.add_lines('text%d' % i,
 
691
            ver = k.add('text%d' % i,
673
692
                        list(parents), t)
674
 
            parents.add('text%d' % i)
 
693
            parents.add(ver)
675
694
            i += 1
676
695
 
677
696
        self.log("k._weave=" + pformat(k._weave))
678
697
 
679
698
        for i, t in enumerate(texts):
680
 
            self.assertEqual(k.get_lines(i), t)
 
699
            self.assertEqual(k.get(i), t)
681
700
 
682
701
        self.check_read_write(k)
683
702
 
684
703
 
 
704
 
 
705
class MergeCases(TestBase):
 
706
    def doMerge(self, base, a, b, mp):
 
707
        from cStringIO import StringIO
 
708
        from textwrap import dedent
 
709
 
 
710
        def addcrlf(x):
 
711
            return x + '\n'
 
712
        
 
713
        w = Weave()
 
714
        w.add('text0', [], map(addcrlf, base))
 
715
        w.add('text1', [0], map(addcrlf, a))
 
716
        w.add('text2', [0], map(addcrlf, b))
 
717
 
 
718
        self.log('weave is:')
 
719
        tmpf = StringIO()
 
720
        write_weave(w, tmpf)
 
721
        self.log(tmpf.getvalue())
 
722
 
 
723
        self.log('merge plan:')
 
724
        p = list(w.plan_merge(1, 2))
 
725
        for state, line in p:
 
726
            if line:
 
727
                self.log('%12s | %s' % (state, line[:-1]))
 
728
 
 
729
        self.log('merge:')
 
730
        mt = StringIO()
 
731
        mt.writelines(w.weave_merge(p))
 
732
        mt.seek(0)
 
733
        self.log(mt.getvalue())
 
734
 
 
735
        mp = map(addcrlf, mp)
 
736
        self.assertEqual(mt.readlines(), mp)
 
737
        
 
738
        
 
739
    def testOneInsert(self):
 
740
        self.doMerge([],
 
741
                     ['aa'],
 
742
                     [],
 
743
                     ['aa'])
 
744
 
 
745
    def testSeparateInserts(self):
 
746
        self.doMerge(['aaa', 'bbb', 'ccc'],
 
747
                     ['aaa', 'xxx', 'bbb', 'ccc'],
 
748
                     ['aaa', 'bbb', 'yyy', 'ccc'],
 
749
                     ['aaa', 'xxx', 'bbb', 'yyy', 'ccc'])
 
750
 
 
751
    def testSameInsert(self):
 
752
        self.doMerge(['aaa', 'bbb', 'ccc'],
 
753
                     ['aaa', 'xxx', 'bbb', 'ccc'],
 
754
                     ['aaa', 'xxx', 'bbb', 'yyy', 'ccc'],
 
755
                     ['aaa', 'xxx', 'bbb', 'yyy', 'ccc'])
 
756
 
 
757
    def testOverlappedInsert(self):
 
758
        self.doMerge(['aaa', 'bbb'],
 
759
                     ['aaa', 'xxx', 'yyy', 'bbb'],
 
760
                     ['aaa', 'xxx', 'bbb'],
 
761
                     ['aaa', '<<<<<<<', 'xxx', 'yyy', '=======', 'xxx', 
 
762
                      '>>>>>>>', 'bbb'])
 
763
 
 
764
        # really it ought to reduce this to 
 
765
        # ['aaa', 'xxx', 'yyy', 'bbb']
 
766
 
 
767
 
 
768
    def testClashReplace(self):
 
769
        self.doMerge(['aaa'],
 
770
                     ['xxx'],
 
771
                     ['yyy', 'zzz'],
 
772
                     ['<<<<<<<', 'xxx', '=======', 'yyy', 'zzz', 
 
773
                      '>>>>>>>'])
 
774
 
 
775
    def testNonClashInsert(self):
 
776
        self.doMerge(['aaa'],
 
777
                     ['xxx', 'aaa'],
 
778
                     ['yyy', 'zzz'],
 
779
                     ['<<<<<<<', 'xxx', 'aaa', '=======', 'yyy', 'zzz', 
 
780
                      '>>>>>>>'])
 
781
 
 
782
        self.doMerge(['aaa'],
 
783
                     ['aaa'],
 
784
                     ['yyy', 'zzz'],
 
785
                     ['yyy', 'zzz'])
 
786
 
 
787
 
 
788
    def testDeleteAndModify(self):
 
789
        """Clashing delete and modification.
 
790
 
 
791
        If one side modifies a region and the other deletes it then
 
792
        there should be a conflict with one side blank.
 
793
        """
 
794
 
 
795
        #######################################
 
796
        # skippd, not working yet
 
797
        return
 
798
        
 
799
        self.doMerge(['aaa', 'bbb', 'ccc'],
 
800
                     ['aaa', 'ddd', 'ccc'],
 
801
                     ['aaa', 'ccc'],
 
802
                     ['<<<<<<<<', 'aaa', '=======', '>>>>>>>', 'ccc'])
 
803
 
 
804
 
685
805
class JoinWeavesTests(TestBase):
686
806
    def setUp(self):
687
807
        super(JoinWeavesTests, self).setUp()
688
808
        self.weave1 = Weave()
689
809
        self.lines1 = ['hello\n']
690
810
        self.lines3 = ['hello\n', 'cruel\n', 'world\n']
691
 
        self.weave1.add_lines('v1', [], self.lines1)
692
 
        self.weave1.add_lines('v2', ['v1'], ['hello\n', 'world\n'])
693
 
        self.weave1.add_lines('v3', ['v2'], self.lines3)
 
811
        self.weave1.add('v1', [], self.lines1)
 
812
        self.weave1.add('v2', [0], ['hello\n', 'world\n'])
 
813
        self.weave1.add('v3', [1], self.lines3)
694
814
        
695
815
    def test_join_empty(self):
696
816
        """Join two empty weaves."""
698
818
        w1 = Weave()
699
819
        w2 = Weave()
700
820
        w1.join(w2)
701
 
        eq(len(w1), 0)
 
821
        eq(w1.numversions(), 0)
702
822
        
703
823
    def test_join_empty_to_nonempty(self):
704
824
        """Join empty weave onto nonempty."""
708
828
    def test_join_unrelated(self):
709
829
        """Join two weaves with no history in common."""
710
830
        wb = Weave()
711
 
        wb.add_lines('b1', [], ['line from b\n'])
 
831
        wb.add('b1', [], ['line from b\n'])
712
832
        w1 = self.weave1
713
833
        w1.join(wb)
714
834
        eq = self.assertEqual
715
835
        eq(len(w1), 4)
716
 
        eq(sorted(w1.versions()),
 
836
        eq(sorted(list(w1.iter_names())),
717
837
           ['b1', 'v1', 'v2', 'v3'])
718
838
 
719
839
    def test_join_related(self):
720
840
        wa = self.weave1.copy()
721
841
        wb = self.weave1.copy()
722
 
        wa.add_lines('a1', ['v3'], ['hello\n', 'sweet\n', 'world\n'])
723
 
        wb.add_lines('b1', ['v3'], ['hello\n', 'pale blue\n', 'world\n'])
 
842
        wa.add('a1', ['v3'], ['hello\n', 'sweet\n', 'world\n'])
 
843
        wb.add('b1', ['v3'], ['hello\n', 'pale blue\n', 'world\n'])
724
844
        eq = self.assertEquals
725
845
        eq(len(wa), 4)
726
846
        eq(len(wb), 4)
730
850
           ['hello\n', 'pale blue\n', 'world\n'])
731
851
 
732
852
    def test_join_parent_disagreement(self):
733
 
        #join reconciles differening parents into a union.
 
853
        """Cannot join weaves with different parents for a version."""
734
854
        wa = Weave()
735
855
        wb = Weave()
736
 
        wa.add_lines('v1', [], ['hello\n'])
737
 
        wb.add_lines('v0', [], [])
738
 
        wb.add_lines('v1', ['v0'], ['hello\n'])
739
 
        wa.join(wb)
740
 
        self.assertEqual(['v0'], wa.get_parents('v1'))
 
856
        wa.add('v1', [], ['hello\n'])
 
857
        wb.add('v0', [], [])
 
858
        wb.add('v1', ['v0'], ['hello\n'])
 
859
        self.assertRaises(WeaveError,
 
860
                          wa.join, wb)
741
861
 
742
862
    def test_join_text_disagreement(self):
743
863
        """Cannot join weaves with different texts for a version."""
744
864
        wa = Weave()
745
865
        wb = Weave()
746
 
        wa.add_lines('v1', [], ['hello\n'])
747
 
        wb.add_lines('v1', [], ['not\n', 'hello\n'])
 
866
        wa.add('v1', [], ['hello\n'])
 
867
        wb.add('v1', [], ['not\n', 'hello\n'])
748
868
        self.assertRaises(WeaveError,
749
869
                          wa.join, wb)
750
870
 
754
874
        The source weave contains a different version at index 0."""
755
875
        wa = self.weave1.copy()
756
876
        wb = Weave()
757
 
        wb.add_lines('x1', [], ['line from x1\n'])
758
 
        wb.add_lines('v1', [], ['hello\n'])
759
 
        wb.add_lines('v2', ['v1'], ['hello\n', 'world\n'])
 
877
        wb.add('x1', [], ['line from x1\n'])
 
878
        wb.add('v1', [], ['hello\n'])
 
879
        wb.add('v2', ['v1'], ['hello\n', 'world\n'])
760
880
        wa.join(wb)
761
881
        eq = self.assertEquals
762
 
        eq(sorted(wa.versions()), ['v1', 'v2', 'v3', 'x1',])
 
882
        eq(sorted(wa.iter_names()), ['v1', 'v2', 'v3', 'x1',])
763
883
        eq(wa.get_text('x1'), 'line from x1\n')
764
 
 
765
 
    def test_written_detection(self):
766
 
        # Test detection of weave file corruption.
767
 
        #
768
 
        # Make sure that we can detect if a weave file has
769
 
        # been corrupted. This doesn't test all forms of corruption,
770
 
        # but it at least helps verify the data you get, is what you want.
771
 
        from cStringIO import StringIO
772
 
 
773
 
        w = Weave()
774
 
        w.add_lines('v1', [], ['hello\n'])
775
 
        w.add_lines('v2', ['v1'], ['hello\n', 'there\n'])
776
 
 
777
 
        tmpf = StringIO()
778
 
        write_weave(w, tmpf)
779
 
 
780
 
        # Because we are corrupting, we need to make sure we have the exact text
781
 
        self.assertEquals('# bzr weave file v5\n'
782
 
                          'i\n1 f572d396fae9206628714fb2ce00f72e94f2258f\nn v1\n\n'
783
 
                          'i 0\n1 90f265c6e75f1c8f9ab76dcf85528352c5f215ef\nn v2\n\n'
784
 
                          'w\n{ 0\n. hello\n}\n{ 1\n. there\n}\nW\n',
785
 
                          tmpf.getvalue())
786
 
 
787
 
        # Change a single letter
788
 
        tmpf = StringIO('# bzr weave file v5\n'
789
 
                        'i\n1 f572d396fae9206628714fb2ce00f72e94f2258f\nn v1\n\n'
790
 
                        'i 0\n1 90f265c6e75f1c8f9ab76dcf85528352c5f215ef\nn v2\n\n'
791
 
                        'w\n{ 0\n. hello\n}\n{ 1\n. There\n}\nW\n')
792
 
 
793
 
        w = read_weave(tmpf)
794
 
 
795
 
        self.assertEqual('hello\n', w.get_text('v1'))
796
 
        self.assertRaises(errors.WeaveInvalidChecksum, w.get_text, 'v2')
797
 
        self.assertRaises(errors.WeaveInvalidChecksum, w.get_lines, 'v2')
798
 
        self.assertRaises(errors.WeaveInvalidChecksum, w.check)
799
 
 
800
 
        # Change the sha checksum
801
 
        tmpf = StringIO('# bzr weave file v5\n'
802
 
                        'i\n1 f572d396fae9206628714fb2ce00f72e94f2258f\nn v1\n\n'
803
 
                        'i 0\n1 f0f265c6e75f1c8f9ab76dcf85528352c5f215ef\nn v2\n\n'
804
 
                        'w\n{ 0\n. hello\n}\n{ 1\n. there\n}\nW\n')
805
 
 
806
 
        w = read_weave(tmpf)
807
 
 
808
 
        self.assertEqual('hello\n', w.get_text('v1'))
809
 
        self.assertRaises(errors.WeaveInvalidChecksum, w.get_text, 'v2')
810
 
        self.assertRaises(errors.WeaveInvalidChecksum, w.get_lines, 'v2')
811
 
        self.assertRaises(errors.WeaveInvalidChecksum, w.check)
812
 
 
813
 
 
814
 
class InstrumentedWeave(Weave):
815
 
    """Keep track of how many times functions are called."""
816
 
    
817
 
    def __init__(self, weave_name=None):
818
 
        self._extract_count = 0
819
 
        Weave.__init__(self, weave_name=weave_name)
820
 
 
821
 
    def _extract(self, versions):
822
 
        self._extract_count += 1
823
 
        return Weave._extract(self, versions)
824
 
 
825
 
 
826
 
class JoinOptimization(TestCase):
827
 
    """Test that Weave.join() doesn't extract all texts, only what must be done."""
828
 
 
829
 
    def test_join(self):
830
 
        w1 = InstrumentedWeave()
831
 
        w2 = InstrumentedWeave()
832
 
 
833
 
        txt0 = ['a\n']
834
 
        txt1 = ['a\n', 'b\n']
835
 
        txt2 = ['a\n', 'c\n']
836
 
        txt3 = ['a\n', 'b\n', 'c\n']
837
 
 
838
 
        w1.add_lines('txt0', [], txt0) # extract 1a
839
 
        w2.add_lines('txt0', [], txt0) # extract 1b
840
 
        w1.add_lines('txt1', ['txt0'], txt1)# extract 2a
841
 
        w2.add_lines('txt2', ['txt0'], txt2)# extract 2b
842
 
        w1.join(w2) # extract 3a to add txt2 
843
 
        w2.join(w1) # extract 3b to add txt1 
844
 
 
845
 
        w1.add_lines('txt3', ['txt1', 'txt2'], txt3) # extract 4a 
846
 
        w2.add_lines('txt3', ['txt2', 'txt1'], txt3) # extract 4b
847
 
        # These secretly have inverted parents
848
 
 
849
 
        # This should not have to do any extractions
850
 
        w1.join(w2) # NO extract, texts already present with same parents
851
 
        w2.join(w1) # NO extract, texts already present with same parents
852
 
 
853
 
        self.assertEqual(4, w1._extract_count)
854
 
        self.assertEqual(4, w2._extract_count)
855
 
 
856
 
    def test_double_parent(self):
857
 
        # It should not be considered illegal to add
858
 
        # a revision with the same parent twice
859
 
        w1 = InstrumentedWeave()
860
 
        w2 = InstrumentedWeave()
861
 
 
862
 
        txt0 = ['a\n']
863
 
        txt1 = ['a\n', 'b\n']
864
 
        txt2 = ['a\n', 'c\n']
865
 
        txt3 = ['a\n', 'b\n', 'c\n']
866
 
 
867
 
        w1.add_lines('txt0', [], txt0)
868
 
        w2.add_lines('txt0', [], txt0)
869
 
        w1.add_lines('txt1', ['txt0'], txt1)
870
 
        w2.add_lines('txt1', ['txt0', 'txt0'], txt1)
871
 
        # Same text, effectively the same, because the
872
 
        # parent is only repeated
873
 
        w1.join(w2) # extract 3a to add txt2 
874
 
        w2.join(w1) # extract 3b to add txt1 
875
 
 
876
 
 
877
 
class TestNeedsReweave(TestCase):
878
 
    """Internal corner cases for when reweave is needed."""
879
 
 
880
 
    def test_compatible_parents(self):
881
 
        w1 = Weave('a')
882
 
        my_parents = set([1, 2, 3])
883
 
        # subsets are ok
884
 
        self.assertTrue(w1._compatible_parents(my_parents, set([3])))
885
 
        # same sets
886
 
        self.assertTrue(w1._compatible_parents(my_parents, set(my_parents)))
887
 
        # same empty corner case
888
 
        self.assertTrue(w1._compatible_parents(set(), set()))
889
 
        # other cannot contain stuff my_parents does not
890
 
        self.assertFalse(w1._compatible_parents(set(), set([1])))
891
 
        self.assertFalse(w1._compatible_parents(my_parents, set([1, 2, 3, 4])))
892
 
        self.assertFalse(w1._compatible_parents(my_parents, set([4])))