~bzr-pqm/bzr/bzr.dev

2052.3.2 by John Arbash Meinel
Change Copyright .. by Canonical to Copyright ... Canonical
1
# Copyright (C) 2005 Canonical Ltd
1887.1.1 by Adeodato Simó
Do not separate paragraphs in the copyright statement with blank lines,
2
#
1185.14.8 by Aaron Bentley
Added test_commit.py
3
# This program is free software; you can redistribute it and/or modify
4
# it under the terms of the GNU General Public License as published by
5
# the Free Software Foundation; either version 2 of the License, or
6
# (at your option) any later version.
1887.1.1 by Adeodato Simó
Do not separate paragraphs in the copyright statement with blank lines,
7
#
1185.14.8 by Aaron Bentley
Added test_commit.py
8
# This program is distributed in the hope that it will be useful,
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11
# GNU General Public License for more details.
1887.1.1 by Adeodato Simó
Do not separate paragraphs in the copyright statement with blank lines,
12
#
1185.14.8 by Aaron Bentley
Added test_commit.py
13
# You should have received a copy of the GNU General Public License
14
# along with this program; if not, write to the Free Software
4183.7.1 by Sabin Iacob
update FSF mailing address
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
1185.14.8 by Aaron Bentley
Added test_commit.py
16
17
18
import os
19
2120.7.2 by Aaron Bentley
Move autoresolve functionality to workingtree
20
from bzrlib import bzrdir
1534.10.4 by Aaron Bentley
Implemented conflict serialization
21
from bzrlib.tests import TestCaseWithTransport, TestCase
1185.14.8 by Aaron Bentley
Added test_commit.py
22
from bzrlib.branch import Branch
3017.2.1 by Aaron Bentley
Revert now resolves conflicts recursively (#102739)
23
from bzrlib.conflicts import (
24
    ConflictList,
25
    ContentsConflict,
26
    DuplicateID,
27
    DuplicateEntry,
28
    MissingParent,
3144.4.2 by Aaron Bentley
Handle non-directory parent conflicts (abentley, #177390)
29
    NonDirectoryParent,
3017.2.1 by Aaron Bentley
Revert now resolves conflicts recursively (#102739)
30
    ParentLoop,
31
    PathConflict,
32
    TextConflict,
33
    UnversionedParent,
34
    resolve,
35
    restore,
36
    )
1185.35.1 by Aaron Bentley
Implemented conflicts.restore
37
from bzrlib.errors import NotConflicted
1185.14.8 by Aaron Bentley
Added test_commit.py
38
1534.10.4 by Aaron Bentley
Implemented conflict serialization
39
1185.14.8 by Aaron Bentley
Added test_commit.py
40
# TODO: Test commit with some added, and added-but-missing files
1534.4.26 by Robert Collins
Move working tree initialisation out from Branch.initialize, deprecated Branch.initialize to Branch.create.
41
# RBC 20060124 is that not tested in test_commit.py ?
1185.14.8 by Aaron Bentley
Added test_commit.py
42
1666.1.4 by Robert Collins
* 'Metadir' is now the default disk format. This improves behaviour in
43
# The order of 'path' here is important - do not let it
44
# be a sorted list.
2309.4.13 by John Arbash Meinel
Conflicts go through Stanza so the need to be aware of utf8 versus unicode file ids.
45
# u'\xe5' == a with circle
46
# '\xc3\xae' == u'\xee' == i with hat
47
# So these are u'pathg' and 'idg' only with a circle and a hat. (shappo?)
3943.8.1 by Marius Kruger
remove all trailing whitespace from bzr source
48
example_conflicts = ConflictList([
2309.4.13 by John Arbash Meinel
Conflicts go through Stanza so the need to be aware of utf8 versus unicode file ids.
49
    MissingParent('Not deleting', u'p\xe5thg', '\xc3\xaedg'),
3943.8.1 by Marius Kruger
remove all trailing whitespace from bzr source
50
    ContentsConflict(u'p\xe5tha', None, '\xc3\xaeda'),
2309.4.13 by John Arbash Meinel
Conflicts go through Stanza so the need to be aware of utf8 versus unicode file ids.
51
    TextConflict(u'p\xe5tha'),
52
    PathConflict(u'p\xe5thb', u'p\xe5thc', '\xc3\xaedb'),
53
    DuplicateID('Unversioned existing file', u'p\xe5thc', u'p\xe5thc2',
54
                '\xc3\xaedc', '\xc3\xaedc'),
55
    DuplicateEntry('Moved existing file to',  u'p\xe5thdd.moved', u'p\xe5thd',
56
                   '\xc3\xaedd', None),
57
    ParentLoop('Cancelled move', u'p\xe5the', u'p\xe5th2e',
58
               None, '\xc3\xaed2e'),
59
    UnversionedParent('Versioned directory', u'p\xe5thf', '\xc3\xaedf'),
3144.4.2 by Aaron Bentley
Handle non-directory parent conflicts (abentley, #177390)
60
    NonDirectoryParent('Created directory', u'p\xe5thg', '\xc3\xaedg'),
1534.10.22 by Aaron Bentley
Got ConflictList implemented
61
])
1534.10.4 by Aaron Bentley
Implemented conflict serialization
62
63
1534.4.26 by Robert Collins
Move working tree initialisation out from Branch.initialize, deprecated Branch.initialize to Branch.create.
64
class TestConflicts(TestCaseWithTransport):
1185.14.8 by Aaron Bentley
Added test_commit.py
65
66
    def test_conflicts(self):
67
        """Conflicts are detected properly"""
1666.1.4 by Robert Collins
* 'Metadir' is now the default disk format. This improves behaviour in
68
        tree = self.make_branch_and_tree('.',
1773.4.1 by Martin Pool
Add pyflakes makefile target; fix many warnings
69
            format=bzrdir.BzrDirFormat6())
1534.4.26 by Robert Collins
Move working tree initialisation out from Branch.initialize, deprecated Branch.initialize to Branch.create.
70
        b = tree.branch
1185.35.1 by Aaron Bentley
Implemented conflicts.restore
71
        file('hello', 'w').write('hello world4')
72
        file('hello.THIS', 'w').write('hello world2')
73
        file('hello.BASE', 'w').write('hello world1')
74
        file('hello.OTHER', 'w').write('hello world3')
1185.14.8 by Aaron Bentley
Added test_commit.py
75
        file('hello.sploo.BASE', 'w').write('yellow world')
1185.35.1 by Aaron Bentley
Implemented conflicts.restore
76
        file('hello.sploo.OTHER', 'w').write('yellow world2')
2255.2.61 by John Arbash Meinel
Find callers of list_files() and make sure the tree is always locked.
77
        tree.lock_read()
1185.35.1 by Aaron Bentley
Implemented conflicts.restore
78
        self.assertEqual(len(list(tree.list_files())), 6)
2255.2.61 by John Arbash Meinel
Find callers of list_files() and make sure the tree is always locked.
79
        tree.unlock()
1534.10.22 by Aaron Bentley
Got ConflictList implemented
80
        conflicts = tree.conflicts()
1185.14.8 by Aaron Bentley
Added test_commit.py
81
        self.assertEqual(len(conflicts), 2)
1534.10.20 by Aaron Bentley
Got all tests passing
82
        self.assert_('hello' in conflicts[0].path)
83
        self.assert_('hello.sploo' in conflicts[1].path)
1185.35.1 by Aaron Bentley
Implemented conflicts.restore
84
        restore('hello')
85
        restore('hello.sploo')
1534.10.22 by Aaron Bentley
Got ConflictList implemented
86
        self.assertEqual(len(tree.conflicts()), 0)
1185.35.1 by Aaron Bentley
Implemented conflicts.restore
87
        self.assertFileEqual('hello world2', 'hello')
3376.2.4 by Martin Pool
Remove every assert statement from bzrlib!
88
        self.assertFalse(os.path.lexists('hello.sploo'))
1185.35.1 by Aaron Bentley
Implemented conflicts.restore
89
        self.assertRaises(NotConflicted, restore, 'hello')
90
        self.assertRaises(NotConflicted, restore, 'hello.sploo')
1534.10.4 by Aaron Bentley
Implemented conflict serialization
91
1558.12.9 by Aaron Bentley
Handle resolving conflicts with directories properly
92
    def test_resolve_conflict_dir(self):
93
        tree = self.make_branch_and_tree('.')
94
        b = tree.branch
95
        file('hello', 'w').write('hello world4')
96
        tree.add('hello', 'q')
97
        file('hello.THIS', 'w').write('hello world2')
98
        file('hello.BASE', 'w').write('hello world1')
99
        os.mkdir('hello.OTHER')
100
        l = ConflictList([TextConflict('hello')])
101
        l.remove_files(tree)
102
1551.15.58 by Aaron Bentley
Status honours selected paths for conflicts (#127606)
103
    def test_select_conflicts(self):
104
        tree = self.make_branch_and_tree('.')
105
        tree_conflicts = ConflictList([ContentsConflict('foo'),
106
                                       ContentsConflict('bar')])
107
        self.assertEqual((ConflictList([ContentsConflict('bar')]),
108
                          ConflictList([ContentsConflict('foo')])),
109
                         tree_conflicts.select_conflicts(tree, ['foo']))
110
        self.assertEqual((ConflictList(), tree_conflicts),
111
                         tree_conflicts.select_conflicts(tree, [''],
112
                         ignore_misses=True, recurse=True))
113
        tree_conflicts = ConflictList([ContentsConflict('foo/baz'),
114
                                       ContentsConflict('bar')])
115
        self.assertEqual((ConflictList([ContentsConflict('bar')]),
116
                          ConflictList([ContentsConflict('foo/baz')])),
117
                         tree_conflicts.select_conflicts(tree, ['foo'],
118
                                                         recurse=True,
119
                                                         ignore_misses=True))
120
        tree_conflicts = ConflictList([PathConflict('qux', 'foo/baz')])
121
        self.assertEqual((ConflictList(), tree_conflicts),
122
                         tree_conflicts.select_conflicts(tree, ['foo'],
123
                                                         recurse=True,
124
                                                         ignore_misses=True))
1551.15.59 by Aaron Bentley
Test that default behavior is as before
125
        self.assertEqual((tree_conflicts, ConflictList()),
126
                         tree_conflicts.select_conflicts(tree, ['foo'],
127
                                                         ignore_misses=True))
1551.15.58 by Aaron Bentley
Status honours selected paths for conflicts (#127606)
128
3017.2.1 by Aaron Bentley
Revert now resolves conflicts recursively (#102739)
129
    def test_resolve_conflicts_recursive(self):
130
        tree = self.make_branch_and_tree('.')
131
        self.build_tree(['dir/', 'dir/hello'])
132
        tree.add(['dir', 'dir/hello'])
133
        tree.set_conflicts(ConflictList([TextConflict('dir/hello')]))
134
        resolve(tree, ['dir'], recursive=False, ignore_misses=True)
135
        self.assertEqual(ConflictList([TextConflict('dir/hello')]),
136
                         tree.conflicts())
137
        resolve(tree, ['dir'], recursive=True, ignore_misses=True)
138
        self.assertEqual(ConflictList([]),
139
                         tree.conflicts())
140
1534.10.4 by Aaron Bentley
Implemented conflict serialization
141
142
class TestConflictStanzas(TestCase):
1666.1.4 by Robert Collins
* 'Metadir' is now the default disk format. This improves behaviour in
143
1534.10.4 by Aaron Bentley
Implemented conflict serialization
144
    def test_stanza_roundtrip(self):
1666.1.4 by Robert Collins
* 'Metadir' is now the default disk format. This improves behaviour in
145
        # write and read our example stanza.
1534.10.23 by Aaron Bentley
Removed conflicts_to_stanzas and stanzas_to_conflicts
146
        stanza_iter = example_conflicts.to_stanzas()
147
        processed = ConflictList.from_stanzas(stanza_iter)
2309.4.13 by John Arbash Meinel
Conflicts go through Stanza so the need to be aware of utf8 versus unicode file ids.
148
        for o, p in zip(processed, example_conflicts):
1534.10.4 by Aaron Bentley
Implemented conflict serialization
149
            self.assertEqual(o, p)
150
2309.4.13 by John Arbash Meinel
Conflicts go through Stanza so the need to be aware of utf8 versus unicode file ids.
151
            self.assertIsInstance(o.path, unicode)
152
153
            if o.file_id is not None:
154
                self.assertIsInstance(o.file_id, str)
155
2309.4.14 by John Arbash Meinel
The parameter is 'conflict_path' not 'conflict_file_path'
156
            conflict_path = getattr(o, 'conflict_path', None)
157
            if conflict_path is not None:
158
                self.assertIsInstance(conflict_path, unicode)
2309.4.13 by John Arbash Meinel
Conflicts go through Stanza so the need to be aware of utf8 versus unicode file ids.
159
160
            conflict_file_id = getattr(o, 'conflict_file_id', None)
161
            if conflict_file_id is not None:
162
                self.assertIsInstance(conflict_file_id, str)
163
1534.10.4 by Aaron Bentley
Implemented conflict serialization
164
    def test_stanzification(self):
1534.10.23 by Aaron Bentley
Removed conflicts_to_stanzas and stanzas_to_conflicts
165
        for stanza in example_conflicts.to_stanzas():
2309.4.13 by John Arbash Meinel
Conflicts go through Stanza so the need to be aware of utf8 versus unicode file ids.
166
            if 'file_id' in stanza:
167
                # In Stanza form, the file_id has to be unicode.
168
                self.assertStartsWith(stanza['file_id'], u'\xeed')
169
            self.assertStartsWith(stanza['path'], u'p\xe5th')
2309.4.14 by John Arbash Meinel
The parameter is 'conflict_path' not 'conflict_file_path'
170
            if 'conflict_path' in stanza:
171
                self.assertStartsWith(stanza['conflict_path'], u'p\xe5th')
2309.4.13 by John Arbash Meinel
Conflicts go through Stanza so the need to be aware of utf8 versus unicode file ids.
172
            if 'conflict_file_id' in stanza:
173
                self.assertStartsWith(stanza['conflict_file_id'], u'\xeed')