~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_conflicts.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-09-29 22:03:03 UTC
  • mfrom: (5416.2.6 jam-integration)
  • Revision ID: pqm@pqm.ubuntu.com-20100929220303-cr95h8iwtggco721
(mbp) Add 'break-lock --force'

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
import os
19
19
 
20
20
from bzrlib import (
 
21
    branchbuilder,
21
22
    bzrdir,
22
23
    conflicts,
23
24
    errors,
24
25
    option,
25
26
    tests,
 
27
    workingtree,
26
28
    )
27
29
from bzrlib.tests import script
28
30
 
29
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
 
49
 
 
50
 
30
51
# TODO: Test commit with some added, and added-but-missing files
31
52
# RBC 20060124 is that not tested in test_commit.py ?
32
53
 
69
90
                                  ('hello.sploo.OTHER', 'yellowworld2'),
70
91
                                  ])
71
92
        tree.lock_read()
72
 
        self.assertEqual(6, len(list(tree.list_files())))
 
93
        self.assertLength(6, list(tree.list_files()))
73
94
        tree.unlock()
74
95
        tree_conflicts = tree.conflicts()
75
 
        self.assertEqual(2, len(tree_conflicts))
 
96
        self.assertLength(2, tree_conflicts)
76
97
        self.assertTrue('hello' in tree_conflicts[0].path)
77
98
        self.assertTrue('hello.sploo' in tree_conflicts[1].path)
78
99
        conflicts.restore('hello')
79
100
        conflicts.restore('hello.sploo')
80
 
        self.assertEqual(0, len(tree.conflicts()))
 
101
        self.assertLength(0, tree.conflicts())
81
102
        self.assertFileEqual('hello world2', 'hello')
82
103
        self.assertFalse(os.path.lexists('hello.sploo'))
83
104
        self.assertRaises(errors.NotConflicted, conflicts.restore, 'hello')
177
198
# FIXME: The shell-like tests should be converted to real whitebox tests... or
178
199
# moved to a blackbox module -- vila 20100205
179
200
 
 
201
# FIXME: test missing for multiple conflicts
 
202
 
180
203
# FIXME: Tests missing for DuplicateID conflict type
181
204
class TestResolveConflicts(script.TestCaseWithTransportAndScript):
182
205
 
192
215
    pass
193
216
 
194
217
 
195
 
class TestResolveContentConflicts(TestResolveConflicts):
196
 
 
197
 
    # FIXME: We need to add the reverse case (delete in trunk, modify in
198
 
    # branch) but that could wait until the resolution mechanism is implemented.
199
 
 
200
 
    preamble = """
201
 
$ bzr init trunk
202
 
$ cd trunk
203
 
$ echo 'trunk content' >file
204
 
$ bzr add file
205
 
$ bzr commit -m 'Create trunk'
206
 
 
207
 
$ bzr branch . ../branch
208
 
$ cd ../branch
209
 
$ bzr rm file
210
 
$ bzr commit -m 'Delete file'
211
 
 
212
 
$ cd ../trunk
213
 
$ echo 'more content' >>file
214
 
$ bzr commit -m 'Modify file'
215
 
 
216
 
$ cd ../branch
217
 
$ bzr merge ../trunk
218
 
2>+N  file.OTHER
219
 
2>Contents conflict in file
220
 
2>1 conflicts encountered.
221
 
"""
222
 
 
223
 
    def test_take_this(self):
224
 
        self.run_script("""
225
 
$ bzr rm file.OTHER --force # a simple rm file.OTHER is valid too
226
 
$ bzr resolve file
227
 
$ bzr commit --strict -m 'No more conflicts nor unknown files'
228
 
""")
229
 
 
230
 
    def test_take_other(self):
231
 
        self.run_script("""
232
 
$ bzr mv file.OTHER file
233
 
$ bzr resolve file
234
 
$ bzr commit --strict -m 'No more conflicts nor unknown files'
235
 
""")
236
 
 
237
 
    def test_resolve_taking_this(self):
238
 
        self.run_script("""
239
 
$ bzr resolve --take-this file
240
 
$ bzr commit --strict -m 'No more conflicts nor unknown files'
241
 
""")
242
 
 
243
 
    def test_resolve_taking_other(self):
244
 
        self.run_script("""
245
 
$ bzr resolve --take-other file
246
 
$ bzr commit --strict -m 'No more conflicts nor unknown files'
247
 
""")
248
 
 
249
 
 
250
 
class TestResolveDuplicateEntry(TestResolveConflicts):
251
 
 
252
 
    preamble = """
253
 
$ bzr init trunk
254
 
$ cd trunk
255
 
$ echo 'trunk content' >file
256
 
$ bzr add file
257
 
$ bzr commit -m 'Create trunk'
258
 
$ echo 'trunk content too' >file2
259
 
$ bzr add file2
260
 
$ bzr commit -m 'Add file2 in trunk'
261
 
 
262
 
$ bzr branch . -r 1 ../branch
263
 
$ cd ../branch
264
 
$ echo 'branch content' >file2
265
 
$ bzr add file2
266
 
$ bzr commit -m 'Add file2 in branch'
267
 
 
268
 
$ bzr merge ../trunk
269
 
2>+N  file2
270
 
2>R   file2 => file2.moved
271
 
2>Conflict adding file file2.  Moved existing file to file2.moved.
272
 
2>1 conflicts encountered.
273
 
"""
274
 
 
275
 
    def test_keep_this(self):
276
 
        self.run_script("""
277
 
$ bzr rm file2  --force
278
 
$ bzr mv file2.moved file2
279
 
$ bzr resolve file2
280
 
$ bzr commit --strict -m 'No more conflicts nor unknown files'
281
 
""")
282
 
 
283
 
    def test_keep_other(self):
284
 
        self.failIfExists('branch/file2.moved')
285
 
        self.run_script("""
286
 
$ bzr rm file2.moved --force
287
 
$ bzr resolve file2
288
 
$ bzr commit --strict -m 'No more conflicts nor unknown files'
289
 
""")
290
 
        self.failIfExists('branch/file2.moved')
291
 
 
292
 
    def test_resolve_taking_this(self):
293
 
        self.run_script("""
294
 
$ bzr resolve --take-this file2
295
 
$ bzr commit --strict -m 'No more conflicts nor unknown files'
296
 
""")
297
 
 
298
 
    def test_resolve_taking_other(self):
299
 
        self.run_script("""
300
 
$ bzr resolve --take-other file2
301
 
$ bzr commit --strict -m 'No more conflicts nor unknown files'
302
 
""")
 
218
def mirror_scenarios(base_scenarios):
 
219
    """Return a list of mirrored scenarios.
 
220
 
 
221
    Each scenario in base_scenarios is duplicated switching the roles of 'this'
 
222
    and 'other'
 
223
    """
 
224
    scenarios = []
 
225
    for common, (lname, ldict), (rname, rdict) in base_scenarios:
 
226
        a = tests.multiply_scenarios([(lname, dict(_this=ldict))],
 
227
                                     [(rname, dict(_other=rdict))])
 
228
        b = tests.multiply_scenarios([(rname, dict(_this=rdict))],
 
229
                                     [(lname, dict(_other=ldict))])
 
230
        # Inject the common parameters in all scenarios
 
231
        for name, d in a + b:
 
232
            d.update(common)
 
233
        scenarios.extend(a + b)
 
234
    return scenarios
 
235
 
 
236
 
 
237
# FIXME: Get rid of parametrized (in the class name) once we delete
 
238
# TestResolveConflicts -- vila 20100308
 
239
class TestParametrizedResolveConflicts(tests.TestCaseWithTransport):
 
240
    """This class provides a base to test single conflict resolution.
 
241
 
 
242
    Since all conflict objects are created with specific semantics for their
 
243
    attributes, each class should implement the necessary functions and
 
244
    attributes described below.
 
245
 
 
246
    Each class should define the scenarios that create the expected (single)
 
247
    conflict.
 
248
 
 
249
    Each scenario describes:
 
250
    * how to create 'base' tree (and revision)
 
251
    * how to create 'left' tree (and revision, parent rev 'base')
 
252
    * how to create 'right' tree (and revision, parent rev 'base')
 
253
    * how to check that changes in 'base'->'left' have been taken
 
254
    * how to check that changes in 'base'->'right' have been taken
 
255
 
 
256
    From each base scenario, we generate two concrete scenarios where:
 
257
    * this=left, other=right
 
258
    * this=right, other=left
 
259
 
 
260
    Then the test case verifies each concrete scenario by:
 
261
    * creating a branch containing the 'base', 'this' and 'other' revisions
 
262
    * creating a working tree for the 'this' revision
 
263
    * performing the merge of 'other' into 'this'
 
264
    * verifying the expected conflict was generated
 
265
    * resolving with --take-this or --take-other, and running the corresponding
 
266
      checks (for either 'base'->'this', or 'base'->'other')
 
267
 
 
268
    :cvar _conflict_type: The expected class of the generated conflict.
 
269
 
 
270
    :cvar _assert_conflict: A method receiving the working tree and the
 
271
        conflict object and checking its attributes.
 
272
 
 
273
    :cvar _base_actions: The branchbuilder actions to create the 'base'
 
274
        revision.
 
275
 
 
276
    :cvar _this: The dict related to 'base' -> 'this'. It contains at least:
 
277
      * 'actions': The branchbuilder actions to create the 'this'
 
278
          revision.
 
279
      * 'check': how to check the changes after resolution with --take-this.
 
280
 
 
281
    :cvar _other: The dict related to 'base' -> 'other'. It contains at least:
 
282
      * 'actions': The branchbuilder actions to create the 'other'
 
283
          revision.
 
284
      * 'check': how to check the changes after resolution with --take-other.
 
285
    """
 
286
 
 
287
    # Set by daughter classes
 
288
    _conflict_type = None
 
289
    _assert_conflict = None
 
290
 
 
291
    # Set by load_tests
 
292
    _base_actions = None
 
293
    _this = None
 
294
    _other = None
 
295
 
 
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 []
 
324
 
 
325
    def setUp(self):
 
326
        super(TestParametrizedResolveConflicts, self).setUp()
 
327
        builder = self.make_branch_builder('trunk')
 
328
        builder.start_series()
 
329
 
 
330
        # Create an empty trunk
 
331
        builder.build_snapshot('start', None, [
 
332
                ('add', ('', 'root-id', 'directory', ''))])
 
333
        # Add a minimal base content
 
334
        base_actions = self._get_actions(self._base_actions)()
 
335
        builder.build_snapshot('base', ['start'], base_actions)
 
336
        # Modify the base content in branch
 
337
        actions_other = self._get_actions(self._other['actions'])()
 
338
        builder.build_snapshot('other', ['base'], actions_other)
 
339
        # Modify the base content in trunk
 
340
        actions_this = self._get_actions(self._this['actions'])()
 
341
        builder.build_snapshot('this', ['base'], actions_this)
 
342
        # builder.get_branch() tip is now 'this'
 
343
 
 
344
        builder.finish_series()
 
345
        self.builder = builder
 
346
 
 
347
    def _get_actions(self, name):
 
348
        return getattr(self, 'do_%s' % name)
 
349
 
 
350
    def _get_check(self, name):
 
351
        return getattr(self, 'check_%s' % name)
 
352
 
 
353
    def _merge_other_into_this(self):
 
354
        b = self.builder.get_branch()
 
355
        wt = b.bzrdir.sprout('branch').open_workingtree()
 
356
        wt.merge_from_branch(b, 'other')
 
357
        return wt
 
358
 
 
359
    def assertConflict(self, wt):
 
360
        confs = wt.conflicts()
 
361
        self.assertLength(1, confs)
 
362
        c = confs[0]
 
363
        self.assertIsInstance(c, self._conflict_type)
 
364
        self._assert_conflict(wt, c)
 
365
 
 
366
    def _get_resolve_path_arg(self, wt, action):
 
367
        raise NotImplementedError(self._get_resolve_path_arg)
 
368
 
 
369
    def check_resolved(self, wt, action):
 
370
        path = self._get_resolve_path_arg(wt, action)
 
371
        conflicts.resolve(wt, [path], action=action)
 
372
        # Check that we don't have any conflicts nor unknown left
 
373
        self.assertLength(0, wt.conflicts())
 
374
        self.assertLength(0, list(wt.unknowns()))
 
375
 
 
376
    def test_resolve_taking_this(self):
 
377
        wt = self._merge_other_into_this()
 
378
        self.assertConflict(wt)
 
379
        self.check_resolved(wt, 'take_this')
 
380
        check_this = self._get_check(self._this['check'])
 
381
        check_this()
 
382
 
 
383
    def test_resolve_taking_other(self):
 
384
        wt = self._merge_other_into_this()
 
385
        self.assertConflict(wt)
 
386
        self.check_resolved(wt, 'take_other')
 
387
        check_other = self._get_check(self._other['check'])
 
388
        check_other()
 
389
 
 
390
 
 
391
class TestResolveContentsConflict(TestParametrizedResolveConflicts):
 
392
 
 
393
    _conflict_type = conflicts.ContentsConflict,
 
394
 
 
395
    # Set by load_tests from scenarios()
 
396
    # path and file-id for the file involved in the conflict
 
397
    _path = None
 
398
    _file_id = None
 
399
 
 
400
    @staticmethod
 
401
    def scenarios():
 
402
        base_scenarios = [
 
403
            # File modified/deleted
 
404
            (dict(_base_actions='create_file',
 
405
                  _path='file', _file_id='file-id'),
 
406
             ('file_modified',
 
407
              dict(actions='modify_file', check='file_has_more_content')),
 
408
             ('file_deleted',
 
409
              dict(actions='delete_file', check='file_doesnt_exist')),),
 
410
            ]
 
411
        return mirror_scenarios(base_scenarios)
 
412
 
 
413
    def do_create_file(self):
 
414
        return [('add', ('file', 'file-id', 'file', 'trunk content\n'))]
 
415
 
 
416
    def do_modify_file(self):
 
417
        return [('modify', ('file-id', 'trunk content\nmore content\n'))]
 
418
 
 
419
    def check_file_has_more_content(self):
 
420
        self.assertFileEqual('trunk content\nmore content\n', 'branch/file')
 
421
 
 
422
    def do_delete_file(self):
 
423
        return [('unversion', 'file-id')]
 
424
 
 
425
    def check_file_doesnt_exist(self):
 
426
        self.failIfExists('branch/file')
 
427
 
 
428
    def _get_resolve_path_arg(self, wt, action):
 
429
        return self._path
 
430
 
 
431
    def assertContentsConflict(self, wt, c):
 
432
        self.assertEqual(self._file_id, c.file_id)
 
433
        self.assertEqual(self._path, c.path)
 
434
    _assert_conflict = assertContentsConflict
 
435
 
 
436
 
 
437
class TestResolvePathConflict(TestParametrizedResolveConflicts):
 
438
 
 
439
    _conflict_type = conflicts.PathConflict,
 
440
 
 
441
    def do_nothing(self):
 
442
        return []
 
443
 
 
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 = [
 
450
            # File renamed/deleted
 
451
            (dict(_base_actions='create_file'),
 
452
             ('file_renamed',
 
453
              dict(actions='rename_file', check='file_renamed',
 
454
                   path='new-file', file_id='file-id')),
 
455
             ('file_deleted',
 
456
              dict(actions='delete_file', check='file_doesnt_exist',
 
457
                   # PathConflicts deletion handling requires a special
 
458
                   # hard-coded value
 
459
                   path='<deleted>', file_id='file-id')),),
 
460
            # File renamed/renamed differently
 
461
            (dict(_base_actions='create_file'),
 
462
             ('file_renamed',
 
463
              dict(actions='rename_file', check='file_renamed',
 
464
                   path='new-file', file_id='file-id')),
 
465
             ('file_renamed2',
 
466
              dict(actions='rename_file2', check='file_renamed2',
 
467
                   path='new-file2', file_id='file-id')),),
 
468
            # Dir renamed/deleted
 
469
            (dict(_base_actions='create_dir'),
 
470
             ('dir_renamed',
 
471
              dict(actions='rename_dir', check='dir_renamed',
 
472
                   path='new-dir', file_id='dir-id')),
 
473
             ('dir_deleted',
 
474
              dict(actions='delete_dir', check='dir_doesnt_exist',
 
475
                   # PathConflicts deletion handling requires a special
 
476
                   # hard-coded value
 
477
                   path='<deleted>', file_id='dir-id')),),
 
478
            # Dir renamed/renamed differently
 
479
            (dict(_base_actions='create_dir'),
 
480
             ('dir_renamed',
 
481
              dict(actions='rename_dir', check='dir_renamed',
 
482
                   path='new-dir', file_id='dir-id')),
 
483
             ('dir_renamed2',
 
484
              dict(actions='rename_dir2', check='dir_renamed2',
 
485
                   path='new-dir2', file_id='dir-id')),),
 
486
        ]
 
487
        return mirror_scenarios(base_scenarios)
 
488
 
 
489
    def do_create_file(self):
 
490
        return [('add', ('file', 'file-id', 'file', 'trunk content\n'))]
 
491
 
 
492
    def do_create_dir(self):
 
493
        return [('add', ('dir', 'dir-id', 'directory', ''))]
 
494
 
 
495
    def do_rename_file(self):
 
496
        return [('rename', ('file', 'new-file'))]
 
497
 
 
498
    def check_file_renamed(self):
 
499
        self.failIfExists('branch/file')
 
500
        self.failUnlessExists('branch/new-file')
 
501
 
 
502
    def do_rename_file2(self):
 
503
        return [('rename', ('file', 'new-file2'))]
 
504
 
 
505
    def check_file_renamed2(self):
 
506
        self.failIfExists('branch/file')
 
507
        self.failUnlessExists('branch/new-file2')
 
508
 
 
509
    def do_rename_dir(self):
 
510
        return [('rename', ('dir', 'new-dir'))]
 
511
 
 
512
    def check_dir_renamed(self):
 
513
        self.failIfExists('branch/dir')
 
514
        self.failUnlessExists('branch/new-dir')
 
515
 
 
516
    def do_rename_dir2(self):
 
517
        return [('rename', ('dir', 'new-dir2'))]
 
518
 
 
519
    def check_dir_renamed2(self):
 
520
        self.failIfExists('branch/dir')
 
521
        self.failUnlessExists('branch/new-dir2')
 
522
 
 
523
    def do_delete_file(self):
 
524
        return [('unversion', 'file-id')]
 
525
 
 
526
    def check_file_doesnt_exist(self):
 
527
        self.failIfExists('branch/file')
 
528
 
 
529
    def do_delete_dir(self):
 
530
        return [('unversion', 'dir-id')]
 
531
 
 
532
    def check_dir_doesnt_exist(self):
 
533
        self.failIfExists('branch/dir')
 
534
 
 
535
    def _get_resolve_path_arg(self, wt, action):
 
536
        tpath = self._this['path']
 
537
        opath = self._other['path']
 
538
        if tpath == '<deleted>':
 
539
            path = opath
 
540
        else:
 
541
            path = tpath
 
542
        return path
 
543
 
 
544
    def assertPathConflict(self, wt, c):
 
545
        tpath = self._this['path']
 
546
        tfile_id = self._this['file_id']
 
547
        opath = self._other['path']
 
548
        ofile_id = self._other['file_id']
 
549
        self.assertEqual(tfile_id, ofile_id) # Sanity check
 
550
        self.assertEqual(tfile_id, c.file_id)
 
551
        self.assertEqual(tpath, c.path)
 
552
        self.assertEqual(opath, c.conflict_path)
 
553
    _assert_conflict = assertPathConflict
 
554
 
 
555
 
 
556
class TestResolvePathConflictBefore531967(TestResolvePathConflict):
 
557
    """Same as TestResolvePathConflict but a specific conflict object.
 
558
    """
 
559
 
 
560
    def assertPathConflict(self, c):
 
561
        # We create a conflict object as it was created before the fix and
 
562
        # inject it into the working tree, the test will exercise the
 
563
        # compatibility code.
 
564
        old_c = conflicts.PathConflict('<deleted>', self._item_path,
 
565
                                       file_id=None)
 
566
        wt.set_conflicts(conflicts.ConflictList([old_c]))
 
567
 
 
568
 
 
569
class TestResolveDuplicateEntry(TestParametrizedResolveConflicts):
 
570
 
 
571
    _conflict_type = conflicts.DuplicateEntry,
 
572
 
 
573
    @staticmethod
 
574
    def scenarios():
 
575
        # Each side dict additionally defines:
 
576
        # - path involved
 
577
        # - file-id involved
 
578
        base_scenarios = [
 
579
            # File created with different file-ids
 
580
            (dict(_base_actions='nothing'),
 
581
             ('filea_created',
 
582
              dict(actions='create_file_a', check='file_content_a',
 
583
                   path='file', file_id='file-a-id')),
 
584
             ('fileb_created',
 
585
              dict(actions='create_file_b', check='file_content_b',
 
586
                   path='file', file_id='file-b-id')),),
 
587
            ]
 
588
        return mirror_scenarios(base_scenarios)
 
589
 
 
590
    def do_nothing(self):
 
591
        return []
 
592
 
 
593
    def do_create_file_a(self):
 
594
        return [('add', ('file', 'file-a-id', 'file', 'file a content\n'))]
 
595
 
 
596
    def check_file_content_a(self):
 
597
        self.assertFileEqual('file a content\n', 'branch/file')
 
598
 
 
599
    def do_create_file_b(self):
 
600
        return [('add', ('file', 'file-b-id', 'file', 'file b content\n'))]
 
601
 
 
602
    def check_file_content_b(self):
 
603
        self.assertFileEqual('file b content\n', 'branch/file')
 
604
 
 
605
    def _get_resolve_path_arg(self, wt, action):
 
606
        return self._this['path']
 
607
 
 
608
    def assertDuplicateEntry(self, wt, c):
 
609
        tpath = self._this['path']
 
610
        tfile_id = self._this['file_id']
 
611
        opath = self._other['path']
 
612
        ofile_id = self._other['file_id']
 
613
        self.assertEqual(tpath, opath) # Sanity check
 
614
        self.assertEqual(tfile_id, c.file_id)
 
615
        self.assertEqual(tpath + '.moved', c.path)
 
616
        self.assertEqual(tpath, c.conflict_path)
 
617
    _assert_conflict = assertDuplicateEntry
303
618
 
304
619
 
305
620
class TestResolveUnversionedParent(TestResolveConflicts):
314
629
$ mkdir dir
315
630
$ bzr add dir
316
631
$ bzr commit -m 'Create trunk'
 
632
 
317
633
$ echo 'trunk content' >dir/file
318
634
$ bzr add dir/file
319
635
$ bzr commit -m 'Add dir/file in trunk'
354
670
$ echo 'trunk content' >dir/file
355
671
$ bzr add
356
672
$ bzr commit -m 'Create trunk'
 
673
 
357
674
$ echo 'trunk content' >dir/file2
358
675
$ bzr add dir/file2
359
676
$ bzr commit -m 'Add dir/file2 in branch'
415
732
$ echo 'trunk content' >dir/file
416
733
$ bzr add
417
734
$ bzr commit -m 'Create trunk'
 
735
 
418
736
$ bzr rm dir/file --force
419
737
$ bzr rm dir --force
420
738
$ bzr commit -m 'Remove dir/file'
466
784
""")
467
785
 
468
786
 
469
 
class TestResolvePathConflict(TestResolveConflicts):
470
 
 
471
 
    preamble = """
472
 
$ bzr init trunk
473
 
$ cd trunk
474
 
$ echo 'Boo!' >file
475
 
$ bzr add
476
 
$ bzr commit -m 'Create trunk'
477
 
$ bzr mv file file-in-trunk
478
 
$ bzr commit -m 'Renamed to file-in-trunk'
479
 
 
480
 
$ bzr branch . -r 1 ../branch
481
 
$ cd ../branch
482
 
$ bzr mv file file-in-branch
483
 
$ bzr commit -m 'Renamed to file-in-branch'
484
 
 
485
 
$ bzr merge ../trunk
486
 
2>R   file-in-branch => file-in-trunk
487
 
2>Path conflict: file-in-branch / file-in-trunk
488
 
2>1 conflicts encountered.
489
 
"""
490
 
 
491
 
    def test_keep_source(self):
492
 
        self.run_script("""
493
 
$ bzr resolve file-in-trunk
494
 
$ bzr commit --strict -m 'No more conflicts nor unknown files'
495
 
""")
496
 
 
497
 
    def test_keep_target(self):
498
 
        self.run_script("""
499
 
$ bzr mv file-in-trunk file-in-branch
500
 
$ bzr resolve file-in-branch
501
 
$ bzr commit --strict -m 'No more conflicts nor unknown files'
502
 
""")
503
 
 
504
 
    def test_resolve_taking_this(self):
505
 
        self.run_script("""
506
 
$ bzr resolve --take-this file-in-branch
507
 
$ bzr commit --strict -m 'No more conflicts nor unknown files'
508
 
""")
509
 
 
510
 
    def test_resolve_taking_other(self):
511
 
        self.run_script("""
512
 
$ bzr resolve --take-other file-in-branch
513
 
$ bzr commit --strict -m 'No more conflicts nor unknown files'
514
 
""")
515
 
 
516
 
 
517
 
class TestResolveParentLoop(TestResolveConflicts):
518
 
 
519
 
    preamble = """
520
 
$ bzr init trunk
521
 
$ cd trunk
522
 
$ bzr mkdir dir1
523
 
$ bzr mkdir dir2
524
 
$ bzr commit -m 'Create trunk'
525
 
$ bzr mv dir2 dir1
526
 
$ bzr commit -m 'Moved dir2 into dir1'
527
 
 
528
 
$ bzr branch . -r 1 ../branch
529
 
$ cd ../branch
530
 
$ bzr mv dir1 dir2
531
 
$ bzr commit -m 'Moved dir1 into dir2'
532
 
 
533
 
$ bzr merge ../trunk
534
 
2>Conflict moving dir2/dir1 into dir2.  Cancelled move.
535
 
2>1 conflicts encountered.
536
 
"""
537
 
 
538
 
    def test_take_this(self):
539
 
        self.run_script("""
540
 
$ bzr resolve dir2
541
 
$ bzr commit --strict -m 'No more conflicts nor unknown files'
542
 
""")
543
 
 
544
 
    def test_take_other(self):
545
 
        self.run_script("""
546
 
$ bzr mv dir2/dir1 dir1
547
 
$ bzr mv dir2 dir1
548
 
$ bzr resolve dir2
549
 
$ bzr commit --strict -m 'No more conflicts nor unknown files'
550
 
""")
551
 
 
552
 
    def test_resolve_taking_this(self):
553
 
        self.run_script("""
554
 
$ bzr resolve --take-this dir2
555
 
$ bzr commit --strict -m 'No more conflicts nor unknown files'
556
 
""")
557
 
        self.failUnlessExists('dir2')
558
 
 
559
 
    def test_resolve_taking_other(self):
560
 
        self.run_script("""
561
 
$ bzr resolve --take-other dir2
562
 
$ bzr commit --strict -m 'No more conflicts nor unknown files'
563
 
""")
564
 
        self.failUnlessExists('dir1')
 
787
class TestResolveParentLoop(TestParametrizedResolveConflicts):
 
788
 
 
789
    _conflict_type = conflicts.ParentLoop,
 
790
 
 
791
    _this_args = None
 
792
    _other_args = None
 
793
 
 
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 = [
 
802
            # Dirs moved into each other
 
803
            (dict(_base_actions='create_dir1_dir2'),
 
804
             ('dir1_into_dir2',
 
805
              dict(actions='move_dir1_into_dir2', check='dir1_moved',
 
806
                   dir_id='dir1-id', target_id='dir2-id', xfail=False)),
 
807
             ('dir2_into_dir1',
 
808
              dict(actions='move_dir2_into_dir1', check='dir2_moved',
 
809
                   dir_id='dir2-id', target_id='dir1-id', xfail=False))),
 
810
            # Subdirs moved into each other
 
811
            (dict(_base_actions='create_dir1_4'),
 
812
             ('dir1_into_dir4',
 
813
              dict(actions='move_dir1_into_dir4', check='dir1_2_moved',
 
814
                   dir_id='dir1-id', target_id='dir4-id', xfail=True)),
 
815
             ('dir3_into_dir2',
 
816
              dict(actions='move_dir3_into_dir2', check='dir3_4_moved',
 
817
                   dir_id='dir3-id', target_id='dir2-id', xfail=True))),
 
818
            ]
 
819
        return mirror_scenarios(base_scenarios)
 
820
 
 
821
    def do_create_dir1_dir2(self):
 
822
        return [('add', ('dir1', 'dir1-id', 'directory', '')),
 
823
                ('add', ('dir2', 'dir2-id', 'directory', '')),]
 
824
 
 
825
    def do_move_dir1_into_dir2(self):
 
826
        return [('rename', ('dir1', 'dir2/dir1'))]
 
827
 
 
828
    def check_dir1_moved(self):
 
829
        self.failIfExists('branch/dir1')
 
830
        self.failUnlessExists('branch/dir2/dir1')
 
831
 
 
832
    def do_move_dir2_into_dir1(self):
 
833
        return [('rename', ('dir2', 'dir1/dir2'))]
 
834
 
 
835
    def check_dir2_moved(self):
 
836
        self.failIfExists('branch/dir2')
 
837
        self.failUnlessExists('branch/dir1/dir2')
 
838
 
 
839
    def do_create_dir1_4(self):
 
840
        return [('add', ('dir1', 'dir1-id', 'directory', '')),
 
841
                ('add', ('dir1/dir2', 'dir2-id', 'directory', '')),
 
842
                ('add', ('dir3', 'dir3-id', 'directory', '')),
 
843
                ('add', ('dir3/dir4', 'dir4-id', 'directory', '')),]
 
844
 
 
845
    def do_move_dir1_into_dir4(self):
 
846
        return [('rename', ('dir1', 'dir3/dir4/dir1'))]
 
847
 
 
848
    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')
 
852
 
 
853
    def do_move_dir3_into_dir2(self):
 
854
        return [('rename', ('dir3', 'dir1/dir2/dir3'))]
 
855
 
 
856
    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')
 
860
 
 
861
    def _get_resolve_path_arg(self, wt, action):
 
862
        # ParentLoop says: moving <conflict_path> into <path>. Cancelled move.
 
863
        # But since <path> doesn't exist in the working tree, we need to use
 
864
        # <conflict_path> instead, and that, in turn, is given by dir_id. Pfew.
 
865
        return wt.id2path(self._other['dir_id'])
 
866
 
 
867
    def assertParentLoop(self, wt, c):
 
868
        self.assertEqual(self._other['dir_id'], c.file_id)
 
869
        self.assertEqual(self._other['target_id'], c.conflict_file_id)
 
870
        # The conflict paths are irrelevant (they are deterministic but not
 
871
        # worth checking since they don't provide the needed information
 
872
        # anyway)
 
873
        if self._other['xfail']:
 
874
            # It's a bit hackish to raise from here relying on being called for
 
875
            # both tests but this avoid overriding test_resolve_taking_other
 
876
            raise tests.KnownFailure(
 
877
                "ParentLoop doesn't carry enough info to resolve --take-other")
 
878
    _assert_conflict = assertParentLoop
565
879
 
566
880
 
567
881
class TestResolveNonDirectoryParent(TestResolveConflicts):