~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_conflicts.py

  • Committer: Robert Collins
  • Date: 2006-06-26 16:23:10 UTC
  • mfrom: (1780.2.1 misc-fixen)
  • mto: This revision was merged to the branch mainline in revision 1815.
  • Revision ID: robertc@robertcollins.net-20060626162310-98f5b55b8cc19d46
(robertc) Misc minor typos and the like.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 
18
18
import os
19
19
 
20
 
from bzrlib.selftest import TestCaseInTempDir
 
20
from bzrlib import bzrdir
 
21
from bzrlib.tests import TestCaseWithTransport, TestCase
21
22
from bzrlib.branch import Branch
22
 
from bzrlib.commit import Commit
 
23
from bzrlib.conflicts import (MissingParent, ContentsConflict, TextConflict,
 
24
        PathConflict, DuplicateID, DuplicateEntry, ParentLoop, UnversionedParent,
 
25
        ConflictList, 
 
26
        restore)
 
27
from bzrlib.errors import NotConflicted
23
28
 
24
29
 
25
30
# TODO: Test commit with some added, and added-but-missing files
26
 
 
27
 
class TestConflicts(TestCaseInTempDir):
 
31
# RBC 20060124 is that not tested in test_commit.py ?
 
32
 
 
33
# The order of 'path' here is important - do not let it
 
34
# be a sorted list.
 
35
example_conflicts = ConflictList([ 
 
36
    MissingParent('Not deleting', 'pathg', 'idg'),
 
37
    ContentsConflict('patha', 'ida'), 
 
38
    TextConflict('patha'),
 
39
    PathConflict('pathb', 'pathc', 'idb'),
 
40
    DuplicateID('Unversioned existing file', 'pathc', 'pathc2', 'idc', 'idc'),
 
41
    DuplicateEntry('Moved existing file to',  'pathdd.moved', 'pathd', 'idd', 
 
42
                   None),
 
43
    ParentLoop('Cancelled move', 'pathe', 'path2e', None, 'id2e'),
 
44
    UnversionedParent('Versioned directory', 'pathf', 'idf'),
 
45
])
 
46
 
 
47
 
 
48
class TestConflicts(TestCaseWithTransport):
28
49
 
29
50
    def test_conflicts(self):
30
51
        """Conflicts are detected properly"""
31
 
        b = Branch.initialize('.')
32
 
        file('hello', 'w').write('hello world')
33
 
        file('hello.BASE', 'w').write('hello world')
 
52
        tree = self.make_branch_and_tree('.',
 
53
            format=bzrdir.BzrDirFormat6())
 
54
        b = tree.branch
 
55
        file('hello', 'w').write('hello world4')
 
56
        file('hello.THIS', 'w').write('hello world2')
 
57
        file('hello.BASE', 'w').write('hello world1')
 
58
        file('hello.OTHER', 'w').write('hello world3')
34
59
        file('hello.sploo.BASE', 'w').write('yellow world')
35
 
        tree = b.working_tree()
36
 
        self.assertEqual(len(list(tree.list_files())), 3)
37
 
        conflicts = list(tree.iter_conflicts())
 
60
        file('hello.sploo.OTHER', 'w').write('yellow world2')
 
61
        self.assertEqual(len(list(tree.list_files())), 6)
 
62
        conflicts = tree.conflicts()
38
63
        self.assertEqual(len(conflicts), 2)
39
 
        assert 'hello' in conflicts
40
 
        assert 'hello.sploo' in conflicts
41
 
        os.unlink('hello.BASE')
42
 
        os.unlink('hello.sploo.BASE')
43
 
        self.assertEqual(len(list(tree.iter_conflicts())), 0)
44
 
 
 
64
        self.assert_('hello' in conflicts[0].path)
 
65
        self.assert_('hello.sploo' in conflicts[1].path)
 
66
        restore('hello')
 
67
        restore('hello.sploo')
 
68
        self.assertEqual(len(tree.conflicts()), 0)
 
69
        self.assertFileEqual('hello world2', 'hello')
 
70
        assert not os.path.lexists('hello.sploo')
 
71
        self.assertRaises(NotConflicted, restore, 'hello')
 
72
        self.assertRaises(NotConflicted, restore, 'hello.sploo')
 
73
 
 
74
    def test_resolve_conflict_dir(self):
 
75
        tree = self.make_branch_and_tree('.')
 
76
        b = tree.branch
 
77
        file('hello', 'w').write('hello world4')
 
78
        tree.add('hello', 'q')
 
79
        file('hello.THIS', 'w').write('hello world2')
 
80
        file('hello.BASE', 'w').write('hello world1')
 
81
        os.mkdir('hello.OTHER')
 
82
        l = ConflictList([TextConflict('hello')])
 
83
        l.remove_files(tree)
 
84
 
 
85
 
 
86
class TestConflictStanzas(TestCase):
 
87
 
 
88
    def test_stanza_roundtrip(self):
 
89
        # write and read our example stanza.
 
90
        stanza_iter = example_conflicts.to_stanzas()
 
91
        processed = ConflictList.from_stanzas(stanza_iter)
 
92
        for o,p in zip(processed, example_conflicts):
 
93
            self.assertEqual(o, p)
 
94
 
 
95
    def test_stanzification(self):
 
96
        for stanza in example_conflicts.to_stanzas():
 
97
            try:
 
98
                self.assertStartsWith(stanza['file_id'], 'id')
 
99
            except KeyError:
 
100
                pass
 
101
            self.assertStartsWith(stanza['path'], 'path')
 
102
            try:
 
103
                self.assertStartsWith(stanza['conflict_file_id'], 'id')
 
104
                self.assertStartsWith(stanza['conflict_file_path'], 'path')
 
105
            except KeyError:
 
106
                pass