~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

Deprecate compare_trees and move its body to InterTree.changes_from.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
"""Black-box tests for bzr revert."""
 
18
 
 
19
import os
 
20
 
 
21
import bzrlib.osutils
 
22
from bzrlib.tests.blackbox import ExternalBase
 
23
from bzrlib.trace import mutter
 
24
from bzrlib.workingtree import WorkingTree
 
25
 
 
26
 
 
27
class TestRevert(ExternalBase):
 
28
 
 
29
    def _prepare_tree(self):
 
30
        self.runbzr('init')
 
31
        self.runbzr('mkdir dir')
 
32
 
 
33
        f = file('dir/file', 'wb')
 
34
        f.write('spam')
 
35
        f.close()
 
36
        self.runbzr('add dir/file')
 
37
 
 
38
        self.runbzr('commit -m1')
 
39
 
 
40
        # modify file
 
41
        f = file('dir/file', 'wb')
 
42
        f.write('eggs')
 
43
        f.close()
 
44
 
 
45
        # check status
 
46
        self.assertEquals('modified:\n  dir/file\n', self.capture('status'))
 
47
 
 
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')
 
53
        self.run_bzr('commit', '-m', '1')
 
54
        wt = WorkingTree.open('.')
 
55
        wt.rename_one('a/b', 'f/b')
 
56
        wt.rename_one('a/d/e', 'f/e')
 
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
 
 
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
 
 
69
        self.assertEquals('1\n', self.capture('revno'))
 
70
        self.runbzr('revert %s file' % param)
 
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')
 
80
 
 
81
    def test_revert_in_checkout(self):
 
82
        os.mkdir('brach')
 
83
        os.chdir('brach')
 
84
        self._prepare_tree()
 
85
        self.runbzr('checkout --lightweight . ../sprach')
 
86
        self.runbzr('commit -m more')
 
87
        os.chdir('../sprach')
 
88
        self.assertEqual('', self.capture('status'))
 
89
        self.runbzr('revert')
 
90
        self.assertEqual('', self.capture('status'))
 
91
 
 
92
    def test_revert_dirname(self):
 
93
        """Test that revert DIRECTORY does what's expected"""
 
94
        self._prepare_rename_mod_tree()
 
95
        self.run_bzr('revert', 'a')
 
96
        self.failUnlessExists('a/b')
 
97
        self.failUnlessExists('a/d')
 
98
        self.failIfExists('a/g')
 
99
        self.failUnlessExists('j')
 
100
        self.failUnlessExists('h')
 
101
        self.run_bzr('revert', 'f')
 
102
        self.failIfExists('j')
 
103
        self.failIfExists('h')
 
104
        self.failUnlessExists('a/d/e')
 
105
 
 
106
    def test_revert(self):
 
107
        self.run_bzr('init')
 
108
 
 
109
        file('hello', 'wt').write('foo')
 
110
        self.run_bzr('add', 'hello')
 
111
        self.run_bzr('commit', '-m', 'setup', 'hello')
 
112
 
 
113
        file('goodbye', 'wt').write('baz')
 
114
        self.run_bzr('add', 'goodbye')
 
115
        self.run_bzr('commit', '-m', 'setup', 'goodbye')
 
116
 
 
117
        file('hello', 'wt').write('bar')
 
118
        file('goodbye', 'wt').write('qux')
 
119
        self.run_bzr('revert', 'hello')
 
120
        self.check_file_contents('hello', 'foo')
 
121
        self.check_file_contents('goodbye', 'qux')
 
122
        self.run_bzr('revert')
 
123
        self.check_file_contents('goodbye', 'baz')
 
124
 
 
125
        os.mkdir('revertdir')
 
126
        self.run_bzr('add', 'revertdir')
 
127
        self.run_bzr('commit', '-m', 'f')
 
128
        os.rmdir('revertdir')
 
129
        self.run_bzr('revert')
 
130
 
 
131
        if bzrlib.osutils.has_symlinks():
 
132
            os.symlink('/unlikely/to/exist', 'symlink')
 
133
            self.run_bzr('add', 'symlink')
 
134
            self.run_bzr('commit', '-m', 'f')
 
135
            os.unlink('symlink')
 
136
            self.run_bzr('revert')
 
137
            self.failUnlessExists('symlink')
 
138
            os.unlink('symlink')
 
139
            os.symlink('a-different-path', 'symlink')
 
140
            self.run_bzr('revert')
 
141
            self.assertEqual('/unlikely/to/exist',
 
142
                             os.readlink('symlink'))
 
143
        else:
 
144
            self.log("skipping revert symlink tests")
 
145
        
 
146
        file('hello', 'wt').write('xyz')
 
147
        self.run_bzr('commit', '-m', 'xyz', 'hello')
 
148
        self.run_bzr('revert', '-r', '1', 'hello')
 
149
        self.check_file_contents('hello', 'foo')
 
150
        self.run_bzr('revert', 'hello')
 
151
        self.check_file_contents('hello', 'xyz')
 
152
        os.chdir('revertdir')
 
153
        self.run_bzr('revert')
 
154
        os.chdir('..')
 
155