~bzr-pqm/bzr/bzr.dev

2851.2.1 by Martin Pool
Add revert --forget-merges
1
# Copyright (C) 2005, 2007 Canonical Ltd
1185.50.53 by John Arbash Meinel
[patch] Aaron Bentley: make revert work in a subdirectory.
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
"""Black-box tests for bzr revert."""
18
19
import os
20
1711.4.24 by John Arbash Meinel
move the revert tests out of test_too_much.py
21
import bzrlib.osutils
1185.50.53 by John Arbash Meinel
[patch] Aaron Bentley: make revert work in a subdirectory.
22
from bzrlib.tests.blackbox import ExternalBase
23
from bzrlib.trace import mutter
1551.7.9 by Aaron Bentley
Update for review comments
24
from bzrlib.workingtree import WorkingTree
1185.50.53 by John Arbash Meinel
[patch] Aaron Bentley: make revert work in a subdirectory.
25
26
27
class TestRevert(ExternalBase):
28
29
    def _prepare_tree(self):
2530.3.1 by Martin Pool
Cleanup old variations on run_bzr in the test suite
30
        self.run_bzr('init')
31
        self.run_bzr('mkdir dir')
1185.50.53 by John Arbash Meinel
[patch] Aaron Bentley: make revert work in a subdirectory.
32
33
        f = file('dir/file', 'wb')
34
        f.write('spam')
35
        f.close()
2530.3.1 by Martin Pool
Cleanup old variations on run_bzr in the test suite
36
        self.run_bzr('add dir/file')
1185.50.53 by John Arbash Meinel
[patch] Aaron Bentley: make revert work in a subdirectory.
37
2530.3.1 by Martin Pool
Cleanup old variations on run_bzr in the test suite
38
        self.run_bzr('commit -m1')
1185.50.53 by John Arbash Meinel
[patch] Aaron Bentley: make revert work in a subdirectory.
39
40
        # modify file
41
        f = file('dir/file', 'wb')
42
        f.write('eggs')
43
        f.close()
44
45
        # check status
2552.2.2 by Vincent Ladeuil
Enforce run_bzr(string) where possible.
46
        self.assertEquals('modified:\n  dir/file\n', self.run_bzr('status')[0])
1185.50.53 by John Arbash Meinel
[patch] Aaron Bentley: make revert work in a subdirectory.
47
1551.7.7 by Aaron Bentley
Handle revert DIRECTORY
48
    def _prepare_rename_mod_tree(self):
49
        self.build_tree(['a/', 'a/b', 'a/c', 'a/d/', 'a/d/e', 'f/', 'f/g', 
50
                         'f/h', 'f/i'])
51
        self.run_bzr('init')
52
        self.run_bzr('add')
2552.2.3 by Vincent Ladeuil
Deprecate the varargs syntax and fix the tests.
53
        self.run_bzr('commit -m 1')
1551.7.7 by Aaron Bentley
Handle revert DIRECTORY
54
        wt = WorkingTree.open('.')
55
        wt.rename_one('a/b', 'f/b')
1551.7.9 by Aaron Bentley
Update for review comments
56
        wt.rename_one('a/d/e', 'f/e')
1551.7.7 by Aaron Bentley
Handle revert DIRECTORY
57
        wt.rename_one('a/d', 'f/d')
58
        wt.rename_one('f/g', 'a/g')
59
        wt.rename_one('f/h', 'h')
60
        wt.rename_one('f', 'j')
61
1185.50.53 by John Arbash Meinel
[patch] Aaron Bentley: make revert work in a subdirectory.
62
    def helper(self, param=''):
63
        self._prepare_tree()
64
        # change dir
65
        # revert to default revision for file in subdir does work
66
        os.chdir('dir')
67
        mutter('cd dir\n')
68
2552.2.2 by Vincent Ladeuil
Enforce run_bzr(string) where possible.
69
        self.assertEquals('1\n', self.run_bzr('revno')[0])
2530.3.1 by Martin Pool
Cleanup old variations on run_bzr in the test suite
70
        self.run_bzr('revert %s file' % param)
1185.50.53 by John Arbash Meinel
[patch] Aaron Bentley: make revert work in a subdirectory.
71
        self.assertEquals('spam', open('file', 'rb').read())
72
73
    def test_revert_in_subdir(self):
74
        self.helper()
75
76
    def test_revert_to_revision_in_subdir(self):
77
        # test case for bug #29424:
78
        # revert to specific revision for file in subdir does not work
79
        self.helper('-r 1')
1558.4.2 by Aaron Bentley
Revert in checkout works properly
80
81
    def test_revert_in_checkout(self):
82
        os.mkdir('brach')
83
        os.chdir('brach')
84
        self._prepare_tree()
2530.3.1 by Martin Pool
Cleanup old variations on run_bzr in the test suite
85
        self.run_bzr('checkout --lightweight . ../sprach')
86
        self.run_bzr('commit -m more')
1558.4.2 by Aaron Bentley
Revert in checkout works properly
87
        os.chdir('../sprach')
2552.2.2 by Vincent Ladeuil
Enforce run_bzr(string) where possible.
88
        self.assertEqual('', self.run_bzr('status')[0])
2530.3.1 by Martin Pool
Cleanup old variations on run_bzr in the test suite
89
        self.run_bzr('revert')
2552.2.2 by Vincent Ladeuil
Enforce run_bzr(string) where possible.
90
        self.assertEqual('', self.run_bzr('status')[0])
1551.7.7 by Aaron Bentley
Handle revert DIRECTORY
91
92
    def test_revert_dirname(self):
93
        """Test that revert DIRECTORY does what's expected"""
94
        self._prepare_rename_mod_tree()
2552.2.3 by Vincent Ladeuil
Deprecate the varargs syntax and fix the tests.
95
        self.run_bzr('revert a')
1551.7.7 by Aaron Bentley
Handle revert DIRECTORY
96
        self.failUnlessExists('a/b')
97
        self.failUnlessExists('a/d')
98
        self.failIfExists('a/g')
99
        self.failUnlessExists('j')
100
        self.failUnlessExists('h')
2552.2.3 by Vincent Ladeuil
Deprecate the varargs syntax and fix the tests.
101
        self.run_bzr('revert f')
1551.7.7 by Aaron Bentley
Handle revert DIRECTORY
102
        self.failIfExists('j')
103
        self.failIfExists('h')
1551.7.9 by Aaron Bentley
Update for review comments
104
        self.failUnlessExists('a/d/e')
1551.7.8 by Aaron Bentley
Merge bzr.dev
105
2225.1.1 by Aaron Bentley
Added revert change display, with tests
106
    def test_revert_chatter(self):
107
        self._prepare_rename_mod_tree()
108
        chatter = self.run_bzr('revert')[1]
2255.7.96 by Robert Collins
Change _iter_changes interface to yield both old and new paths.
109
        self.assertEqualDiff(
110
            'R   a/g => f/g\n'
111
            'R   h => f/h\n'
112
            'R   j/ => f/\n'
113
            'R   j/b => a/b\n'
114
            'R   j/d/ => a/d/\n'
115
            'R   j/e => a/d/e\n',
116
            chatter)
117
1711.4.24 by John Arbash Meinel
move the revert tests out of test_too_much.py
118
    def test_revert(self):
119
        self.run_bzr('init')
120
121
        file('hello', 'wt').write('foo')
2552.2.3 by Vincent Ladeuil
Deprecate the varargs syntax and fix the tests.
122
        self.run_bzr('add hello')
123
        self.run_bzr('commit -m setup hello')
1711.4.24 by John Arbash Meinel
move the revert tests out of test_too_much.py
124
125
        file('goodbye', 'wt').write('baz')
2552.2.3 by Vincent Ladeuil
Deprecate the varargs syntax and fix the tests.
126
        self.run_bzr('add goodbye')
127
        self.run_bzr('commit -m setup goodbye')
1711.4.24 by John Arbash Meinel
move the revert tests out of test_too_much.py
128
129
        file('hello', 'wt').write('bar')
130
        file('goodbye', 'wt').write('qux')
2552.2.3 by Vincent Ladeuil
Deprecate the varargs syntax and fix the tests.
131
        self.run_bzr('revert hello')
1711.4.24 by John Arbash Meinel
move the revert tests out of test_too_much.py
132
        self.check_file_contents('hello', 'foo')
133
        self.check_file_contents('goodbye', 'qux')
134
        self.run_bzr('revert')
135
        self.check_file_contents('goodbye', 'baz')
136
137
        os.mkdir('revertdir')
2552.2.3 by Vincent Ladeuil
Deprecate the varargs syntax and fix the tests.
138
        self.run_bzr('add revertdir')
139
        self.run_bzr('commit -m f')
1711.4.24 by John Arbash Meinel
move the revert tests out of test_too_much.py
140
        os.rmdir('revertdir')
141
        self.run_bzr('revert')
142
143
        if bzrlib.osutils.has_symlinks():
144
            os.symlink('/unlikely/to/exist', 'symlink')
2552.2.3 by Vincent Ladeuil
Deprecate the varargs syntax and fix the tests.
145
            self.run_bzr('add symlink')
146
            self.run_bzr('commit -m f')
1711.4.24 by John Arbash Meinel
move the revert tests out of test_too_much.py
147
            os.unlink('symlink')
148
            self.run_bzr('revert')
149
            self.failUnlessExists('symlink')
150
            os.unlink('symlink')
151
            os.symlink('a-different-path', 'symlink')
152
            self.run_bzr('revert')
153
            self.assertEqual('/unlikely/to/exist',
154
                             os.readlink('symlink'))
155
        else:
156
            self.log("skipping revert symlink tests")
157
        
158
        file('hello', 'wt').write('xyz')
2552.2.3 by Vincent Ladeuil
Deprecate the varargs syntax and fix the tests.
159
        self.run_bzr('commit -m xyz hello')
160
        self.run_bzr('revert -r 1 hello')
1711.4.24 by John Arbash Meinel
move the revert tests out of test_too_much.py
161
        self.check_file_contents('hello', 'foo')
2552.2.3 by Vincent Ladeuil
Deprecate the varargs syntax and fix the tests.
162
        self.run_bzr('revert hello')
1711.4.24 by John Arbash Meinel
move the revert tests out of test_too_much.py
163
        self.check_file_contents('hello', 'xyz')
164
        os.chdir('revertdir')
165
        self.run_bzr('revert')
166
        os.chdir('..')
2255.2.231 by Robert Collins
Add test showing reverts UI working as Aaron intended it to.
167
168
    def test_revert_newly_added(self):
169
        # this tests the UI reports reverting a newly added file
170
        # correct (such files are not deleted)
171
        tree = self.make_branch_and_tree('.')
172
        self.build_tree(['file'])
173
        tree.add(['file'])
174
        out, err = self.run_bzr('revert')
175
        self.assertEqual('', out)
176
        self.assertEqual('-   file\n', err)
177
178
    def test_revert_removing_file(self):
179
        # this tests the UI reports reverting a file which has been committed
180
        # to a revision that did not have it, reports it as being deleted.
181
        tree = self.make_branch_and_tree('.')
182
        tree.commit('empty commit')
183
        self.build_tree(['file'])
184
        tree.add(['file'])
185
        tree.commit('add file')
2552.2.3 by Vincent Ladeuil
Deprecate the varargs syntax and fix the tests.
186
        out, err = self.run_bzr('revert -r -2')
2255.2.231 by Robert Collins
Add test showing reverts UI working as Aaron intended it to.
187
        self.assertEqual('', out)
188
        self.assertEqual('-D  file\n', err)
2851.2.1 by Martin Pool
Add revert --forget-merges
189
190
    def test_revert_forget_merges(self):
191
        # revert --forget-merges removes any pending merges into the tree, but
192
        # leaves the files unchanged
193
        tree = self.make_branch_and_tree('.')
194
        # forget-merges before first commit, though pointless, does not fail
195
        self.run_bzr(['revert', '--forget-merges'])
196
        self.build_tree(['file'])
197
        first_rev_id = tree.commit('initial commit')
198
        self.build_tree_contents([('file', 'new content')])
199
        existing_parents = tree.get_parent_ids()
200
        self.assertEquals([first_rev_id], existing_parents)
201
        merged_parents = existing_parents + ['merged-in-rev']
202
        tree.set_parent_ids(merged_parents)
203
        self.assertEquals(merged_parents, tree.get_parent_ids())
204
        self.run_bzr(['revert', '--forget-merges'])
205
        self.assertEquals([first_rev_id], tree.get_parent_ids())
206
        # changed files are not reverted
207
        self.assertFileEqual('new content', 'file')
208
        # you can give it the path of a tree
209
        self.run_bzr(['revert', '--forget-merges', tree.abspath('.')])