~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_conflicts.py

  • Committer: Martin Pool
  • Date: 2005-04-26 05:51:17 UTC
  • Revision ID: mbp@sourcefrog.net-20050426055116-e4bede04e549e4f6
- update doc upload scripts

Show diffs side-by-side

added added

removed removed

Lines of Context:
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
 
 
20
 
from bzrlib.tests import TestCaseInTempDir
21
 
from bzrlib.branch import Branch
22
 
from bzrlib.commit import Commit
23
 
from bzrlib.conflicts import restore
24
 
from bzrlib.errors import NotConflicted
25
 
 
26
 
# TODO: Test commit with some added, and added-but-missing files
27
 
 
28
 
class TestConflicts(TestCaseInTempDir):
29
 
 
30
 
    def test_conflicts(self):
31
 
        """Conflicts are detected properly"""
32
 
        b = Branch.initialize(u'.')
33
 
        file('hello', 'w').write('hello world4')
34
 
        file('hello.THIS', 'w').write('hello world2')
35
 
        file('hello.BASE', 'w').write('hello world1')
36
 
        file('hello.OTHER', 'w').write('hello world3')
37
 
        file('hello.sploo.BASE', 'w').write('yellow world')
38
 
        file('hello.sploo.OTHER', 'w').write('yellow world2')
39
 
        tree = b.working_tree()
40
 
        self.assertEqual(len(list(tree.list_files())), 6)
41
 
        conflicts = list(tree.iter_conflicts())
42
 
        self.assertEqual(len(conflicts), 2)
43
 
        self.assert_('hello' in conflicts)
44
 
        self.assert_('hello.sploo' in conflicts)
45
 
        restore('hello')
46
 
        restore('hello.sploo')
47
 
        self.assertEqual(len(list(tree.iter_conflicts())), 0)
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')