~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Vincent Ladeuil
  • Date: 2010-03-02 10:21:39 UTC
  • mfrom: (4797.2.24 2.1)
  • mto: This revision was merged to the branch mainline in revision 5069.
  • Revision ID: v.ladeuil+lp@free.fr-20100302102139-b5cba7h6xu13mekg
Merge 2.1 into trunk including fixes for #331095, #507557, #185103, #524184 and #369501

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005, 2006, 2007 Canonical Ltd
 
1
# Copyright (C) 2006, 2007, 2009, 2010 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
12
12
#
13
13
# You should have received a copy of the GNU General Public License
14
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
 
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16
16
#
17
17
 
18
18
"""Tests of the 'bzr add' command."""
19
19
 
20
20
import os
21
21
 
22
 
from bzrlib.tests.blackbox import ExternalBase
23
 
from bzrlib.tests.test_win32utils import NeedsGlobExpansionFeature
24
 
 
25
 
 
26
 
class TestAdd(ExternalBase):
27
 
        
 
22
from bzrlib import (
 
23
    osutils,
 
24
    tests,
 
25
    )
 
26
 
 
27
 
 
28
def load_tests(standard_tests, module, loader):
 
29
    """Parameterize tests for view-aware vs not."""
 
30
    to_adapt, result = tests.split_suite_by_condition(
 
31
        standard_tests, tests.condition_isinstance(TestAdd))
 
32
    scenarios = [
 
33
        ('pre-views', {'branch_tree_format': 'pack-0.92'}),
 
34
        ('view-aware', {'branch_tree_format': 'development6-rich-root'}),
 
35
        ]
 
36
    return tests.multiply_tests(to_adapt, scenarios, result)
 
37
 
 
38
 
 
39
class TestAdd(tests.TestCaseWithTransport):
 
40
 
 
41
    def make_branch_and_tree(self, dir):
 
42
        return super(TestAdd, self).make_branch_and_tree(
 
43
            dir, format=self.branch_tree_format)
 
44
 
28
45
    def test_add_reports(self):
29
46
        """add command prints the names of added files."""
30
47
        tree = self.make_branch_and_tree('.')
33
50
        out = self.run_bzr('add')[0]
34
51
        # the ordering is not defined at the moment
35
52
        results = sorted(out.rstrip('\n').split('\n'))
36
 
        self.assertEquals(['If you wish to add some of these files, please'\
37
 
                           ' add them by name.',
38
 
                           'added .bzrignore',
39
 
                           'added dir',
40
 
                           'added dir/sub.txt',
41
 
                           'added top.txt',
42
 
                           'ignored 1 file(s).'],
 
53
        self.assertEquals(['adding .bzrignore',
 
54
                           'adding dir',
 
55
                           'adding dir/sub.txt',
 
56
                           'adding top.txt'],
43
57
                          results)
44
58
        out = self.run_bzr('add -v')[0]
45
59
        results = sorted(out.rstrip('\n').split('\n'))
46
 
        self.assertEquals(['If you wish to add some of these files, please'\
47
 
                           ' add them by name.',
48
 
                           'ignored CVS matching "CVS"'],
 
60
        self.assertEquals(['ignored CVS matching "CVS"'],
49
61
                          results)
50
62
 
51
63
    def test_add_quiet_is(self):
52
64
        """add -q does not print the names of added files."""
53
 
        tree = self.make_branch_and_tree('.') 
 
65
        tree = self.make_branch_and_tree('.')
54
66
        self.build_tree(['top.txt', 'dir/', 'dir/sub.txt'])
55
67
        out = self.run_bzr('add -q')[0]
56
68
        # the ordering is not defined at the moment
99
111
 
100
112
        eq = self.assertEqual
101
113
        ass = self.assertTrue
102
 
        chdir = os.chdir
103
 
        
 
114
 
104
115
        t = self.make_branch_and_tree('.')
105
116
        b = t.branch
106
117
        self.build_tree(['src/', 'README'])
107
 
        
 
118
 
108
119
        eq(sorted(t.unknowns()),
109
120
           ['README', 'src'])
110
 
        
 
121
 
111
122
        self.run_bzr('add src')
112
 
        
 
123
 
113
124
        self.build_tree(['src/foo.c'])
114
 
        
 
125
 
115
126
        # add with no arguments in a subdirectory gets only files below that
116
127
        # subdirectory
117
 
        chdir('src')
118
 
        self.run_bzr('add')
119
 
        self.assertEquals(self.run_bzr('unknowns')[0], 'README\n')
 
128
        self.run_bzr('add', working_dir='src')
 
129
        self.assertEquals('README\n',
 
130
                          self.run_bzr('unknowns', working_dir='src')[0])
120
131
        # reopen to see the new changes
121
 
        t = t.bzrdir.open_workingtree()
 
132
        t = t.bzrdir.open_workingtree('src')
122
133
        versioned = [path for path, entry in t.iter_entries_by_dir()]
123
 
        self.assertEquals(versioned,
124
 
            ['', 'src', 'src/foo.c'])
125
 
                
 
134
        self.assertEquals(versioned, ['', 'src', 'src/foo.c'])
 
135
 
126
136
        # add from the parent directory should pick up all file names
127
 
        chdir('..')
128
137
        self.run_bzr('add')
129
138
        self.assertEquals(self.run_bzr('unknowns')[0], '')
130
139
        self.run_bzr('check')
146
155
        os.chdir('new')
147
156
        out, err = self.run_bzr('add --file-ids-from ../base')
148
157
        self.assertEqual('', err)
149
 
        self.assertEqualDiff('added a w/ file id from a\n'
150
 
                             'added b w/ file id from b\n'
151
 
                             'added b/c w/ file id from b/c\n',
 
158
        self.assertEqualDiff('adding a w/ file id from a\n'
 
159
                             'adding b w/ file id from b\n'
 
160
                             'adding b/c w/ file id from b/c\n',
152
161
                             out)
153
162
        new_tree = new_tree.bzrdir.open_workingtree()
154
163
        self.assertEqual(base_tree.path2id('a'), new_tree.path2id('a'))
167
176
        os.chdir('new')
168
177
        out, err = self.run_bzr('add --file-ids-from ../base/b')
169
178
        self.assertEqual('', err)
170
 
        self.assertEqualDiff('added c w/ file id from b/c\n'
171
 
                             'added d w/ file id from b/d\n',
 
179
        self.assertEqualDiff('adding c w/ file id from b/c\n'
 
180
                             'adding d w/ file id from b/d\n',
172
181
                             out)
173
182
 
174
183
        new_tree = new_tree.bzrdir.open_workingtree()
194
203
        err = self.run_bzr('add .bzr/crescent', retcode=3)[1]
195
204
        self.assertContainsRe(err, r'ERROR:.*\.bzr.*control file')
196
205
 
197
 
    def test_add_with_wildcards(self):
198
 
        self.requireFeature(NeedsGlobExpansionFeature)
199
 
        self.make_branch_and_tree('.')
200
 
        self.build_tree(['a1', 'a2', 'b', 'c33'])
201
 
        self.run_bzr(['add', 'a?', 'c*'])
202
 
        self.assertEquals(self.run_bzr('unknowns')[0], 'b\n')
 
206
    def test_add_via_symlink(self):
 
207
        self.requireFeature(tests.SymlinkFeature)
 
208
        self.make_branch_and_tree('source')
 
209
        self.build_tree(['source/top.txt'])
 
210
        os.symlink('source', 'link')
 
211
        out = self.run_bzr(['add', 'link/top.txt'])[0]
 
212
        self.assertEquals(out, 'adding top.txt\n')
203
213
 
204
 
    def test_add_with_wildcards_unicode(self):
205
 
        self.requireFeature(NeedsGlobExpansionFeature)
206
 
        self.make_branch_and_tree('.')
207
 
        self.build_tree([u'\u1234A', u'\u1235A', u'\u1235AA', 'cc'])
208
 
        self.run_bzr(['add', u'\u1234?', u'\u1235*'])
209
 
        self.assertEquals(self.run_bzr('unknowns')[0], 'cc\n')
 
214
    def test_add_symlink_to_abspath(self):
 
215
        self.requireFeature(tests.SymlinkFeature)
 
216
        self.make_branch_and_tree('tree')
 
217
        os.symlink(osutils.abspath('target'), 'tree/link')
 
218
        out = self.run_bzr(['add', 'tree/link'])[0]
 
219
        self.assertEquals(out, 'adding link\n')