~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/blackbox/test_remerge.py

  • Committer: Martin Pool
  • Date: 2005-06-27 08:10:16 UTC
  • mto: This revision was merged to the branch mainline in revision 852.
  • Revision ID: mbp@sourcefrog.net-20050627081016-cf275d976aa66f82
Check that version numbers passed in are reasonable

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2006, 2007, 2009-2012 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16
 
 
17
 
 
18
 
import os
19
 
 
20
 
from bzrlib.tests import TestCaseWithTransport
21
 
from bzrlib.workingtree import WorkingTree
22
 
 
23
 
 
24
 
class TestRemerge(TestCaseWithTransport):
25
 
 
26
 
    def make_file(self, name, contents):
27
 
        with open(name, 'wb') as f:
28
 
            f.write(contents)
29
 
 
30
 
    def create_conflicts(self):
31
 
        """Create a conflicted tree"""
32
 
        os.mkdir('base')
33
 
        self.make_file('base/hello', "hi world")
34
 
        self.make_file('base/answer', "42")
35
 
        self.run_bzr('init', working_dir='base')
36
 
        self.run_bzr('add', working_dir='base')
37
 
        self.run_bzr('commit -m base', working_dir='base')
38
 
        self.run_bzr('branch base other')
39
 
        self.run_bzr('branch base this')
40
 
        self.make_file('other/hello', "Hello.")
41
 
        self.make_file('other/answer', "Is anyone there?")
42
 
        self.run_bzr('commit -m other', working_dir='other')
43
 
        self.make_file('this/hello', "Hello, world")
44
 
        self.run_bzr('mv answer question', working_dir='this')
45
 
        self.make_file('this/question',
46
 
                       "What do you get when you multiply sixtimes nine?")
47
 
        self.run_bzr('commit -m this', working_dir='this')
48
 
 
49
 
    def test_remerge(self):
50
 
        """Remerge command works as expected"""
51
 
        self.create_conflicts()
52
 
        self.run_bzr('merge ../other --show-base',
53
 
                     retcode=1, working_dir='this')
54
 
        conflict_text = open('this/hello').read()
55
 
        self.assertTrue('|||||||' in conflict_text)
56
 
        self.assertTrue('hi world' in conflict_text)
57
 
 
58
 
        self.run_bzr_error(['conflicts encountered'], 'remerge',
59
 
                           retcode=1, working_dir='this')
60
 
        with open('this/hello') as f:
61
 
            conflict_text = f.read()
62
 
        self.assertFalse('|||||||' in conflict_text)
63
 
        self.assertFalse('hi world' in conflict_text)
64
 
 
65
 
        os.unlink('this/hello.OTHER')
66
 
        os.unlink('this/question.OTHER')
67
 
 
68
 
        self.run_bzr_error(['jello is not versioned'],
69
 
                     'remerge jello --merge-type weave', working_dir='this')
70
 
        self.run_bzr_error(['conflicts encountered'],
71
 
                           'remerge hello --merge-type weave',
72
 
                           retcode=1, working_dir='this')
73
 
 
74
 
        self.assertPathExists('this/hello.OTHER')
75
 
        self.assertPathDoesNotExist('this/question.OTHER')
76
 
 
77
 
        file_id = self.run_bzr('file-id hello', working_dir='this')[0]
78
 
        self.run_bzr_error(['hello.THIS is not versioned'],
79
 
                           'file-id hello.THIS', working_dir='this')
80
 
 
81
 
        self.run_bzr_error(['conflicts encountered'],
82
 
                           'remerge --merge-type weave',
83
 
                           retcode=1, working_dir='this')
84
 
 
85
 
        self.assertPathExists('this/hello.OTHER')
86
 
        self.assertTrue('this/hello.BASE')
87
 
        with open('this/hello') as f:
88
 
            conflict_text = f.read()
89
 
        self.assertFalse('|||||||' in conflict_text)
90
 
        self.assertFalse('hi world' in conflict_text)
91
 
 
92
 
        self.run_bzr_error(['Showing base is not supported.*Weave'],
93
 
                           'remerge . --merge-type weave --show-base',
94
 
                           working_dir='this')
95
 
        self.run_bzr_error(["Can't reprocess and show base"],
96
 
                           'remerge . --show-base --reprocess',
97
 
                           working_dir='this')
98
 
        self.run_bzr_error(['conflicts encountered'],
99
 
                           'remerge . --merge-type weave --reprocess',
100
 
                           retcode=1, working_dir='this')
101
 
        self.run_bzr_error(['conflicts encountered'],
102
 
                           'remerge hello --show-base',
103
 
                           retcode=1, working_dir='this')
104
 
        self.run_bzr_error(['conflicts encountered'],
105
 
                           'remerge hello --reprocess',
106
 
                           retcode=1, working_dir='this')
107
 
 
108
 
        self.run_bzr('resolve --all', working_dir='this')
109
 
        self.run_bzr('commit -m done', working_dir='this')
110
 
 
111
 
        self.run_bzr_error(['remerge only works after normal merges',
112
 
                            'Not cherrypicking or multi-merges'],
113
 
                           'remerge', working_dir='this')
114
 
 
115
 
    def test_conflicts(self):
116
 
        self.create_conflicts()
117
 
        self.run_bzr('merge ../other', retcode=1, working_dir='this')
118
 
        wt = WorkingTree.open('this')
119
 
        self.assertEqual(2, len(wt.conflicts()))
120
 
        self.run_bzr('remerge', retcode=1, working_dir='this')
121
 
        wt = WorkingTree.open('this')
122
 
        self.assertEqual(2, len(wt.conflicts()))
123
 
        self.run_bzr('remerge hello', retcode=1, working_dir='this')
124
 
        wt = WorkingTree.open('this')
125
 
        self.assertEqual(2, len(wt.conflicts()))