/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
4595.1.1 by Jason Spashett
Further tweaks to bzr add
1
# Copyright (C) 2005, 2006, 2007, 2009 Canonical Ltd
1711.1.3 by Robert Collins
Add new test_add file - should have been in last commit.
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
4183.7.1 by Sabin Iacob
update FSF mailing address
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
1711.1.3 by Robert Collins
Add new test_add file - should have been in last commit.
16
#
17
18
"""Tests of the 'bzr add' command."""
19
20
import os
21
4301.2.4 by Aaron Bentley
Further cleanups
22
from bzrlib import osutils
4163.2.2 by Ian Clatworthy
use multiply_tests rather than subclassing
23
from bzrlib.tests import (
24
    condition_isinstance,
25
    split_suite_by_condition,
26
    multiply_tests,
4301.1.1 by Geoff Bache
Fixing bug 183831, where 'bzr add' fails with a python stack if the path contains a symbolic link
27
    SymlinkFeature
4163.2.2 by Ian Clatworthy
use multiply_tests rather than subclassing
28
    )
1711.1.3 by Robert Collins
Add new test_add file - should have been in last commit.
29
from bzrlib.tests.blackbox import ExternalBase
30
31
4163.2.2 by Ian Clatworthy
use multiply_tests rather than subclassing
32
def load_tests(standard_tests, module, loader):
33
    """Parameterize tests for view-aware vs not."""
34
    to_adapt, result = split_suite_by_condition(
35
        standard_tests, condition_isinstance(TestAdd))
36
    scenarios = [
37
        ('pre-views', {'branch_tree_format': 'pack-0.92'}),
4241.6.8 by Robert Collins, John Arbash Meinel, Ian Clatworthy, Vincent Ladeuil
Add --development6-rich-root, disabling the legacy and unneeded development2 format, and activating the tests for CHK features disabled pending this format. (Robert Collins, John Arbash Meinel, Ian Clatworthy, Vincent Ladeuil)
38
        ('view-aware', {'branch_tree_format': 'development6-rich-root'}),
4163.2.2 by Ian Clatworthy
use multiply_tests rather than subclassing
39
        ]
40
    return multiply_tests(to_adapt, scenarios, result)
41
42
1711.1.3 by Robert Collins
Add new test_add file - should have been in last commit.
43
class TestAdd(ExternalBase):
3943.8.1 by Marius Kruger
remove all trailing whitespace from bzr source
44
4163.2.1 by Ian Clatworthy
Fix add in trees supports views
45
    def make_branch_and_tree(self, dir):
46
        return ExternalBase.make_branch_and_tree(self, dir,
47
            format=self.branch_tree_format)
48
1711.1.3 by Robert Collins
Add new test_add file - should have been in last commit.
49
    def test_add_reports(self):
50
        """add command prints the names of added files."""
2664.3.1 by Daniel Watkins
tests.blackbox.test_add now uses internals where appropriate.
51
        tree = self.make_branch_and_tree('.')
1711.1.3 by Robert Collins
Add new test_add file - should have been in last commit.
52
        self.build_tree(['top.txt', 'dir/', 'dir/sub.txt', 'CVS'])
1765.1.1 by Robert Collins
Remove the default ignores list from bzr, lowering the minimum overhead in bzr add.
53
        self.build_tree_contents([('.bzrignore', 'CVS\n')])
2581.1.2 by Martin Pool
Remove unnecessary retcode=0 to run_bzr calls
54
        out = self.run_bzr('add')[0]
1711.1.3 by Robert Collins
Add new test_add file - should have been in last commit.
55
        # the ordering is not defined at the moment
56
        results = sorted(out.rstrip('\n').split('\n'))
4595.1.1 by Jason Spashett
Further tweaks to bzr add
57
        self.assertEquals(['adding .bzrignore',
3985.2.1 by Daniel Watkins
Updated tests for new behaviour.
58
                           'adding dir',
59
                           'adding dir/sub.txt',
4595.1.1 by Jason Spashett
Further tweaks to bzr add
60
                           'adding top.txt'],
1711.1.3 by Robert Collins
Add new test_add file - should have been in last commit.
61
                          results)
2581.1.2 by Martin Pool
Remove unnecessary retcode=0 to run_bzr calls
62
        out = self.run_bzr('add -v')[0]
1711.1.3 by Robert Collins
Add new test_add file - should have been in last commit.
63
        results = sorted(out.rstrip('\n').split('\n'))
4595.1.1 by Jason Spashett
Further tweaks to bzr add
64
        self.assertEquals(['ignored CVS matching "CVS"'],
1711.1.3 by Robert Collins
Add new test_add file - should have been in last commit.
65
                          results)
66
67
    def test_add_quiet_is(self):
68
        """add -q does not print the names of added files."""
3943.8.1 by Marius Kruger
remove all trailing whitespace from bzr source
69
        tree = self.make_branch_and_tree('.')
1711.1.3 by Robert Collins
Add new test_add file - should have been in last commit.
70
        self.build_tree(['top.txt', 'dir/', 'dir/sub.txt'])
2581.1.2 by Martin Pool
Remove unnecessary retcode=0 to run_bzr calls
71
        out = self.run_bzr('add -q')[0]
1711.1.3 by Robert Collins
Add new test_add file - should have been in last commit.
72
        # the ordering is not defined at the moment
73
        results = sorted(out.rstrip('\n').split('\n'))
74
        self.assertEquals([''], results)
75
76
    def test_add_in_unversioned(self):
77
        """Try to add a file in an unversioned directory.
78
79
        "bzr add" should add the parent(s) as necessary.
80
        """
2664.3.1 by Daniel Watkins
tests.blackbox.test_add now uses internals where appropriate.
81
        tree = self.make_branch_and_tree('.')
1711.1.3 by Robert Collins
Add new test_add file - should have been in last commit.
82
        self.build_tree(['inertiatic/', 'inertiatic/esp'])
2552.2.2 by Vincent Ladeuil
Enforce run_bzr(string) where possible.
83
        self.assertEquals(self.run_bzr('unknowns')[0], 'inertiatic\n')
2530.3.3 by Martin Pool
Clean up some callers that use varargs syntax for run_bzr, but don't
84
        self.run_bzr('add inertiatic/esp')
2552.2.2 by Vincent Ladeuil
Enforce run_bzr(string) where possible.
85
        self.assertEquals(self.run_bzr('unknowns')[0], '')
1711.1.3 by Robert Collins
Add new test_add file - should have been in last commit.
86
87
        # Multiple unversioned parents
88
        self.build_tree(['veil/', 'veil/cerpin/', 'veil/cerpin/taxt'])
2552.2.2 by Vincent Ladeuil
Enforce run_bzr(string) where possible.
89
        self.assertEquals(self.run_bzr('unknowns')[0], 'veil\n')
2530.3.3 by Martin Pool
Clean up some callers that use varargs syntax for run_bzr, but don't
90
        self.run_bzr('add veil/cerpin/taxt')
2552.2.2 by Vincent Ladeuil
Enforce run_bzr(string) where possible.
91
        self.assertEquals(self.run_bzr('unknowns')[0], '')
1711.1.3 by Robert Collins
Add new test_add file - should have been in last commit.
92
93
        # Check whacky paths work
94
        self.build_tree(['cicatriz/', 'cicatriz/esp'])
2552.2.2 by Vincent Ladeuil
Enforce run_bzr(string) where possible.
95
        self.assertEquals(self.run_bzr('unknowns')[0], 'cicatriz\n')
2530.3.3 by Martin Pool
Clean up some callers that use varargs syntax for run_bzr, but don't
96
        self.run_bzr('add inertiatic/../cicatriz/esp')
2552.2.2 by Vincent Ladeuil
Enforce run_bzr(string) where possible.
97
        self.assertEquals(self.run_bzr('unknowns')[0], '')
1711.1.3 by Robert Collins
Add new test_add file - should have been in last commit.
98
99
    def test_add_in_versioned(self):
100
        """Try to add a file in a versioned directory.
101
102
        "bzr add" should do this happily.
103
        """
2664.3.1 by Daniel Watkins
tests.blackbox.test_add now uses internals where appropriate.
104
        tree = self.make_branch_and_tree('.')
1711.1.3 by Robert Collins
Add new test_add file - should have been in last commit.
105
        self.build_tree(['inertiatic/', 'inertiatic/esp'])
2552.2.2 by Vincent Ladeuil
Enforce run_bzr(string) where possible.
106
        self.assertEquals(self.run_bzr('unknowns')[0], 'inertiatic\n')
2530.3.3 by Martin Pool
Clean up some callers that use varargs syntax for run_bzr, but don't
107
        self.run_bzr('add --no-recurse inertiatic')
2552.2.2 by Vincent Ladeuil
Enforce run_bzr(string) where possible.
108
        self.assertEquals(self.run_bzr('unknowns')[0], 'inertiatic/esp\n')
2530.3.3 by Martin Pool
Clean up some callers that use varargs syntax for run_bzr, but don't
109
        self.run_bzr('add inertiatic/esp')
2552.2.2 by Vincent Ladeuil
Enforce run_bzr(string) where possible.
110
        self.assertEquals(self.run_bzr('unknowns')[0], '')
1711.1.3 by Robert Collins
Add new test_add file - should have been in last commit.
111
112
    def test_subdir_add(self):
113
        """Add in subdirectory should add only things from there down"""
114
        from bzrlib.workingtree import WorkingTree
1836.1.16 by John Arbash Meinel
Cleanup some tests which don't expect .bazaar/ to show up. Some still fail.
115
1711.1.3 by Robert Collins
Add new test_add file - should have been in last commit.
116
        eq = self.assertEqual
1836.1.16 by John Arbash Meinel
Cleanup some tests which don't expect .bazaar/ to show up. Some still fail.
117
        ass = self.assertTrue
1711.1.3 by Robert Collins
Add new test_add file - should have been in last commit.
118
        chdir = os.chdir
3943.8.1 by Marius Kruger
remove all trailing whitespace from bzr source
119
1711.1.3 by Robert Collins
Add new test_add file - should have been in last commit.
120
        t = self.make_branch_and_tree('.')
121
        b = t.branch
122
        self.build_tree(['src/', 'README'])
3943.8.1 by Marius Kruger
remove all trailing whitespace from bzr source
123
1711.1.3 by Robert Collins
Add new test_add file - should have been in last commit.
124
        eq(sorted(t.unknowns()),
125
           ['README', 'src'])
3943.8.1 by Marius Kruger
remove all trailing whitespace from bzr source
126
2530.3.3 by Martin Pool
Clean up some callers that use varargs syntax for run_bzr, but don't
127
        self.run_bzr('add src')
3943.8.1 by Marius Kruger
remove all trailing whitespace from bzr source
128
1711.1.3 by Robert Collins
Add new test_add file - should have been in last commit.
129
        self.build_tree(['src/foo.c'])
3943.8.1 by Marius Kruger
remove all trailing whitespace from bzr source
130
2255.2.171 by Martin Pool
Fix up blackbox test_add to avoid depending on inventory not being held in memory
131
        # add with no arguments in a subdirectory gets only files below that
132
        # subdirectory
1711.1.3 by Robert Collins
Add new test_add file - should have been in last commit.
133
        chdir('src')
134
        self.run_bzr('add')
2552.2.2 by Vincent Ladeuil
Enforce run_bzr(string) where possible.
135
        self.assertEquals(self.run_bzr('unknowns')[0], 'README\n')
2255.2.176 by Martin Pool
Merge dirstate and some small cleanups
136
        # reopen to see the new changes
137
        t = t.bzrdir.open_workingtree()
2255.2.171 by Martin Pool
Fix up blackbox test_add to avoid depending on inventory not being held in memory
138
        versioned = [path for path, entry in t.iter_entries_by_dir()]
139
        self.assertEquals(versioned,
140
            ['', 'src', 'src/foo.c'])
3943.8.1 by Marius Kruger
remove all trailing whitespace from bzr source
141
2255.2.171 by Martin Pool
Fix up blackbox test_add to avoid depending on inventory not being held in memory
142
        # add from the parent directory should pick up all file names
1711.1.3 by Robert Collins
Add new test_add file - should have been in last commit.
143
        chdir('..')
144
        self.run_bzr('add')
2552.2.2 by Vincent Ladeuil
Enforce run_bzr(string) where possible.
145
        self.assertEquals(self.run_bzr('unknowns')[0], '')
1711.1.3 by Robert Collins
Add new test_add file - should have been in last commit.
146
        self.run_bzr('check')
1757.2.1 by Robert Collins
Add an explicit test that adding a missing file barfs.
147
148
    def test_add_missing(self):
149
        """bzr add foo where foo is missing should error."""
150
        self.make_branch_and_tree('.')
2530.3.3 by Martin Pool
Clean up some callers that use varargs syntax for run_bzr, but don't
151
        self.run_bzr('add missing-file', retcode=3)
1911.3.2 by John Arbash Meinel
Adding the AddFromBaseAction, which tries to reuse file ids from another tree
152
153
    def test_add_from(self):
154
        base_tree = self.make_branch_and_tree('base')
155
        self.build_tree(['base/a', 'base/b/', 'base/b/c'])
156
        base_tree.add(['a', 'b', 'b/c'])
157
        base_tree.commit('foo')
158
159
        new_tree = self.make_branch_and_tree('new')
160
        self.build_tree(['new/a', 'new/b/', 'new/b/c', 'd'])
161
162
        os.chdir('new')
2530.3.3 by Martin Pool
Clean up some callers that use varargs syntax for run_bzr, but don't
163
        out, err = self.run_bzr('add --file-ids-from ../base')
1911.3.2 by John Arbash Meinel
Adding the AddFromBaseAction, which tries to reuse file ids from another tree
164
        self.assertEqual('', err)
3985.2.1 by Daniel Watkins
Updated tests for new behaviour.
165
        self.assertEqualDiff('adding a w/ file id from a\n'
166
                             'adding b w/ file id from b\n'
4075.1.1 by Robert Collins
add should not print 'add completed' unnecessarily.
167
                             'adding b/c w/ file id from b/c\n',
1911.3.2 by John Arbash Meinel
Adding the AddFromBaseAction, which tries to reuse file ids from another tree
168
                             out)
2255.2.171 by Martin Pool
Fix up blackbox test_add to avoid depending on inventory not being held in memory
169
        new_tree = new_tree.bzrdir.open_workingtree()
1911.3.2 by John Arbash Meinel
Adding the AddFromBaseAction, which tries to reuse file ids from another tree
170
        self.assertEqual(base_tree.path2id('a'), new_tree.path2id('a'))
171
        self.assertEqual(base_tree.path2id('b'), new_tree.path2id('b'))
172
        self.assertEqual(base_tree.path2id('b/c'), new_tree.path2id('b/c'))
173
174
    def test_add_from_subdir(self):
175
        base_tree = self.make_branch_and_tree('base')
176
        self.build_tree(['base/a', 'base/b/', 'base/b/c', 'base/b/d'])
177
        base_tree.add(['a', 'b', 'b/c', 'b/d'])
178
        base_tree.commit('foo')
179
180
        new_tree = self.make_branch_and_tree('new')
181
        self.build_tree(['new/c', 'new/d'])
182
183
        os.chdir('new')
2530.3.3 by Martin Pool
Clean up some callers that use varargs syntax for run_bzr, but don't
184
        out, err = self.run_bzr('add --file-ids-from ../base/b')
1911.3.2 by John Arbash Meinel
Adding the AddFromBaseAction, which tries to reuse file ids from another tree
185
        self.assertEqual('', err)
3985.2.1 by Daniel Watkins
Updated tests for new behaviour.
186
        self.assertEqualDiff('adding c w/ file id from b/c\n'
4075.1.1 by Robert Collins
add should not print 'add completed' unnecessarily.
187
                             'adding d w/ file id from b/d\n',
1911.3.2 by John Arbash Meinel
Adding the AddFromBaseAction, which tries to reuse file ids from another tree
188
                             out)
189
2255.2.171 by Martin Pool
Fix up blackbox test_add to avoid depending on inventory not being held in memory
190
        new_tree = new_tree.bzrdir.open_workingtree()
1911.3.2 by John Arbash Meinel
Adding the AddFromBaseAction, which tries to reuse file ids from another tree
191
        self.assertEqual(base_tree.path2id('b/c'), new_tree.path2id('c'))
192
        self.assertEqual(base_tree.path2id('b/d'), new_tree.path2id('d'))
1928.1.1 by Alexander Belchenko
blackbox test for 'bzr add --dry-run'
193
194
    def test_add_dry_run(self):
2568.2.4 by Robert Collins
* ``bzrlib.add.smart_add`` and ``bzrlib.add.smart_add_tree`` are now
195
        """Test a dry run add, make sure nothing is added."""
196
        wt = self.make_branch_and_tree('.')
197
        self.build_tree(['inertiatic/', 'inertiatic/esp'])
198
        self.assertEqual(list(wt.unknowns()), ['inertiatic'])
199
        self.run_bzr('add --dry-run')
200
        self.assertEqual(list(wt.unknowns()), ['inertiatic'])
2279.5.1 by Matthias Rahlf
FastPath objects can now be printed nicely
201
202
    def test_add_control_dir(self):
203
        """The control dir and its content should be refused."""
2279.6.1 by Alexander Belchenko
Instead of __str__ method for FastPath object we use .raw_path attribute (note from Aaron).
204
        self.make_branch_and_tree('.')
2530.3.3 by Martin Pool
Clean up some callers that use varargs syntax for run_bzr, but don't
205
        err = self.run_bzr('add .bzr', retcode=3)[1]
2279.5.1 by Matthias Rahlf
FastPath objects can now be printed nicely
206
        self.assertContainsRe(err, r'ERROR:.*\.bzr.*control file')
2530.3.3 by Martin Pool
Clean up some callers that use varargs syntax for run_bzr, but don't
207
        err = self.run_bzr('add .bzr/README', retcode=3)[1]
2279.5.1 by Matthias Rahlf
FastPath objects can now be printed nicely
208
        self.assertContainsRe(err, r'ERROR:.*\.bzr.*control file')
209
        self.build_tree(['.bzr/crescent'])
2530.3.3 by Martin Pool
Clean up some callers that use varargs syntax for run_bzr, but don't
210
        err = self.run_bzr('add .bzr/crescent', retcode=3)[1]
2279.5.1 by Matthias Rahlf
FastPath objects can now be printed nicely
211
        self.assertContainsRe(err, r'ERROR:.*\.bzr.*control file')
2617.5.3 by Kuno Meyer
Blackbox test for adding with wildcards (Win32).
212
4301.1.1 by Geoff Bache
Fixing bug 183831, where 'bzr add' fails with a python stack if the path contains a symbolic link
213
    def test_add_via_symlink(self):
214
        self.requireFeature(SymlinkFeature)
215
        self.make_branch_and_tree('source')
216
        self.build_tree(['source/top.txt'])
217
        os.symlink('source', 'link')
218
        out = self.run_bzr(['add', 'link/top.txt'])[0]
219
        self.assertEquals(out, 'adding top.txt\n')
220
221
    def test_add_symlink_to_abspath(self):
222
        self.requireFeature(SymlinkFeature)
4301.2.4 by Aaron Bentley
Further cleanups
223
        self.make_branch_and_tree('tree')
224
        os.symlink(osutils.abspath('target'), 'tree/link')
225
        out = self.run_bzr(['add', 'tree/link'])[0]
4301.1.1 by Geoff Bache
Fixing bug 183831, where 'bzr add' fails with a python stack if the path contains a symbolic link
226
        self.assertEquals(out, 'adding link\n')