~bzr-pqm/bzr/bzr.dev

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.10.4 by Aaron Bentley
Implemented conflict serialization
20
from bzrlib.tests import TestCaseWithTransport, TestCase
1185.14.8 by Aaron Bentley
Added test_commit.py
21
from bzrlib.branch import Branch
1534.10.19 by Aaron Bentley
Stanza conversion, cooking
22
from bzrlib.conflicts import *
1185.35.1 by Aaron Bentley
Implemented conflicts.restore
23
from bzrlib.errors import NotConflicted
1185.14.8 by Aaron Bentley
Added test_commit.py
24
1534.10.4 by Aaron Bentley
Implemented conflict serialization
25
1185.14.8 by Aaron Bentley
Added test_commit.py
26
# 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.
27
# RBC 20060124 is that not tested in test_commit.py ?
1185.14.8 by Aaron Bentley
Added test_commit.py
28
1666.1.4 by Robert Collins
* 'Metadir' is now the default disk format. This improves behaviour in
29
# The order of 'path' here is important - do not let it
30
# be a sorted list.
1534.10.22 by Aaron Bentley
Got ConflictList implemented
31
example_conflicts = ConflictList([ 
1666.1.4 by Robert Collins
* 'Metadir' is now the default disk format. This improves behaviour in
32
    MissingParent('Not deleting', 'pathg', 'idg'),
1534.10.19 by Aaron Bentley
Stanza conversion, cooking
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'),
1534.10.22 by Aaron Bentley
Got ConflictList implemented
41
])
1534.10.4 by Aaron Bentley
Implemented conflict serialization
42
43
1534.4.26 by Robert Collins
Move working tree initialisation out from Branch.initialize, deprecated Branch.initialize to Branch.create.
44
class TestConflicts(TestCaseWithTransport):
1185.14.8 by Aaron Bentley
Added test_commit.py
45
46
    def test_conflicts(self):
47
        """Conflicts are detected properly"""
1666.1.4 by Robert Collins
* 'Metadir' is now the default disk format. This improves behaviour in
48
        tree = self.make_branch_and_tree('.',
49
            format=bzrlib.bzrdir.BzrDirFormat6())
1534.4.26 by Robert Collins
Move working tree initialisation out from Branch.initialize, deprecated Branch.initialize to Branch.create.
50
        b = tree.branch
1185.35.1 by Aaron Bentley
Implemented conflicts.restore
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')
1185.14.8 by Aaron Bentley
Added test_commit.py
55
        file('hello.sploo.BASE', 'w').write('yellow world')
1185.35.1 by Aaron Bentley
Implemented conflicts.restore
56
        file('hello.sploo.OTHER', 'w').write('yellow world2')
57
        self.assertEqual(len(list(tree.list_files())), 6)
1534.10.22 by Aaron Bentley
Got ConflictList implemented
58
        conflicts = tree.conflicts()
1185.14.8 by Aaron Bentley
Added test_commit.py
59
        self.assertEqual(len(conflicts), 2)
1534.10.20 by Aaron Bentley
Got all tests passing
60
        self.assert_('hello' in conflicts[0].path)
61
        self.assert_('hello.sploo' in conflicts[1].path)
1185.35.1 by Aaron Bentley
Implemented conflicts.restore
62
        restore('hello')
63
        restore('hello.sploo')
1534.10.22 by Aaron Bentley
Got ConflictList implemented
64
        self.assertEqual(len(tree.conflicts()), 0)
1185.35.1 by Aaron Bentley
Implemented conflicts.restore
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')
1534.10.4 by Aaron Bentley
Implemented conflict serialization
69
1558.12.9 by Aaron Bentley
Handle resolving conflicts with directories properly
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
1534.10.4 by Aaron Bentley
Implemented conflict serialization
81
82
class TestConflictStanzas(TestCase):
1666.1.4 by Robert Collins
* 'Metadir' is now the default disk format. This improves behaviour in
83
1534.10.4 by Aaron Bentley
Implemented conflict serialization
84
    def test_stanza_roundtrip(self):
1666.1.4 by Robert Collins
* 'Metadir' is now the default disk format. This improves behaviour in
85
        # write and read our example stanza.
1534.10.23 by Aaron Bentley
Removed conflicts_to_stanzas and stanzas_to_conflicts
86
        stanza_iter = example_conflicts.to_stanzas()
87
        processed = ConflictList.from_stanzas(stanza_iter)
1534.10.4 by Aaron Bentley
Implemented conflict serialization
88
        for o,p in zip(processed, example_conflicts):
89
            self.assertEqual(o, p)
90
91
    def test_stanzification(self):
1534.10.23 by Aaron Bentley
Removed conflicts_to_stanzas and stanzas_to_conflicts
92
        for stanza in example_conflicts.to_stanzas():
1534.10.4 by Aaron Bentley
Implemented conflict serialization
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