~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Andrew Bennetts
  • Date: 2009-07-27 08:02:52 UTC
  • mto: This revision was merged to the branch mainline in revision 4573.
  • Revision ID: andrew.bennetts@canonical.com-20090727080252-1r4s9oqwlkzgywx7
Fix trivial bug in _vfs_set_tags_bytes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2006, 2007, 2009, 2010, 2011 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
19
19
 
20
20
import os
21
21
 
22
 
from bzrlib import (
23
 
    osutils,
24
 
    tests,
25
 
    )
 
22
from bzrlib import osutils
26
23
from bzrlib.tests import (
27
 
    features,
28
 
    script,
 
24
    condition_isinstance,
 
25
    split_suite_by_condition,
 
26
    multiply_tests,
 
27
    SymlinkFeature
29
28
    )
30
 
from bzrlib.tests.scenarios import load_tests_apply_scenarios
31
 
 
32
 
 
33
 
load_tests = load_tests_apply_scenarios
34
 
 
35
 
 
36
 
class TestAdd(tests.TestCaseWithTransport):
37
 
 
 
29
from bzrlib.tests.blackbox import ExternalBase
 
30
from bzrlib.tests.test_win32utils import NeedsGlobExpansionFeature
 
31
 
 
32
 
 
33
def load_tests(standard_tests, module, loader):
 
34
    """Parameterize tests for view-aware vs not."""
 
35
    to_adapt, result = split_suite_by_condition(
 
36
        standard_tests, condition_isinstance(TestAdd))
38
37
    scenarios = [
39
38
        ('pre-views', {'branch_tree_format': 'pack-0.92'}),
40
 
        ('view-aware', {'branch_tree_format': '2a'}),
 
39
        ('view-aware', {'branch_tree_format': 'development6-rich-root'}),
41
40
        ]
 
41
    return multiply_tests(to_adapt, scenarios, result)
 
42
 
 
43
 
 
44
class TestAdd(ExternalBase):
42
45
 
43
46
    def make_branch_and_tree(self, dir):
44
 
        return super(TestAdd, self).make_branch_and_tree(
45
 
            dir, format=self.branch_tree_format)
 
47
        return ExternalBase.make_branch_and_tree(self, dir,
 
48
            format=self.branch_tree_format)
46
49
 
47
50
    def test_add_reports(self):
48
51
        """add command prints the names of added files."""
52
55
        out = self.run_bzr('add')[0]
53
56
        # the ordering is not defined at the moment
54
57
        results = sorted(out.rstrip('\n').split('\n'))
55
 
        self.assertEquals(['adding .bzrignore',
 
58
        self.assertEquals(['If you wish to add ignored files, '
 
59
                           'please add them explicitly by name. '
 
60
                           '("bzr ignored" gives a list)',
 
61
                           'adding .bzrignore',
56
62
                           'adding dir',
57
63
                           'adding dir/sub.txt',
58
 
                           'adding top.txt'],
 
64
                           'adding top.txt',
 
65
                           'ignored 1 file(s).'],
59
66
                          results)
60
67
        out = self.run_bzr('add -v')[0]
61
68
        results = sorted(out.rstrip('\n').split('\n'))
62
 
        self.assertEquals(['ignored CVS matching "CVS"'],
 
69
        self.assertEquals(['If you wish to add ignored files, '\
 
70
                           'please add them explicitly by name. ("bzr ignored" gives a list)',
 
71
                           'ignored CVS matching "CVS"'],
63
72
                          results)
64
73
 
65
74
    def test_add_quiet_is(self):
113
122
 
114
123
        eq = self.assertEqual
115
124
        ass = self.assertTrue
 
125
        chdir = os.chdir
116
126
 
117
127
        t = self.make_branch_and_tree('.')
118
128
        b = t.branch
127
137
 
128
138
        # add with no arguments in a subdirectory gets only files below that
129
139
        # subdirectory
130
 
        self.run_bzr('add', working_dir='src')
131
 
        self.assertEquals('README\n',
132
 
                          self.run_bzr('unknowns', working_dir='src')[0])
 
140
        chdir('src')
 
141
        self.run_bzr('add')
 
142
        self.assertEquals(self.run_bzr('unknowns')[0], 'README\n')
133
143
        # reopen to see the new changes
134
 
        t = t.bzrdir.open_workingtree('src')
 
144
        t = t.bzrdir.open_workingtree()
135
145
        versioned = [path for path, entry in t.iter_entries_by_dir()]
136
 
        self.assertEquals(versioned, ['', 'src', 'src/foo.c'])
 
146
        self.assertEquals(versioned,
 
147
            ['', 'src', 'src/foo.c'])
137
148
 
138
149
        # add from the parent directory should pick up all file names
 
150
        chdir('..')
139
151
        self.run_bzr('add')
140
152
        self.assertEquals(self.run_bzr('unknowns')[0], '')
141
153
        self.run_bzr('check')
205
217
        err = self.run_bzr('add .bzr/crescent', retcode=3)[1]
206
218
        self.assertContainsRe(err, r'ERROR:.*\.bzr.*control file')
207
219
 
 
220
    def test_add_with_wildcards(self):
 
221
        self.requireFeature(NeedsGlobExpansionFeature)
 
222
        self.make_branch_and_tree('.')
 
223
        self.build_tree(['a1', 'a2', 'b', 'c33'])
 
224
        self.run_bzr(['add', 'a?', 'c*'])
 
225
        self.assertEquals(self.run_bzr('unknowns')[0], 'b\n')
 
226
 
 
227
    def test_add_with_wildcards_unicode(self):
 
228
        self.requireFeature(NeedsGlobExpansionFeature)
 
229
        self.make_branch_and_tree('.')
 
230
        self.build_tree([u'\u1234A', u'\u1235A', u'\u1235AA', 'cc'])
 
231
        self.run_bzr(['add', u'\u1234?', u'\u1235*'])
 
232
        self.assertEquals(self.run_bzr('unknowns')[0], 'cc\n')
 
233
 
208
234
    def test_add_via_symlink(self):
209
 
        self.requireFeature(features.SymlinkFeature)
 
235
        self.requireFeature(SymlinkFeature)
210
236
        self.make_branch_and_tree('source')
211
237
        self.build_tree(['source/top.txt'])
212
238
        os.symlink('source', 'link')
214
240
        self.assertEquals(out, 'adding top.txt\n')
215
241
 
216
242
    def test_add_symlink_to_abspath(self):
217
 
        self.requireFeature(features.SymlinkFeature)
 
243
        self.requireFeature(SymlinkFeature)
218
244
        self.make_branch_and_tree('tree')
219
245
        os.symlink(osutils.abspath('target'), 'tree/link')
220
246
        out = self.run_bzr(['add', 'tree/link'])[0]
221
247
        self.assertEquals(out, 'adding link\n')
222
 
 
223
 
    def test_add_not_child(self):
224
 
        # https://bugs.launchpad.net/bzr/+bug/98735
225
 
        sr = script.ScriptRunner()
226
 
        self.make_branch_and_tree('tree1')
227
 
        self.make_branch_and_tree('tree2')
228
 
        self.build_tree(['tree1/a', 'tree2/b'])
229
 
        sr.run_script(self, '''
230
 
        $ bzr add tree1/a tree2/b
231
 
        2>bzr: ERROR: Path "...tree2/b" is not a child of path "...tree1"
232
 
        ''')
233
 
 
234
 
    def test_add_multiple_files_in_unicode_cwd(self):
235
 
        """Adding multiple files in a non-ascii cwd, see lp:686611"""
236
 
        self.requireFeature(features.UnicodeFilenameFeature)
237
 
        self.make_branch_and_tree(u"\xA7")
238
 
        self.build_tree([u"\xA7/a", u"\xA7/b"])
239
 
        out, err = self.run_bzr(["add", "a", "b"], working_dir=u"\xA7")
240
 
        self.assertEquals(out, "adding a\n" "adding b\n")
241
 
        self.assertEquals(err, "")