~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-04-18 22:41:16 UTC
  • mto: (1711.1.1 integration)
  • mto: This revision was merged to the branch mainline in revision 1671.
  • Revision ID: robertc@robertcollins.net-20060418224116-9b723440fa56e404
 * 'Metadir' is now the default disk format. This improves behaviour in
   SFTP using circumstances and allows binding and rebinding and easier
   use of repositories. (Robert Collins, Aaron Bentley).

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