1185.14.8
by Aaron Bentley
Added test_commit.py |
1 |
# Copyright (C) 2005 by Canonical Ltd
|
2 |
||
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.
|
|
7 |
||
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.
|
|
12 |
||
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
|
|
15 |
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
16 |
||
17 |
||
18 |
import os |
|
19 |
||
1534.4.26
by Robert Collins
Move working tree initialisation out from Branch.initialize, deprecated Branch.initialize to Branch.create. |
20 |
from bzrlib.tests import TestCaseWithTransport |
1185.14.8
by Aaron Bentley
Added test_commit.py |
21 |
from bzrlib.branch import Branch |
1185.35.1
by Aaron Bentley
Implemented conflicts.restore |
22 |
from bzrlib.conflicts import restore |
23 |
from bzrlib.errors import NotConflicted |
|
1185.14.8
by Aaron Bentley
Added test_commit.py |
24 |
|
25 |
# 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. |
26 |
# RBC 20060124 is that not tested in test_commit.py ?
|
1185.14.8
by Aaron Bentley
Added test_commit.py |
27 |
|
1534.4.26
by Robert Collins
Move working tree initialisation out from Branch.initialize, deprecated Branch.initialize to Branch.create. |
28 |
class TestConflicts(TestCaseWithTransport): |
1185.14.8
by Aaron Bentley
Added test_commit.py |
29 |
|
30 |
def test_conflicts(self): |
|
31 |
"""Conflicts are detected properly"""
|
|
1534.4.26
by Robert Collins
Move working tree initialisation out from Branch.initialize, deprecated Branch.initialize to Branch.create. |
32 |
tree = self.make_branch_and_tree('.') |
33 |
b = tree.branch |
|
1185.35.1
by Aaron Bentley
Implemented conflicts.restore |
34 |
file('hello', 'w').write('hello world4') |
35 |
file('hello.THIS', 'w').write('hello world2') |
|
36 |
file('hello.BASE', 'w').write('hello world1') |
|
37 |
file('hello.OTHER', 'w').write('hello world3') |
|
1185.14.8
by Aaron Bentley
Added test_commit.py |
38 |
file('hello.sploo.BASE', 'w').write('yellow world') |
1185.35.1
by Aaron Bentley
Implemented conflicts.restore |
39 |
file('hello.sploo.OTHER', 'w').write('yellow world2') |
40 |
self.assertEqual(len(list(tree.list_files())), 6) |
|
1185.14.8
by Aaron Bentley
Added test_commit.py |
41 |
conflicts = list(tree.iter_conflicts()) |
42 |
self.assertEqual(len(conflicts), 2) |
|
1185.16.145
by Martin Pool
Remove all assert statements from test cases. |
43 |
self.assert_('hello' in conflicts) |
44 |
self.assert_('hello.sploo' in conflicts) |
|
1185.35.1
by Aaron Bentley
Implemented conflicts.restore |
45 |
restore('hello') |
46 |
restore('hello.sploo') |
|
1185.14.8
by Aaron Bentley
Added test_commit.py |
47 |
self.assertEqual(len(list(tree.iter_conflicts())), 0) |
1185.35.1
by Aaron Bentley
Implemented conflicts.restore |
48 |
self.assertFileEqual('hello world2', 'hello') |
49 |
assert not os.path.lexists('hello.sploo') |
|
50 |
self.assertRaises(NotConflicted, restore, 'hello') |
|
51 |
self.assertRaises(NotConflicted, restore, 'hello.sploo') |