~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/selftest/test_conflicts.py

  • Committer: Robert Collins
  • Date: 2005-10-06 22:15:52 UTC
  • mfrom: (1185.13.2)
  • mto: This revision was merged to the branch mainline in revision 1420.
  • Revision ID: robertc@robertcollins.net-20051006221552-9b15c96fa504e0ad
mergeĀ fromĀ upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005 Canonical Ltd
2
 
#
 
1
# Copyright (C) 2005 by Canonical Ltd
 
2
 
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
5
5
# the Free Software Foundation; either version 2 of the License, or
6
6
# (at your option) any later version.
7
 
#
 
7
 
8
8
# This program is distributed in the hope that it will be useful,
9
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11
11
# GNU General Public License for more details.
12
 
#
 
12
 
13
13
# You should have received a copy of the GNU General Public License
14
14
# along with this program; if not, write to the Free Software
15
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
17
 
18
18
import os
19
19
 
20
 
from bzrlib import bzrdir
21
 
from bzrlib.tests import TestCaseWithTransport, TestCase
 
20
from bzrlib.selftest import TestCaseInTempDir
22
21
from bzrlib.branch import Branch
23
 
from bzrlib.conflicts import (MissingParent, ContentsConflict, TextConflict,
24
 
        PathConflict, DuplicateID, DuplicateEntry, ParentLoop, UnversionedParent,
25
 
        ConflictList, 
26
 
        restore)
27
 
from bzrlib.errors import NotConflicted
 
22
from bzrlib.commit import Commit
28
23
 
29
24
 
30
25
# TODO: Test commit with some added, and added-but-missing files
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):
 
26
 
 
27
class TestConflicts(TestCaseInTempDir):
49
28
 
50
29
    def test_conflicts(self):
51
30
        """Conflicts are detected properly"""
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')
 
31
        b = Branch.initialize('.')
 
32
        file('hello', 'w').write('hello world')
 
33
        file('hello.BASE', 'w').write('hello world')
59
34
        file('hello.sploo.BASE', 'w').write('yellow world')
60
 
        file('hello.sploo.OTHER', 'w').write('yellow world2')
61
 
        tree.lock_read()
62
 
        self.assertEqual(len(list(tree.list_files())), 6)
63
 
        tree.unlock()
64
 
        conflicts = tree.conflicts()
 
35
        tree = b.working_tree()
 
36
        self.assertEqual(len(list(tree.list_files())), 3)
 
37
        conflicts = list(tree.iter_conflicts())
65
38
        self.assertEqual(len(conflicts), 2)
66
 
        self.assert_('hello' in conflicts[0].path)
67
 
        self.assert_('hello.sploo' in conflicts[1].path)
68
 
        restore('hello')
69
 
        restore('hello.sploo')
70
 
        self.assertEqual(len(tree.conflicts()), 0)
71
 
        self.assertFileEqual('hello world2', 'hello')
72
 
        assert not os.path.lexists('hello.sploo')
73
 
        self.assertRaises(NotConflicted, restore, 'hello')
74
 
        self.assertRaises(NotConflicted, restore, 'hello.sploo')
75
 
 
76
 
    def test_resolve_conflict_dir(self):
77
 
        tree = self.make_branch_and_tree('.')
78
 
        b = tree.branch
79
 
        file('hello', 'w').write('hello world4')
80
 
        tree.add('hello', 'q')
81
 
        file('hello.THIS', 'w').write('hello world2')
82
 
        file('hello.BASE', 'w').write('hello world1')
83
 
        os.mkdir('hello.OTHER')
84
 
        l = ConflictList([TextConflict('hello')])
85
 
        l.remove_files(tree)
86
 
 
87
 
 
88
 
class TestConflictStanzas(TestCase):
89
 
 
90
 
    def test_stanza_roundtrip(self):
91
 
        # write and read our example stanza.
92
 
        stanza_iter = example_conflicts.to_stanzas()
93
 
        processed = ConflictList.from_stanzas(stanza_iter)
94
 
        for o,p in zip(processed, example_conflicts):
95
 
            self.assertEqual(o, p)
96
 
 
97
 
    def test_stanzification(self):
98
 
        for stanza in example_conflicts.to_stanzas():
99
 
            try:
100
 
                self.assertStartsWith(stanza['file_id'], 'id')
101
 
            except KeyError:
102
 
                pass
103
 
            self.assertStartsWith(stanza['path'], 'path')
104
 
            try:
105
 
                self.assertStartsWith(stanza['conflict_file_id'], 'id')
106
 
                self.assertStartsWith(stanza['conflict_file_path'], 'path')
107
 
            except KeyError:
108
 
                pass
 
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