~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2009-03-17 07:05:37 UTC
  • mfrom: (4152.1.2 branch.stacked.streams)
  • Revision ID: pqm@pqm.ubuntu.com-20090317070537-zaud24vjs2szna87
(robertc) Add client-side streaming from stacked branches (over
        bzr:// protocols) when the sort order is compatible with doing
        that. (Robert Collins, Andrew Bennetts)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2006, 2007, 2009, 2010 Canonical Ltd
 
1
# Copyright (C) 2005, 2006, 2007 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
16
#
17
17
 
18
18
"""Tests of the 'bzr add' command."""
19
19
 
20
20
import os
21
21
 
22
 
from bzrlib import (
23
 
    osutils,
24
 
    tests,
25
 
    )
26
 
from bzrlib.tests import (
27
 
    script,
28
 
    )
29
 
 
30
 
 
31
 
def load_tests(standard_tests, module, loader):
32
 
    """Parameterize tests for view-aware vs not."""
33
 
    to_adapt, result = tests.split_suite_by_condition(
34
 
        standard_tests, tests.condition_isinstance(TestAdd))
35
 
    scenarios = [
36
 
        ('pre-views', {'branch_tree_format': 'pack-0.92'}),
37
 
        ('view-aware', {'branch_tree_format': 'development6-rich-root'}),
38
 
        ]
39
 
    return tests.multiply_tests(to_adapt, scenarios, result)
40
 
 
41
 
 
42
 
class TestAdd(tests.TestCaseWithTransport):
43
 
 
44
 
    def make_branch_and_tree(self, dir):
45
 
        return super(TestAdd, self).make_branch_and_tree(
46
 
            dir, format=self.branch_tree_format)
 
22
from bzrlib.tests.blackbox import ExternalBase
 
23
from bzrlib.tests.test_win32utils import NeedsGlobExpansionFeature
 
24
 
 
25
 
 
26
class TestAdd(ExternalBase):
47
27
 
48
28
    def test_add_reports(self):
49
29
        """add command prints the names of added files."""
53
33
        out = self.run_bzr('add')[0]
54
34
        # the ordering is not defined at the moment
55
35
        results = sorted(out.rstrip('\n').split('\n'))
56
 
        self.assertEquals(['adding .bzrignore',
 
36
        self.assertEquals(['If you wish to add some of these files, please'\
 
37
                           ' add them by name.',
 
38
                           'adding .bzrignore',
57
39
                           'adding dir',
58
40
                           'adding dir/sub.txt',
59
 
                           'adding top.txt'],
 
41
                           'adding top.txt',
 
42
                           'ignored 1 file(s).'],
60
43
                          results)
61
44
        out = self.run_bzr('add -v')[0]
62
45
        results = sorted(out.rstrip('\n').split('\n'))
63
 
        self.assertEquals(['ignored CVS matching "CVS"'],
 
46
        self.assertEquals(['If you wish to add some of these files, please'\
 
47
                           ' add them by name.',
 
48
                           'ignored CVS matching "CVS"'],
64
49
                          results)
65
50
 
66
51
    def test_add_quiet_is(self):
114
99
 
115
100
        eq = self.assertEqual
116
101
        ass = self.assertTrue
 
102
        chdir = os.chdir
117
103
 
118
104
        t = self.make_branch_and_tree('.')
119
105
        b = t.branch
128
114
 
129
115
        # add with no arguments in a subdirectory gets only files below that
130
116
        # subdirectory
131
 
        self.run_bzr('add', working_dir='src')
132
 
        self.assertEquals('README\n',
133
 
                          self.run_bzr('unknowns', working_dir='src')[0])
 
117
        chdir('src')
 
118
        self.run_bzr('add')
 
119
        self.assertEquals(self.run_bzr('unknowns')[0], 'README\n')
134
120
        # reopen to see the new changes
135
 
        t = t.bzrdir.open_workingtree('src')
 
121
        t = t.bzrdir.open_workingtree()
136
122
        versioned = [path for path, entry in t.iter_entries_by_dir()]
137
 
        self.assertEquals(versioned, ['', 'src', 'src/foo.c'])
 
123
        self.assertEquals(versioned,
 
124
            ['', 'src', 'src/foo.c'])
138
125
 
139
126
        # add from the parent directory should pick up all file names
 
127
        chdir('..')
140
128
        self.run_bzr('add')
141
129
        self.assertEquals(self.run_bzr('unknowns')[0], '')
142
130
        self.run_bzr('check')
206
194
        err = self.run_bzr('add .bzr/crescent', retcode=3)[1]
207
195
        self.assertContainsRe(err, r'ERROR:.*\.bzr.*control file')
208
196
 
209
 
    def test_add_via_symlink(self):
210
 
        self.requireFeature(tests.SymlinkFeature)
211
 
        self.make_branch_and_tree('source')
212
 
        self.build_tree(['source/top.txt'])
213
 
        os.symlink('source', 'link')
214
 
        out = self.run_bzr(['add', 'link/top.txt'])[0]
215
 
        self.assertEquals(out, 'adding top.txt\n')
216
 
 
217
 
    def test_add_symlink_to_abspath(self):
218
 
        self.requireFeature(tests.SymlinkFeature)
219
 
        self.make_branch_and_tree('tree')
220
 
        os.symlink(osutils.abspath('target'), 'tree/link')
221
 
        out = self.run_bzr(['add', 'tree/link'])[0]
222
 
        self.assertEquals(out, 'adding link\n')
223
 
 
224
 
    def test_add_not_child(self):
225
 
        # https://bugs.launchpad.net/bzr/+bug/98735
226
 
        sr = script.ScriptRunner()
227
 
        self.make_branch_and_tree('tree1')
228
 
        self.make_branch_and_tree('tree2')
229
 
        self.build_tree(['tree1/a', 'tree2/b'])
230
 
        sr.run_script(self, '''
231
 
        $ bzr add tree1/a tree2/b
232
 
        2>bzr: ERROR: Path "...tree2/b" is not a child of path "...tree1"
233
 
        ''')
 
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')
 
203
 
 
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')