/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/selftest/testmerge3.py

  • Committer: Martin Pool
  • Date: 2005-07-05 07:19:12 UTC
  • Revision ID: mbp@sourcefrog.net-20050705071911-6a116ea7c5379658
- Renamed merge3 test suite for easier access.

- New merge approach based on finding triple-matching regions, and comparing
  the regions between them; add find_sync_regions() and some tests for it.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2004, 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
from bzrlib.selftest import InTempDir, TestBase
 
19
from bzrlib.merge3 import Merge3
 
20
 
 
21
class NoChanges(TestBase):
 
22
    """No conflicts because nothing changed"""
 
23
    def runTest(self):
 
24
        m3 = Merge3(['aaa', 'bbb'],
 
25
                    ['aaa', 'bbb'],
 
26
                    ['aaa', 'bbb'])
 
27
 
 
28
        self.assertEquals(m3.find_unconflicted(),
 
29
                          [(0, 2)])
 
30
 
 
31
        self.assertEquals(list(m3.find_sync_regions()),
 
32
                          [((0, 2), (0, 2), (0, 2))])
 
33
 
 
34
    
 
35
 
 
36
class NoConflicts(TestBase):
 
37
    """No conflicts because only one side changed"""
 
38
    def runTest(self):
 
39
        m3 = Merge3(['aaa', 'bbb'],
 
40
                    ['aaa', '111', 'bbb'],
 
41
                    ['aaa', 'bbb'])
 
42
 
 
43
        self.assertEquals(m3.find_unconflicted(),
 
44
                          [(0, 1), (1, 2)])
 
45
 
 
46
 
 
47
        self.assertEquals(list(m3.find_sync_regions()),
 
48
                          [((0, 1), (0, 1), (0, 1)),
 
49
                           ((1, 2), (2, 3), (1, 2))])
 
50
 
 
51
 
 
52
class InsertClash(TestBase):
 
53
    """Both try to insert lines in the same place."""
 
54
    def runTest(self):
 
55
        m3 = Merge3(['aaa', 'bbb'],
 
56
                    ['aaa', '111', 'bbb'],
 
57
                    ['aaa', '222', 'bbb'])
 
58
 
 
59
        self.assertEquals(m3.find_unconflicted(),
 
60
                          [(0, 1), (1, 2)])
 
61
 
 
62
        self.assertEquals(list(m3.find_sync_regions()),
 
63
                          [((0, 1), (0, 1), (0, 1)),
 
64
                           ((1, 2), (2, 3), (2, 3))])
 
65
 
 
66
 
 
67
 
 
68
class ReplaceClash(TestBase):
 
69
    """Both try to insert lines in the same place."""
 
70
    def runTest(self):
 
71
        m3 = Merge3(['aaa', '000', 'bbb'],
 
72
                    ['aaa', '111', 'bbb'],
 
73
                    ['aaa', '222', 'bbb'])
 
74
 
 
75
        self.assertEquals(m3.find_unconflicted(),
 
76
                          [(0, 1), (2, 3)])
 
77
 
 
78
        self.assertEquals(list(m3.find_sync_regions()),
 
79
                          [((0, 1), (0, 1), (0, 1)),
 
80
                           ((2, 3), (2, 3), (2, 3))])
 
81
 
 
82
 
 
83
 
 
84
class ReplaceMulti(TestBase):
 
85
    """Replacement with regions of different size."""
 
86
    def runTest(self):
 
87
        m3 = Merge3(['aaa', '000', '000', 'bbb'],
 
88
                    ['aaa', '111', '111', '111', 'bbb'],
 
89
                    ['aaa', '222', '222', '222', '222', 'bbb'])
 
90
 
 
91
        self.assertEquals(m3.find_unconflicted(),
 
92
                          [(0, 1), (3, 4)])
 
93
 
 
94
 
 
95
        self.assertEquals(list(m3.find_sync_regions()),
 
96
                          [((0, 1), (0, 1), (0, 1)),
 
97
                           ((3, 4), (4, 5), (5, 6))])
 
98
 
 
99
        
 
100