~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/selftest/testmerge3.py

  • Committer: Martin Pool
  • Date: 2005-05-10 07:06:05 UTC
  • Revision ID: mbp@sourcefrog.net-20050510070605-0a2453ae5db6fc3c
- new command 'bzr added'

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
 
 
22
 
 
23
 
 
24
 
 
25
 
class NoChanges(TestBase):
26
 
    """No conflicts because nothing changed"""
27
 
    def runTest(self):
28
 
        m3 = Merge3(['aaa', 'bbb'],
29
 
                    ['aaa', 'bbb'],
30
 
                    ['aaa', 'bbb'])
31
 
 
32
 
        self.assertEquals(m3.find_unconflicted(),
33
 
                          [(0, 2)])
34
 
 
35
 
        self.assertEquals(list(m3.find_sync_regions()),
36
 
                          [(0, 2,
37
 
                            0, 2,
38
 
                            0, 2),
39
 
                           (2,2, 2,2, 2,2)])
40
 
 
41
 
        self.assertEquals(list(m3.merge_regions()),
42
 
                          [('unchanged', 0, 2)])
43
 
 
44
 
        self.assertEquals(list(m3.merge_groups()),
45
 
                          [('unchanged', ['aaa', 'bbb'])])
46
 
 
47
 
 
48
 
class FrontInsert(TestBase):
49
 
    def runTest(self):
50
 
        m3 = Merge3(['zz'],
51
 
                    ['aaa', 'bbb', 'zz'],
52
 
                    ['zz'])
53
 
 
54
 
        # todo: should use a sentinal at end as from get_matching_blocks
55
 
        # to match without zz
56
 
        self.assertEquals(list(m3.find_sync_regions()),
57
 
                          [(0,1, 2,3, 0,1),
58
 
                           (1,1, 3,3, 1,1),])
59
 
 
60
 
        self.assertEquals(list(m3.merge_regions()),
61
 
                          [('a', 0, 2),
62
 
                           ('unchanged', 0, 1)])
63
 
 
64
 
        self.assertEquals(list(m3.merge_groups()),
65
 
                          [('a', ['aaa', 'bbb']),
66
 
                           ('unchanged', ['zz'])])
67
 
        
68
 
    
69
 
 
70
 
class NullInsert(TestBase):
71
 
    def runTest(self):
72
 
        m3 = Merge3([],
73
 
                    ['aaa', 'bbb'],
74
 
                    [])
75
 
 
76
 
        # todo: should use a sentinal at end as from get_matching_blocks
77
 
        # to match without zz
78
 
        self.assertEquals(list(m3.find_sync_regions()),
79
 
                          [(0,0, 2,2, 0,0)])
80
 
 
81
 
        self.assertEquals(list(m3.merge_regions()),
82
 
                          [('a', 0, 2)])
83
 
 
84
 
        self.assertEquals(list(m3.merge_lines()),
85
 
                          ['aaa', 'bbb'])
86
 
        
87
 
    
88
 
 
89
 
class NoConflicts(TestBase):
90
 
    """No conflicts because only one side changed"""
91
 
    def runTest(self):
92
 
        m3 = Merge3(['aaa', 'bbb'],
93
 
                    ['aaa', '111', 'bbb'],
94
 
                    ['aaa', 'bbb'])
95
 
 
96
 
        self.assertEquals(m3.find_unconflicted(),
97
 
                          [(0, 1), (1, 2)])
98
 
 
99
 
        self.assertEquals(list(m3.find_sync_regions()),
100
 
                          [(0,1, 0,1, 0,1),
101
 
                           (1,2, 2,3, 1,2),
102
 
                           (2,2, 3,3, 2,2),])
103
 
 
104
 
        self.assertEquals(list(m3.merge_regions()),
105
 
                          [('unchanged', 0, 1),
106
 
                           ('a', 1, 2),
107
 
                           ('unchanged', 1, 2),])
108
 
 
109
 
 
110
 
 
111
 
class AppendA(TestBase):
112
 
    def runTest(self):
113
 
        m3 = Merge3(['aaa\n', 'bbb\n'],
114
 
                    ['aaa\n', 'bbb\n', '222\n'],
115
 
                    ['aaa\n', 'bbb\n'])
116
 
 
117
 
        self.assertEquals(''.join(m3.merge_lines()),
118
 
                          'aaa\nbbb\n222\n')
119
 
 
120
 
class AppendB(TestBase):
121
 
    def runTest(self):
122
 
        m3 = Merge3(['aaa\n', 'bbb\n'],
123
 
                    ['aaa\n', 'bbb\n'],
124
 
                    ['aaa\n', 'bbb\n', '222\n'])
125
 
 
126
 
        self.assertEquals(''.join(m3.merge_lines()),
127
 
                          'aaa\nbbb\n222\n')
128
 
 
129
 
class AppendAgreement(TestBase):
130
 
    def runTest(self):
131
 
        m3 = Merge3(['aaa\n', 'bbb\n'],
132
 
                    ['aaa\n', 'bbb\n', '222\n'],
133
 
                    ['aaa\n', 'bbb\n', '222\n'])
134
 
 
135
 
        self.assertEquals(''.join(m3.merge_lines()),
136
 
                          'aaa\nbbb\n222\n')
137
 
 
138
 
class AppendClash(TestBase):
139
 
    def runTest(self):
140
 
        m3 = Merge3(['aaa\n', 'bbb\n'],
141
 
                    ['aaa\n', 'bbb\n', '222\n'],
142
 
                    ['aaa\n', 'bbb\n', '333\n'])
143
 
 
144
 
        ml = m3.merge_lines(name_a='a',
145
 
                            name_b='b',
146
 
                            start_marker='<<',
147
 
                            mid_marker='--',
148
 
                            end_marker='>>')
149
 
        self.assertEquals(''.join(ml),
150
 
'''\
151
 
aaa
152
 
bbb
153
 
<< a
154
 
222
155
 
--
156
 
333
157
 
>> b
158
 
''')
159
 
 
160
 
 
161
 
class InsertAgreement(TestBase):
162
 
    def runTest(self):
163
 
        m3 = Merge3(['aaa\n', 'bbb\n'],
164
 
                    ['aaa\n', '222\n', 'bbb\n'],
165
 
                    ['aaa\n', '222\n', 'bbb\n'])
166
 
 
167
 
        ml = m3.merge_lines(name_a='a',
168
 
                            name_b='b',
169
 
                            start_marker='<<',
170
 
                            mid_marker='--',
171
 
                            end_marker='>>')
172
 
        self.assertEquals(''.join(m3.merge_lines()),
173
 
                          'aaa\n222\nbbb\n')
174
 
 
175
 
 
176
 
 
177
 
 
178
 
class InsertClash(TestBase):
179
 
    """Both try to insert lines in the same place."""
180
 
    def runTest(self):
181
 
        m3 = Merge3(['aaa\n', 'bbb\n'],
182
 
                    ['aaa\n', '111\n', 'bbb\n'],
183
 
                    ['aaa\n', '222\n', 'bbb\n'])
184
 
 
185
 
        self.assertEquals(m3.find_unconflicted(),
186
 
                          [(0, 1), (1, 2)])
187
 
 
188
 
        self.assertEquals(list(m3.find_sync_regions()),
189
 
                          [(0,1, 0,1, 0,1),
190
 
                           (1,2, 2,3, 2,3),
191
 
                           (2,2, 3,3, 3,3),])
192
 
 
193
 
        self.assertEquals(list(m3.merge_regions()),
194
 
                          [('unchanged', 0,1),
195
 
                           ('conflict', 1,1, 1,2, 1,2),
196
 
                           ('unchanged', 1,2)])
197
 
 
198
 
        self.assertEquals(list(m3.merge_groups()),
199
 
                          [('unchanged', ['aaa\n']),
200
 
                           ('conflict', [], ['111\n'], ['222\n']),
201
 
                           ('unchanged', ['bbb\n']),
202
 
                           ])
203
 
 
204
 
        ml = m3.merge_lines(name_a='a',
205
 
                            name_b='b',
206
 
                            start_marker='<<',
207
 
                            mid_marker='--',
208
 
                            end_marker='>>')
209
 
        self.assertEquals(''.join(ml),
210
 
'''aaa
211
 
<< a
212
 
111
213
 
--
214
 
222
215
 
>> b
216
 
bbb
217
 
''')
218
 
 
219
 
 
220
 
 
221
 
class ReplaceClash(TestBase):
222
 
    """Both try to insert lines in the same place."""
223
 
    def runTest(self):
224
 
        m3 = Merge3(['aaa', '000', 'bbb'],
225
 
                    ['aaa', '111', 'bbb'],
226
 
                    ['aaa', '222', 'bbb'])
227
 
 
228
 
        self.assertEquals(m3.find_unconflicted(),
229
 
                          [(0, 1), (2, 3)])
230
 
 
231
 
        self.assertEquals(list(m3.find_sync_regions()),
232
 
                          [(0,1, 0,1, 0,1),
233
 
                           (2,3, 2,3, 2,3),
234
 
                           (3,3, 3,3, 3,3),])
235
 
 
236
 
 
237
 
 
238
 
class ReplaceMulti(TestBase):
239
 
    """Replacement with regions of different size."""
240
 
    def runTest(self):
241
 
        m3 = Merge3(['aaa', '000', '000', 'bbb'],
242
 
                    ['aaa', '111', '111', '111', 'bbb'],
243
 
                    ['aaa', '222', '222', '222', '222', 'bbb'])
244
 
 
245
 
        self.assertEquals(m3.find_unconflicted(),
246
 
                          [(0, 1), (3, 4)])
247
 
 
248
 
 
249
 
        self.assertEquals(list(m3.find_sync_regions()),
250
 
                          [(0,1, 0,1, 0,1),
251
 
                           (3,4, 4,5, 5,6),
252
 
                           (4,4, 5,5, 6,6),])
253
 
 
254
 
        
255
 
        
256
 
 
257
 
 
258
 
 
259
 
 
260
 
def split_lines(t):
261
 
    from cStringIO import StringIO
262
 
    return StringIO(t).readlines()
263
 
 
264
 
 
265
 
 
266
 
############################################################
267
 
# test case from the gnu diffutils manual
268
 
 
269
 
# common base
270
 
TZU = split_lines("""     The Nameless is the origin of Heaven and Earth;
271
 
     The named is the mother of all things.
272
 
     
273
 
     Therefore let there always be non-being,
274
 
       so we may see their subtlety,
275
 
     And let there always be being,
276
 
       so we may see their outcome.
277
 
     The two are the same,
278
 
     But after they are produced,
279
 
       they have different names.
280
 
     They both may be called deep and profound.
281
 
     Deeper and more profound,
282
 
     The door of all subtleties!
283
 
""")
284
 
 
285
 
LAO = split_lines("""     The Way that can be told of is not the eternal Way;
286
 
     The name that can be named is not the eternal name.
287
 
     The Nameless is the origin of Heaven and Earth;
288
 
     The Named is the mother of all things.
289
 
     Therefore let there always be non-being,
290
 
       so we may see their subtlety,
291
 
     And let there always be being,
292
 
       so we may see their outcome.
293
 
     The two are the same,
294
 
     But after they are produced,
295
 
       they have different names.
296
 
""")
297
 
 
298
 
 
299
 
TAO = split_lines("""     The Way that can be told of is not the eternal Way;
300
 
     The name that can be named is not the eternal name.
301
 
     The Nameless is the origin of Heaven and Earth;
302
 
     The named is the mother of all things.
303
 
     
304
 
     Therefore let there always be non-being,
305
 
       so we may see their subtlety,
306
 
     And let there always be being,
307
 
       so we may see their result.
308
 
     The two are the same,
309
 
     But after they are produced,
310
 
       they have different names.
311
 
     
312
 
       -- The Way of Lao-Tzu, tr. Wing-tsit Chan
313
 
 
314
 
""")
315
 
 
316
 
MERGED_RESULT = split_lines("""     The Way that can be told of is not the eternal Way;
317
 
     The name that can be named is not the eternal name.
318
 
     The Nameless is the origin of Heaven and Earth;
319
 
     The Named is the mother of all things.
320
 
     Therefore let there always be non-being,
321
 
       so we may see their subtlety,
322
 
     And let there always be being,
323
 
       so we may see their result.
324
 
     The two are the same,
325
 
     But after they are produced,
326
 
       they have different names.
327
 
<<<<<<<< LAO
328
 
========
329
 
     
330
 
       -- The Way of Lao-Tzu, tr. Wing-tsit Chan
331
 
 
332
 
>>>>>>>> TAO
333
 
""")
334
 
 
335
 
 
336
 
 
337
 
class MergePoem(TestBase):
338
 
    """Test case from diff3 manual"""
339
 
    def runTest(self):
340
 
        m3 = Merge3(TZU, LAO, TAO)
341
 
        ml = list(m3.merge_lines('LAO', 'TAO'))
342
 
        self.log('merge result:')
343
 
        self.log(''.join(ml))
344
 
        self.assertEquals(ml, MERGED_RESULT)
345
 
 
346
 
 
347
 
 
348
 
TEST_CLASSES = [
349
 
    NoChanges,
350
 
    FrontInsert,
351
 
    NullInsert,
352
 
    NoConflicts,
353
 
    AppendA,
354
 
    AppendB,
355
 
    AppendAgreement,
356
 
    AppendClash,
357
 
    InsertAgreement,
358
 
    InsertClash,
359
 
    ReplaceClash,
360
 
    ReplaceMulti,
361
 
    MergePoem,
362
 
    ]