~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_conflicts.py

  • Committer: John Arbash Meinel
  • Date: 2011-07-18 14:22:20 UTC
  • mto: This revision was merged to the branch mainline in revision 6033.
  • Revision ID: john@arbash-meinel.com-20110718142220-nwylw659oip1ene9
Start at least testing the package_branch regex.
And start testing the is-up-to-date logic.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005-2010 Canonical Ltd
 
1
# Copyright (C) 2005-2011 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
18
18
import os
19
19
 
20
20
from bzrlib import (
21
 
    branchbuilder,
22
21
    bzrdir,
23
22
    conflicts,
24
23
    errors,
25
24
    option,
 
25
    osutils,
26
26
    tests,
27
 
    workingtree,
28
 
    )
29
 
from bzrlib.tests import script
30
 
 
31
 
 
32
 
def load_tests(standard_tests, module, loader):
33
 
    result = loader.suiteClass()
34
 
 
35
 
    sp_tests, remaining_tests = tests.split_suite_by_condition(
36
 
        standard_tests, tests.condition_isinstance((
37
 
                TestParametrizedResolveConflicts,
38
 
                )))
39
 
    # Each test class defines its own scenarios. This is needed for
40
 
    # TestResolvePathConflictBefore531967 that verifies that the same tests as
41
 
    # TestResolvePathConflict still pass.
42
 
    for test in tests.iter_suite_tests(sp_tests):
43
 
        tests.apply_scenarios(test, test.scenarios(), result)
44
 
 
45
 
    # No parametrization for the remaining tests
46
 
    result.addTests(remaining_tests)
47
 
 
48
 
    return result
 
27
    )
 
28
from bzrlib.tests import (
 
29
    script,
 
30
    scenarios,
 
31
    )
 
32
 
 
33
 
 
34
load_tests = scenarios.load_tests_apply_scenarios
49
35
 
50
36
 
51
37
# TODO: Test commit with some added, and added-but-missing files
76
62
])
77
63
 
78
64
 
 
65
def vary_by_conflicts():
 
66
    for conflict in example_conflicts:
 
67
        yield (conflict.__class__.__name__, {"conflict": conflict})
 
68
 
 
69
 
79
70
class TestConflicts(tests.TestCaseWithTransport):
80
71
 
81
 
    def test_conflicts(self):
82
 
        """Conflicts are detected properly"""
83
 
        # Use BzrDirFormat6 so we can fake conflicts
84
 
        tree = self.make_branch_and_tree('.', format=bzrdir.BzrDirFormat6())
85
 
        self.build_tree_contents([('hello', 'hello world4'),
86
 
                                  ('hello.THIS', 'hello world2'),
87
 
                                  ('hello.BASE', 'hello world1'),
88
 
                                  ('hello.OTHER', 'hello world3'),
89
 
                                  ('hello.sploo.BASE', 'yellowworld'),
90
 
                                  ('hello.sploo.OTHER', 'yellowworld2'),
91
 
                                  ])
92
 
        tree.lock_read()
93
 
        self.assertLength(6, list(tree.list_files()))
94
 
        tree.unlock()
95
 
        tree_conflicts = tree.conflicts()
96
 
        self.assertLength(2, tree_conflicts)
97
 
        self.assertTrue('hello' in tree_conflicts[0].path)
98
 
        self.assertTrue('hello.sploo' in tree_conflicts[1].path)
99
 
        conflicts.restore('hello')
100
 
        conflicts.restore('hello.sploo')
101
 
        self.assertLength(0, tree.conflicts())
102
 
        self.assertFileEqual('hello world2', 'hello')
103
 
        self.assertFalse(os.path.lexists('hello.sploo'))
104
 
        self.assertRaises(errors.NotConflicted, conflicts.restore, 'hello')
105
 
        self.assertRaises(errors.NotConflicted,
106
 
                          conflicts.restore, 'hello.sploo')
107
 
 
108
72
    def test_resolve_conflict_dir(self):
109
73
        tree = self.make_branch_and_tree('.')
110
74
        self.build_tree_contents([('hello', 'hello world4'),
161
125
        self.assertEqual(conflicts.ConflictList([]), tree.conflicts())
162
126
 
163
127
 
164
 
class TestConflictStanzas(tests.TestCase):
 
128
class TestPerConflict(tests.TestCase):
 
129
 
 
130
    scenarios = scenarios.multiply_scenarios(vary_by_conflicts())
 
131
 
 
132
    def test_stringification(self):
 
133
        text = unicode(self.conflict)
 
134
        self.assertContainsString(text, self.conflict.path)
 
135
        self.assertContainsString(text.lower(), "conflict")
 
136
        self.assertContainsString(repr(self.conflict),
 
137
            self.conflict.__class__.__name__)
165
138
 
166
139
    def test_stanza_roundtrip(self):
167
 
        # write and read our example stanza.
168
 
        stanza_iter = example_conflicts.to_stanzas()
169
 
        processed = conflicts.ConflictList.from_stanzas(stanza_iter)
170
 
        for o, p in zip(processed, example_conflicts):
171
 
            self.assertEqual(o, p)
172
 
 
173
 
            self.assertIsInstance(o.path, unicode)
174
 
 
175
 
            if o.file_id is not None:
176
 
                self.assertIsInstance(o.file_id, str)
177
 
 
178
 
            conflict_path = getattr(o, 'conflict_path', None)
179
 
            if conflict_path is not None:
180
 
                self.assertIsInstance(conflict_path, unicode)
181
 
 
182
 
            conflict_file_id = getattr(o, 'conflict_file_id', None)
183
 
            if conflict_file_id is not None:
184
 
                self.assertIsInstance(conflict_file_id, str)
 
140
        p = self.conflict
 
141
        o = conflicts.Conflict.factory(**p.as_stanza().as_dict())
 
142
        self.assertEqual(o, p)
 
143
 
 
144
        self.assertIsInstance(o.path, unicode)
 
145
 
 
146
        if o.file_id is not None:
 
147
            self.assertIsInstance(o.file_id, str)
 
148
 
 
149
        conflict_path = getattr(o, 'conflict_path', None)
 
150
        if conflict_path is not None:
 
151
            self.assertIsInstance(conflict_path, unicode)
 
152
 
 
153
        conflict_file_id = getattr(o, 'conflict_file_id', None)
 
154
        if conflict_file_id is not None:
 
155
            self.assertIsInstance(conflict_file_id, str)
185
156
 
186
157
    def test_stanzification(self):
187
 
        for stanza in example_conflicts.to_stanzas():
188
 
            if 'file_id' in stanza:
189
 
                # In Stanza form, the file_id has to be unicode.
190
 
                self.assertStartsWith(stanza['file_id'], u'\xeed')
191
 
            self.assertStartsWith(stanza['path'], u'p\xe5th')
192
 
            if 'conflict_path' in stanza:
193
 
                self.assertStartsWith(stanza['conflict_path'], u'p\xe5th')
194
 
            if 'conflict_file_id' in stanza:
195
 
                self.assertStartsWith(stanza['conflict_file_id'], u'\xeed')
 
158
        stanza = self.conflict.as_stanza()
 
159
        if 'file_id' in stanza:
 
160
            # In Stanza form, the file_id has to be unicode.
 
161
            self.assertStartsWith(stanza['file_id'], u'\xeed')
 
162
        self.assertStartsWith(stanza['path'], u'p\xe5th')
 
163
        if 'conflict_path' in stanza:
 
164
            self.assertStartsWith(stanza['conflict_path'], u'p\xe5th')
 
165
        if 'conflict_file_id' in stanza:
 
166
            self.assertStartsWith(stanza['conflict_file_id'], u'\xeed')
 
167
 
 
168
 
 
169
class TestConflictList(tests.TestCase):
 
170
 
 
171
    def test_stanzas_roundtrip(self):
 
172
        stanzas_iter = example_conflicts.to_stanzas()
 
173
        processed = conflicts.ConflictList.from_stanzas(stanzas_iter)
 
174
        self.assertEqual(example_conflicts, processed)
 
175
 
 
176
    def test_stringification(self):
 
177
        for text, o in zip(example_conflicts.to_strings(), example_conflicts):
 
178
            self.assertEqual(text, unicode(o))
196
179
 
197
180
 
198
181
# FIXME: The shell-like tests should be converted to real whitebox tests... or
210
193
        self.run_script(self.preamble)
211
194
 
212
195
 
213
 
class TestResolveTextConflicts(TestResolveConflicts):
214
 
    # TBC
215
 
    pass
216
 
 
217
 
 
218
196
def mirror_scenarios(base_scenarios):
219
197
    """Return a list of mirrored scenarios.
220
198
 
293
271
    _this = None
294
272
    _other = None
295
273
 
296
 
    @staticmethod
297
 
    def scenarios():
298
 
        """Return the scenario list for the conflict type defined by the class.
299
 
 
300
 
        Each scenario is of the form:
301
 
        (common, (left_name, left_dict), (right_name, right_dict))
302
 
 
303
 
        * common is a dict
304
 
 
305
 
        * left_name and right_name are the scenario names that will be combined
306
 
 
307
 
        * left_dict and right_dict are the attributes specific to each half of
308
 
          the scenario. They should include at least 'actions' and 'check' and
309
 
          will be available as '_this' and '_other' test instance attributes.
310
 
 
311
 
        Daughters classes are free to add their specific attributes as they see
312
 
        fit in any of the three dicts.
313
 
 
314
 
        This is a class method so that load_tests can find it.
315
 
 
316
 
        '_base_actions' in the common dict, 'actions' and 'check' in the left
317
 
        and right dicts use names that map to methods in the test classes. Some
318
 
        prefixes are added to these names to get the correspong methods (see
319
 
        _get_actions() and _get_check()). The motivation here is to avoid
320
 
        collisions in the class namespace.
321
 
        """
322
 
        # Only concrete classes return actual scenarios
323
 
        return []
 
274
    scenarios = []
 
275
    """The scenario list for the conflict type defined by the class.
 
276
 
 
277
    Each scenario is of the form:
 
278
    (common, (left_name, left_dict), (right_name, right_dict))
 
279
 
 
280
    * common is a dict
 
281
 
 
282
    * left_name and right_name are the scenario names that will be combined
 
283
 
 
284
    * left_dict and right_dict are the attributes specific to each half of
 
285
      the scenario. They should include at least 'actions' and 'check' and
 
286
      will be available as '_this' and '_other' test instance attributes.
 
287
 
 
288
    Daughters classes are free to add their specific attributes as they see
 
289
    fit in any of the three dicts.
 
290
 
 
291
    This is a class method so that load_tests can find it.
 
292
 
 
293
    '_base_actions' in the common dict, 'actions' and 'check' in the left
 
294
    and right dicts use names that map to methods in the test classes. Some
 
295
    prefixes are added to these names to get the correspong methods (see
 
296
    _get_actions() and _get_check()). The motivation here is to avoid
 
297
    collisions in the class namespace.
 
298
    """
324
299
 
325
300
    def setUp(self):
326
301
        super(TestParametrizedResolveConflicts, self).setUp()
388
363
        check_other()
389
364
 
390
365
 
 
366
class TestResolveTextConflicts(TestParametrizedResolveConflicts):
 
367
 
 
368
    _conflict_type = conflicts.TextConflict
 
369
 
 
370
    # Set by the scenarios
 
371
    # path and file-id for the file involved in the conflict
 
372
    _path = None
 
373
    _file_id = None
 
374
 
 
375
    scenarios = mirror_scenarios(
 
376
        [
 
377
            # File modified on both sides
 
378
            (dict(_base_actions='create_file',
 
379
                  _path='file', _file_id='file-id'),
 
380
             ('filed_modified_A',
 
381
              dict(actions='modify_file_A', check='file_has_content_A')),
 
382
             ('file_modified_B',
 
383
              dict(actions='modify_file_B', check='file_has_content_B')),),
 
384
            # File modified on both sides in dir
 
385
            (dict(_base_actions='create_file_in_dir',
 
386
                  _path='dir/file', _file_id='file-id'),
 
387
             ('filed_modified_A_in_dir',
 
388
              dict(actions='modify_file_A',
 
389
                   check='file_in_dir_has_content_A')),
 
390
             ('file_modified_B',
 
391
              dict(actions='modify_file_B',
 
392
                   check='file_in_dir_has_content_B')),),
 
393
            ])
 
394
 
 
395
    def do_create_file(self, path='file'):
 
396
        return [('add', (path, 'file-id', 'file', 'trunk content\n'))]
 
397
 
 
398
    def do_modify_file_A(self):
 
399
        return [('modify', ('file-id', 'trunk content\nfeature A\n'))]
 
400
 
 
401
    def do_modify_file_B(self):
 
402
        return [('modify', ('file-id', 'trunk content\nfeature B\n'))]
 
403
 
 
404
    def check_file_has_content_A(self, path='file'):
 
405
        self.assertFileEqual('trunk content\nfeature A\n',
 
406
                             osutils.pathjoin('branch', path))
 
407
 
 
408
    def check_file_has_content_B(self, path='file'):
 
409
        self.assertFileEqual('trunk content\nfeature B\n',
 
410
                             osutils.pathjoin('branch', path))
 
411
 
 
412
    def do_create_file_in_dir(self):
 
413
        return [('add', ('dir', 'dir-id', 'directory', '')),
 
414
            ] + self.do_create_file('dir/file')
 
415
 
 
416
    def check_file_in_dir_has_content_A(self):
 
417
        self.check_file_has_content_A('dir/file')
 
418
 
 
419
    def check_file_in_dir_has_content_B(self):
 
420
        self.check_file_has_content_B('dir/file')
 
421
 
 
422
    def _get_resolve_path_arg(self, wt, action):
 
423
        return self._path
 
424
 
 
425
    def assertTextConflict(self, wt, c):
 
426
        self.assertEqual(self._file_id, c.file_id)
 
427
        self.assertEqual(self._path, c.path)
 
428
    _assert_conflict = assertTextConflict
 
429
 
 
430
 
391
431
class TestResolveContentsConflict(TestParametrizedResolveConflicts):
392
432
 
393
 
    _conflict_type = conflicts.ContentsConflict,
 
433
    _conflict_type = conflicts.ContentsConflict
394
434
 
395
 
    # Set by load_tests from scenarios()
 
435
    # Set by the scenarios
396
436
    # path and file-id for the file involved in the conflict
397
437
    _path = None
398
438
    _file_id = None
399
439
 
400
 
    @staticmethod
401
 
    def scenarios():
402
 
        base_scenarios = [
 
440
    scenarios = mirror_scenarios(
 
441
        [
403
442
            # File modified/deleted
404
443
            (dict(_base_actions='create_file',
405
444
                  _path='file', _file_id='file-id'),
407
446
              dict(actions='modify_file', check='file_has_more_content')),
408
447
             ('file_deleted',
409
448
              dict(actions='delete_file', check='file_doesnt_exist')),),
410
 
            ]
411
 
        return mirror_scenarios(base_scenarios)
 
449
            # File renamed-modified/deleted
 
450
            (dict(_base_actions='create_file',
 
451
                  _path='new-file', _file_id='file-id'),
 
452
             ('file_renamed_and_modified',
 
453
              dict(actions='modify_and_rename_file',
 
454
                   check='file_renamed_and_more_content')),
 
455
             ('file_deleted',
 
456
              dict(actions='delete_file', check='file_doesnt_exist')),),
 
457
            # File modified/deleted in dir
 
458
            (dict(_base_actions='create_file_in_dir',
 
459
                  _path='dir/file', _file_id='file-id'),
 
460
             ('file_modified_in_dir',
 
461
              dict(actions='modify_file_in_dir',
 
462
                   check='file_in_dir_has_more_content')),
 
463
             ('file_deleted_in_dir',
 
464
              dict(actions='delete_file',
 
465
                   check='file_in_dir_doesnt_exist')),),
 
466
            ])
412
467
 
413
468
    def do_create_file(self):
414
469
        return [('add', ('file', 'file-id', 'file', 'trunk content\n'))]
416
471
    def do_modify_file(self):
417
472
        return [('modify', ('file-id', 'trunk content\nmore content\n'))]
418
473
 
 
474
    def do_modify_and_rename_file(self):
 
475
        return [('modify', ('file-id', 'trunk content\nmore content\n')),
 
476
                ('rename', ('file', 'new-file'))]
 
477
 
419
478
    def check_file_has_more_content(self):
420
479
        self.assertFileEqual('trunk content\nmore content\n', 'branch/file')
421
480
 
 
481
    def check_file_renamed_and_more_content(self):
 
482
        self.assertFileEqual('trunk content\nmore content\n', 'branch/new-file')
 
483
 
422
484
    def do_delete_file(self):
423
485
        return [('unversion', 'file-id')]
424
486
 
425
487
    def check_file_doesnt_exist(self):
426
 
        self.failIfExists('branch/file')
 
488
        self.assertPathDoesNotExist('branch/file')
 
489
 
 
490
    def do_create_file_in_dir(self):
 
491
        return [('add', ('dir', 'dir-id', 'directory', '')),
 
492
                ('add', ('dir/file', 'file-id', 'file', 'trunk content\n'))]
 
493
 
 
494
    def do_modify_file_in_dir(self):
 
495
        return [('modify', ('file-id', 'trunk content\nmore content\n'))]
 
496
 
 
497
    def check_file_in_dir_has_more_content(self):
 
498
        self.assertFileEqual('trunk content\nmore content\n', 'branch/dir/file')
 
499
 
 
500
    def check_file_in_dir_doesnt_exist(self):
 
501
        self.assertPathDoesNotExist('branch/dir/file')
427
502
 
428
503
    def _get_resolve_path_arg(self, wt, action):
429
504
        return self._path
436
511
 
437
512
class TestResolvePathConflict(TestParametrizedResolveConflicts):
438
513
 
439
 
    _conflict_type = conflicts.PathConflict,
 
514
    _conflict_type = conflicts.PathConflict
440
515
 
441
516
    def do_nothing(self):
442
517
        return []
443
518
 
444
 
    @staticmethod
445
 
    def scenarios():
446
 
        # Each side dict additionally defines:
447
 
        # - path path involved (can be '<deleted>')
448
 
        # - file-id involved
449
 
        base_scenarios = [
 
519
    # Each side dict additionally defines:
 
520
    # - path path involved (can be '<deleted>')
 
521
    # - file-id involved
 
522
    scenarios = mirror_scenarios(
 
523
        [
450
524
            # File renamed/deleted
451
525
            (dict(_base_actions='create_file'),
452
526
             ('file_renamed',
457
531
                   # PathConflicts deletion handling requires a special
458
532
                   # hard-coded value
459
533
                   path='<deleted>', file_id='file-id')),),
 
534
            # File renamed/deleted in dir
 
535
            (dict(_base_actions='create_file_in_dir'),
 
536
             ('file_renamed_in_dir',
 
537
              dict(actions='rename_file_in_dir', check='file_in_dir_renamed',
 
538
                   path='dir/new-file', file_id='file-id')),
 
539
             ('file_deleted',
 
540
              dict(actions='delete_file', check='file_in_dir_doesnt_exist',
 
541
                   # PathConflicts deletion handling requires a special
 
542
                   # hard-coded value
 
543
                   path='<deleted>', file_id='file-id')),),
460
544
            # File renamed/renamed differently
461
545
            (dict(_base_actions='create_file'),
462
546
             ('file_renamed',
483
567
             ('dir_renamed2',
484
568
              dict(actions='rename_dir2', check='dir_renamed2',
485
569
                   path='new-dir2', file_id='dir-id')),),
486
 
        ]
487
 
        return mirror_scenarios(base_scenarios)
 
570
            ])
488
571
 
489
572
    def do_create_file(self):
490
573
        return [('add', ('file', 'file-id', 'file', 'trunk content\n'))]
496
579
        return [('rename', ('file', 'new-file'))]
497
580
 
498
581
    def check_file_renamed(self):
499
 
        self.failIfExists('branch/file')
500
 
        self.failUnlessExists('branch/new-file')
 
582
        self.assertPathDoesNotExist('branch/file')
 
583
        self.assertPathExists('branch/new-file')
501
584
 
502
585
    def do_rename_file2(self):
503
586
        return [('rename', ('file', 'new-file2'))]
504
587
 
505
588
    def check_file_renamed2(self):
506
 
        self.failIfExists('branch/file')
507
 
        self.failUnlessExists('branch/new-file2')
 
589
        self.assertPathDoesNotExist('branch/file')
 
590
        self.assertPathExists('branch/new-file2')
508
591
 
509
592
    def do_rename_dir(self):
510
593
        return [('rename', ('dir', 'new-dir'))]
511
594
 
512
595
    def check_dir_renamed(self):
513
 
        self.failIfExists('branch/dir')
514
 
        self.failUnlessExists('branch/new-dir')
 
596
        self.assertPathDoesNotExist('branch/dir')
 
597
        self.assertPathExists('branch/new-dir')
515
598
 
516
599
    def do_rename_dir2(self):
517
600
        return [('rename', ('dir', 'new-dir2'))]
518
601
 
519
602
    def check_dir_renamed2(self):
520
 
        self.failIfExists('branch/dir')
521
 
        self.failUnlessExists('branch/new-dir2')
 
603
        self.assertPathDoesNotExist('branch/dir')
 
604
        self.assertPathExists('branch/new-dir2')
522
605
 
523
606
    def do_delete_file(self):
524
607
        return [('unversion', 'file-id')]
525
608
 
526
609
    def check_file_doesnt_exist(self):
527
 
        self.failIfExists('branch/file')
 
610
        self.assertPathDoesNotExist('branch/file')
528
611
 
529
612
    def do_delete_dir(self):
530
613
        return [('unversion', 'dir-id')]
531
614
 
532
615
    def check_dir_doesnt_exist(self):
533
 
        self.failIfExists('branch/dir')
 
616
        self.assertPathDoesNotExist('branch/dir')
 
617
 
 
618
    def do_create_file_in_dir(self):
 
619
        return [('add', ('dir', 'dir-id', 'directory', '')),
 
620
                ('add', ('dir/file', 'file-id', 'file', 'trunk content\n'))]
 
621
 
 
622
    def do_rename_file_in_dir(self):
 
623
        return [('rename', ('dir/file', 'dir/new-file'))]
 
624
 
 
625
    def check_file_in_dir_renamed(self):
 
626
        self.assertPathDoesNotExist('branch/dir/file')
 
627
        self.assertPathExists('branch/dir/new-file')
 
628
 
 
629
    def check_file_in_dir_doesnt_exist(self):
 
630
        self.assertPathDoesNotExist('branch/dir/file')
534
631
 
535
632
    def _get_resolve_path_arg(self, wt, action):
536
633
        tpath = self._this['path']
568
665
 
569
666
class TestResolveDuplicateEntry(TestParametrizedResolveConflicts):
570
667
 
571
 
    _conflict_type = conflicts.DuplicateEntry,
 
668
    _conflict_type = conflicts.DuplicateEntry
572
669
 
573
 
    @staticmethod
574
 
    def scenarios():
575
 
        # Each side dict additionally defines:
576
 
        # - path involved
577
 
        # - file-id involved
578
 
        base_scenarios = [
 
670
    scenarios = mirror_scenarios(
 
671
        [
579
672
            # File created with different file-ids
580
673
            (dict(_base_actions='nothing'),
581
674
             ('filea_created',
584
677
             ('fileb_created',
585
678
              dict(actions='create_file_b', check='file_content_b',
586
679
                   path='file', file_id='file-b-id')),),
587
 
            ]
588
 
        return mirror_scenarios(base_scenarios)
 
680
            ])
589
681
 
590
682
    def do_nothing(self):
591
683
        return []
625
717
    # tests MissingParent resolution :-/
626
718
    preamble = """
627
719
$ bzr init trunk
 
720
...
628
721
$ cd trunk
629
722
$ mkdir dir
630
 
$ bzr add dir
631
 
$ bzr commit -m 'Create trunk'
632
 
 
 
723
$ bzr add -q dir
 
724
$ bzr commit -m 'Create trunk' -q
633
725
$ echo 'trunk content' >dir/file
634
 
$ bzr add dir/file
635
 
$ bzr commit -m 'Add dir/file in trunk'
636
 
 
637
 
$ bzr branch . -r 1 ../branch
 
726
$ bzr add -q dir/file
 
727
$ bzr commit -q -m 'Add dir/file in trunk'
 
728
$ bzr branch -q . -r 1 ../branch
638
729
$ cd ../branch
639
 
$ bzr rm dir
640
 
$ bzr commit -m 'Remove dir in branch'
641
 
 
 
730
$ bzr rm dir -q
 
731
$ bzr commit -q -m 'Remove dir in branch'
642
732
$ bzr merge ../trunk
643
733
2>+N  dir/
644
734
2>+N  dir/file
649
739
 
650
740
    def test_take_this(self):
651
741
        self.run_script("""
652
 
$ bzr rm dir  --force
 
742
$ bzr rm -q dir  --force
653
743
$ bzr resolve dir
654
 
$ bzr commit --strict -m 'No more conflicts nor unknown files'
 
744
2>2 conflict(s) resolved, 0 remaining
 
745
$ bzr commit -q --strict -m 'No more conflicts nor unknown files'
655
746
""")
656
747
 
657
748
    def test_take_other(self):
658
749
        self.run_script("""
659
750
$ bzr resolve dir
660
 
$ bzr commit --strict -m 'No more conflicts nor unknown files'
 
751
2>2 conflict(s) resolved, 0 remaining
 
752
$ bzr commit -q --strict -m 'No more conflicts nor unknown files'
661
753
""")
662
754
 
663
755
 
665
757
 
666
758
    preamble = """
667
759
$ bzr init trunk
 
760
...
668
761
$ cd trunk
669
762
$ mkdir dir
670
763
$ echo 'trunk content' >dir/file
671
 
$ bzr add
672
 
$ bzr commit -m 'Create trunk'
673
 
 
 
764
$ bzr add -q
 
765
$ bzr commit -m 'Create trunk' -q
674
766
$ echo 'trunk content' >dir/file2
675
 
$ bzr add dir/file2
676
 
$ bzr commit -m 'Add dir/file2 in branch'
677
 
 
678
 
$ bzr branch . -r 1 ../branch
 
767
$ bzr add -q dir/file2
 
768
$ bzr commit -q -m 'Add dir/file2 in branch'
 
769
$ bzr branch -q . -r 1 ../branch
679
770
$ cd ../branch
680
 
$ bzr rm dir/file --force
681
 
$ bzr rm dir
682
 
$ bzr commit -m 'Remove dir/file'
683
 
 
 
771
$ bzr rm -q dir/file --force
 
772
$ bzr rm -q dir
 
773
$ bzr commit -q -m 'Remove dir/file'
684
774
$ bzr merge ../trunk
685
775
2>+N  dir/
686
776
2>+N  dir/file2
692
782
    def test_keep_them_all(self):
693
783
        self.run_script("""
694
784
$ bzr resolve dir
695
 
$ bzr commit --strict -m 'No more conflicts nor unknown files'
 
785
2>2 conflict(s) resolved, 0 remaining
 
786
$ bzr commit -q --strict -m 'No more conflicts nor unknown files'
696
787
""")
697
788
 
698
789
    def test_adopt_child(self):
699
790
        self.run_script("""
700
 
$ bzr mv dir/file2 file2
701
 
$ bzr rm dir --force
 
791
$ bzr mv -q dir/file2 file2
 
792
$ bzr rm -q dir --force
702
793
$ bzr resolve dir
703
 
$ bzr commit --strict -m 'No more conflicts nor unknown files'
 
794
2>2 conflict(s) resolved, 0 remaining
 
795
$ bzr commit -q --strict -m 'No more conflicts nor unknown files'
704
796
""")
705
797
 
706
798
    def test_kill_them_all(self):
707
799
        self.run_script("""
708
 
$ bzr rm dir --force
 
800
$ bzr rm -q dir --force
709
801
$ bzr resolve dir
710
 
$ bzr commit --strict -m 'No more conflicts nor unknown files'
 
802
2>2 conflict(s) resolved, 0 remaining
 
803
$ bzr commit -q --strict -m 'No more conflicts nor unknown files'
711
804
""")
712
805
 
713
806
    def test_resolve_taking_this(self):
714
807
        self.run_script("""
715
808
$ bzr resolve --take-this dir
716
 
$ bzr commit --strict -m 'No more conflicts nor unknown files'
 
809
2>...
 
810
$ bzr commit -q --strict -m 'No more conflicts nor unknown files'
717
811
""")
718
812
 
719
813
    def test_resolve_taking_other(self):
720
814
        self.run_script("""
721
815
$ bzr resolve --take-other dir
722
 
$ bzr commit --strict -m 'No more conflicts nor unknown files'
 
816
2>...
 
817
$ bzr commit -q --strict -m 'No more conflicts nor unknown files'
723
818
""")
724
819
 
725
820
 
727
822
 
728
823
    preamble = """
729
824
$ bzr init trunk
 
825
...
730
826
$ cd trunk
731
827
$ mkdir dir
732
828
$ echo 'trunk content' >dir/file
733
 
$ bzr add
734
 
$ bzr commit -m 'Create trunk'
735
 
 
736
 
$ bzr rm dir/file --force
737
 
$ bzr rm dir --force
738
 
$ bzr commit -m 'Remove dir/file'
739
 
 
740
 
$ bzr branch . -r 1 ../branch
 
829
$ bzr add -q
 
830
$ bzr commit -m 'Create trunk' -q
 
831
$ bzr rm -q dir/file --force
 
832
$ bzr rm -q dir --force
 
833
$ bzr commit -q -m 'Remove dir/file'
 
834
$ bzr branch -q . -r 1 ../branch
741
835
$ cd ../branch
742
836
$ echo 'branch content' >dir/file2
743
 
$ bzr add dir/file2
744
 
$ bzr commit -m 'Add dir/file2 in branch'
745
 
 
 
837
$ bzr add -q dir/file2
 
838
$ bzr commit -q -m 'Add dir/file2 in branch'
746
839
$ bzr merge ../trunk
747
840
2>-D  dir/file
748
841
2>Conflict: can't delete dir because it is not empty.  Not deleting.
753
846
    def test_keep_them_all(self):
754
847
        self.run_script("""
755
848
$ bzr resolve dir
756
 
$ bzr commit --strict -m 'No more conflicts nor unknown files'
 
849
2>2 conflict(s) resolved, 0 remaining
 
850
$ bzr commit -q --strict -m 'No more conflicts nor unknown files'
757
851
""")
758
852
 
759
853
    def test_adopt_child(self):
760
854
        self.run_script("""
761
 
$ bzr mv dir/file2 file2
762
 
$ bzr rm dir --force
 
855
$ bzr mv -q dir/file2 file2
 
856
$ bzr rm -q dir --force
763
857
$ bzr resolve dir
764
 
$ bzr commit --strict -m 'No more conflicts nor unknown files'
 
858
2>2 conflict(s) resolved, 0 remaining
 
859
$ bzr commit -q --strict -m 'No more conflicts nor unknown files'
765
860
""")
766
861
 
767
862
    def test_kill_them_all(self):
768
863
        self.run_script("""
769
 
$ bzr rm dir --force
 
864
$ bzr rm -q dir --force
770
865
$ bzr resolve dir
771
 
$ bzr commit --strict -m 'No more conflicts nor unknown files'
 
866
2>2 conflict(s) resolved, 0 remaining
 
867
$ bzr commit -q --strict -m 'No more conflicts nor unknown files'
772
868
""")
773
869
 
774
870
    def test_resolve_taking_this(self):
775
871
        self.run_script("""
776
872
$ bzr resolve --take-this dir
777
 
$ bzr commit --strict -m 'No more conflicts nor unknown files'
 
873
2>2 conflict(s) resolved, 0 remaining
 
874
$ bzr commit -q --strict -m 'No more conflicts nor unknown files'
778
875
""")
779
876
 
780
877
    def test_resolve_taking_other(self):
781
878
        self.run_script("""
782
879
$ bzr resolve --take-other dir
783
 
$ bzr commit --strict -m 'No more conflicts nor unknown files'
 
880
2>deleted dir/file2
 
881
2>deleted dir
 
882
2>2 conflict(s) resolved, 0 remaining
 
883
$ bzr commit -q --strict -m 'No more conflicts nor unknown files'
784
884
""")
785
885
 
786
886
 
787
887
class TestResolveParentLoop(TestParametrizedResolveConflicts):
788
888
 
789
 
    _conflict_type = conflicts.ParentLoop,
 
889
    _conflict_type = conflicts.ParentLoop
790
890
 
791
891
    _this_args = None
792
892
    _other_args = None
793
893
 
794
 
    @staticmethod
795
 
    def scenarios():
796
 
        # Each side dict additionally defines:
797
 
        # - dir_id: the directory being moved
798
 
        # - target_id: The target directory
799
 
        # - xfail: whether the test is expected to fail if the action is
800
 
        #     involved as 'other'
801
 
        base_scenarios = [
 
894
    # Each side dict additionally defines:
 
895
    # - dir_id: the directory being moved
 
896
    # - target_id: The target directory
 
897
    # - xfail: whether the test is expected to fail if the action is
 
898
    #   involved as 'other'
 
899
    scenarios = mirror_scenarios(
 
900
        [
802
901
            # Dirs moved into each other
803
902
            (dict(_base_actions='create_dir1_dir2'),
804
903
             ('dir1_into_dir2',
815
914
             ('dir3_into_dir2',
816
915
              dict(actions='move_dir3_into_dir2', check='dir3_4_moved',
817
916
                   dir_id='dir3-id', target_id='dir2-id', xfail=True))),
818
 
            ]
819
 
        return mirror_scenarios(base_scenarios)
 
917
            ])
820
918
 
821
919
    def do_create_dir1_dir2(self):
822
920
        return [('add', ('dir1', 'dir1-id', 'directory', '')),
826
924
        return [('rename', ('dir1', 'dir2/dir1'))]
827
925
 
828
926
    def check_dir1_moved(self):
829
 
        self.failIfExists('branch/dir1')
830
 
        self.failUnlessExists('branch/dir2/dir1')
 
927
        self.assertPathDoesNotExist('branch/dir1')
 
928
        self.assertPathExists('branch/dir2/dir1')
831
929
 
832
930
    def do_move_dir2_into_dir1(self):
833
931
        return [('rename', ('dir2', 'dir1/dir2'))]
834
932
 
835
933
    def check_dir2_moved(self):
836
 
        self.failIfExists('branch/dir2')
837
 
        self.failUnlessExists('branch/dir1/dir2')
 
934
        self.assertPathDoesNotExist('branch/dir2')
 
935
        self.assertPathExists('branch/dir1/dir2')
838
936
 
839
937
    def do_create_dir1_4(self):
840
938
        return [('add', ('dir1', 'dir1-id', 'directory', '')),
846
944
        return [('rename', ('dir1', 'dir3/dir4/dir1'))]
847
945
 
848
946
    def check_dir1_2_moved(self):
849
 
        self.failIfExists('branch/dir1')
850
 
        self.failUnlessExists('branch/dir3/dir4/dir1')
851
 
        self.failUnlessExists('branch/dir3/dir4/dir1/dir2')
 
947
        self.assertPathDoesNotExist('branch/dir1')
 
948
        self.assertPathExists('branch/dir3/dir4/dir1')
 
949
        self.assertPathExists('branch/dir3/dir4/dir1/dir2')
852
950
 
853
951
    def do_move_dir3_into_dir2(self):
854
952
        return [('rename', ('dir3', 'dir1/dir2/dir3'))]
855
953
 
856
954
    def check_dir3_4_moved(self):
857
 
        self.failIfExists('branch/dir3')
858
 
        self.failUnlessExists('branch/dir1/dir2/dir3')
859
 
        self.failUnlessExists('branch/dir1/dir2/dir3/dir4')
 
955
        self.assertPathDoesNotExist('branch/dir3')
 
956
        self.assertPathExists('branch/dir1/dir2/dir3')
 
957
        self.assertPathExists('branch/dir1/dir2/dir3/dir4')
860
958
 
861
959
    def _get_resolve_path_arg(self, wt, action):
862
960
        # ParentLoop says: moving <conflict_path> into <path>. Cancelled move.
882
980
 
883
981
    preamble = """
884
982
$ bzr init trunk
 
983
...
885
984
$ cd trunk
886
985
$ bzr mkdir foo
887
 
$ bzr commit -m 'Create trunk'
 
986
...
 
987
$ bzr commit -m 'Create trunk' -q
888
988
$ echo "Boing" >foo/bar
889
 
$ bzr add foo/bar
890
 
$ bzr commit -m 'Add foo/bar'
891
 
 
892
 
$ bzr branch . -r 1 ../branch
 
989
$ bzr add -q foo/bar
 
990
$ bzr commit -q -m 'Add foo/bar'
 
991
$ bzr branch -q . -r 1 ../branch
893
992
$ cd ../branch
894
993
$ rm -r foo
895
994
$ echo "Boo!" >foo
896
 
$ bzr commit -m 'foo is now a file'
897
 
 
 
995
$ bzr commit -q -m 'foo is now a file'
898
996
$ bzr merge ../trunk
899
997
2>+N  foo.new/bar
900
998
2>RK  foo => foo.new/
906
1004
 
907
1005
    def test_take_this(self):
908
1006
        self.run_script("""
909
 
$ bzr rm foo.new --force
 
1007
$ bzr rm -q foo.new --force
910
1008
# FIXME: Isn't it weird that foo is now unkown even if foo.new has been put
911
1009
# aside ? -- vila 090916
912
 
$ bzr add foo
 
1010
$ bzr add -q foo
913
1011
$ bzr resolve foo.new
914
 
$ bzr commit --strict -m 'No more conflicts nor unknown files'
 
1012
2>1 conflict(s) resolved, 0 remaining
 
1013
$ bzr commit -q --strict -m 'No more conflicts nor unknown files'
915
1014
""")
916
1015
 
917
1016
    def test_take_other(self):
918
1017
        self.run_script("""
919
 
$ bzr rm foo --force
920
 
$ bzr mv foo.new foo
 
1018
$ bzr rm -q foo --force
 
1019
$ bzr mv -q foo.new foo
921
1020
$ bzr resolve foo
922
 
$ bzr commit --strict -m 'No more conflicts nor unknown files'
 
1021
2>1 conflict(s) resolved, 0 remaining
 
1022
$ bzr commit -q --strict -m 'No more conflicts nor unknown files'
923
1023
""")
924
1024
 
925
1025
    def test_resolve_taking_this(self):
926
1026
        self.run_script("""
927
1027
$ bzr resolve --take-this foo.new
928
 
$ bzr commit --strict -m 'No more conflicts nor unknown files'
 
1028
2>...
 
1029
$ bzr commit -q --strict -m 'No more conflicts nor unknown files'
929
1030
""")
930
1031
 
931
1032
    def test_resolve_taking_other(self):
932
1033
        self.run_script("""
933
1034
$ bzr resolve --take-other foo.new
934
 
$ bzr commit --strict -m 'No more conflicts nor unknown files'
 
1035
2>...
 
1036
$ bzr commit -q --strict -m 'No more conflicts nor unknown files'
935
1037
""")
936
1038
 
937
1039
 
943
1045
        # conflict.
944
1046
        self.run_script("""
945
1047
$ bzr init trunk
 
1048
...
946
1049
$ cd trunk
947
1050
$ bzr mkdir foo
948
 
$ bzr commit -m 'Create trunk'
 
1051
...
 
1052
$ bzr commit -m 'Create trunk' -q
949
1053
$ rm -r foo
950
1054
$ echo "Boo!" >foo
951
 
$ bzr commit -m 'foo is now a file'
952
 
 
953
 
$ bzr branch . -r 1 ../branch
 
1055
$ bzr commit -m 'foo is now a file' -q
 
1056
$ bzr branch -q . -r 1 ../branch -q
954
1057
$ cd ../branch
955
1058
$ echo "Boing" >foo/bar
956
 
$ bzr add foo/bar
957
 
$ bzr commit -m 'Add foo/bar'
958
 
 
 
1059
$ bzr add -q foo/bar -q
 
1060
$ bzr commit -m 'Add foo/bar' -q
959
1061
$ bzr merge ../trunk
960
1062
2>bzr: ERROR: Tree transform is malformed [('unversioned executability', 'new-1')]
961
1063
""")
962
1064
 
963
1065
 
 
1066
class TestNoFinalPath(script.TestCaseWithTransportAndScript):
 
1067
 
 
1068
    def test_bug_805809(self):
 
1069
        self.run_script("""
 
1070
$ bzr init trunk
 
1071
Created a standalone tree (format: 2a)
 
1072
$ cd trunk
 
1073
$ echo trunk >file
 
1074
$ bzr add
 
1075
adding file
 
1076
$ bzr commit -m 'create file on trunk'
 
1077
2>Committing to: .../trunk/
 
1078
2>added file
 
1079
2>Committed revision 1.
 
1080
# Create a debian branch based on trunk
 
1081
$ cd ..
 
1082
$ bzr branch trunk -r 1 debian
 
1083
2>Branched 1 revision(s).
 
1084
$ cd debian
 
1085
$ mkdir dir
 
1086
$ bzr add
 
1087
adding dir
 
1088
$ bzr mv file dir
 
1089
file => dir/file
 
1090
$ bzr commit -m 'rename file to dir/file for debian'
 
1091
2>Committing to: .../debian/
 
1092
2>added dir
 
1093
2>renamed file => dir/file
 
1094
2>Committed revision 2.
 
1095
# Create an experimental branch with a new root-id
 
1096
$ cd ..
 
1097
$ bzr init experimental
 
1098
Created a standalone tree (format: 2a)
 
1099
$ cd experimental
 
1100
# Work around merging into empty branch not being supported
 
1101
# (http://pad.lv/308562)
 
1102
$ echo something >not-empty
 
1103
$ bzr add
 
1104
adding not-empty
 
1105
$ bzr commit -m 'Add some content in experimental'
 
1106
2>Committing to: .../experimental/
 
1107
2>added not-empty
 
1108
2>Committed revision 1.
 
1109
# merge debian even without a common ancestor
 
1110
$ bzr merge ../debian -r0..2
 
1111
2>+N  dir/
 
1112
2>+N  dir/file
 
1113
2>All changes applied successfully.
 
1114
$ bzr commit -m 'merging debian into experimental'
 
1115
2>Committing to: .../experimental/
 
1116
2>added dir
 
1117
2>added dir/file
 
1118
2>Committed revision 2.
 
1119
# Create an ubuntu branch with yet another root-id
 
1120
$ cd ..
 
1121
$ bzr init ubuntu
 
1122
Created a standalone tree (format: 2a)
 
1123
$ cd ubuntu
 
1124
# Work around merging into empty branch not being supported
 
1125
# (http://pad.lv/308562)
 
1126
$ echo something >not-empty-ubuntu
 
1127
$ bzr add
 
1128
adding not-empty-ubuntu
 
1129
$ bzr commit -m 'Add some content in experimental'
 
1130
2>Committing to: .../ubuntu/
 
1131
2>added not-empty-ubuntu
 
1132
2>Committed revision 1.
 
1133
# Also merge debian
 
1134
$ bzr merge ../debian -r0..2
 
1135
2>+N  dir/
 
1136
2>+N  dir/file
 
1137
2>All changes applied successfully.
 
1138
$ bzr commit -m 'merging debian'
 
1139
2>Committing to: .../ubuntu/
 
1140
2>added dir
 
1141
2>added dir/file
 
1142
2>Committed revision 2.
 
1143
# Now try to merge experimental
 
1144
$ bzr merge ../experimental
 
1145
2>+N  not-empty
 
1146
2>Path conflict: dir / dir
 
1147
2>1 conflicts encountered.
 
1148
""")
 
1149
 
 
1150
 
964
1151
class TestResolveActionOption(tests.TestCase):
965
1152
 
966
1153
    def setUp(self):