~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Robert Collins
  • Date: 2009-07-07 04:32:13 UTC
  • mto: This revision was merged to the branch mainline in revision 4524.
  • Revision ID: robertc@robertcollins.net-20090707043213-4hjjhgr40iq7gk2d
More informative assertions in xml serialisation.

Show diffs side-by-side

added added

removed removed

Lines of Context:
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 import osutils
 
23
from bzrlib.tests import (
 
24
    condition_isinstance,
 
25
    split_suite_by_condition,
 
26
    multiply_tests,
 
27
    SymlinkFeature
 
28
    )
22
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))
 
37
    scenarios = [
 
38
        ('pre-views', {'branch_tree_format': 'pack-0.92'}),
 
39
        ('view-aware', {'branch_tree_format': 'development6-rich-root'}),
 
40
        ]
 
41
    return multiply_tests(to_adapt, scenarios, result)
23
42
 
24
43
 
25
44
class TestAdd(ExternalBase):
26
 
        
 
45
 
 
46
    def make_branch_and_tree(self, dir):
 
47
        return ExternalBase.make_branch_and_tree(self, dir,
 
48
            format=self.branch_tree_format)
 
49
 
27
50
    def test_add_reports(self):
28
51
        """add command prints the names of added files."""
29
 
        self.run_bzr('init')
 
52
        tree = self.make_branch_and_tree('.')
30
53
        self.build_tree(['top.txt', 'dir/', 'dir/sub.txt', 'CVS'])
31
54
        self.build_tree_contents([('.bzrignore', 'CVS\n')])
32
55
        out = self.run_bzr('add')[0]
33
56
        # the ordering is not defined at the moment
34
57
        results = sorted(out.rstrip('\n').split('\n'))
35
 
        self.assertEquals(['If you wish to add some of these files, please'\
36
 
                           ' add them by name.',
37
 
                           'added .bzrignore',
38
 
                           'added dir',
39
 
                           'added dir/sub.txt',
40
 
                           'added top.txt',
 
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',
 
62
                           'adding dir',
 
63
                           'adding dir/sub.txt',
 
64
                           'adding top.txt',
41
65
                           'ignored 1 file(s).'],
42
66
                          results)
43
67
        out = self.run_bzr('add -v')[0]
44
68
        results = sorted(out.rstrip('\n').split('\n'))
45
 
        self.assertEquals(['If you wish to add some of these files, please'\
46
 
                           ' add them by name.',
 
69
        self.assertEquals(['If you wish to add ignored files, '\
 
70
                           'please add them explicitly by name. ("bzr ignored" gives a list)',
47
71
                           'ignored CVS matching "CVS"'],
48
72
                          results)
49
73
 
50
74
    def test_add_quiet_is(self):
51
75
        """add -q does not print the names of added files."""
52
 
        self.run_bzr('init')
 
76
        tree = self.make_branch_and_tree('.')
53
77
        self.build_tree(['top.txt', 'dir/', 'dir/sub.txt'])
54
78
        out = self.run_bzr('add -q')[0]
55
79
        # the ordering is not defined at the moment
61
85
 
62
86
        "bzr add" should add the parent(s) as necessary.
63
87
        """
64
 
        self.run_bzr('init')
 
88
        tree = self.make_branch_and_tree('.')
65
89
        self.build_tree(['inertiatic/', 'inertiatic/esp'])
66
90
        self.assertEquals(self.run_bzr('unknowns')[0], 'inertiatic\n')
67
91
        self.run_bzr('add inertiatic/esp')
84
108
 
85
109
        "bzr add" should do this happily.
86
110
        """
87
 
        self.run_bzr('init')
 
111
        tree = self.make_branch_and_tree('.')
88
112
        self.build_tree(['inertiatic/', 'inertiatic/esp'])
89
113
        self.assertEquals(self.run_bzr('unknowns')[0], 'inertiatic\n')
90
114
        self.run_bzr('add --no-recurse inertiatic')
99
123
        eq = self.assertEqual
100
124
        ass = self.assertTrue
101
125
        chdir = os.chdir
102
 
        
 
126
 
103
127
        t = self.make_branch_and_tree('.')
104
128
        b = t.branch
105
129
        self.build_tree(['src/', 'README'])
106
 
        
 
130
 
107
131
        eq(sorted(t.unknowns()),
108
132
           ['README', 'src'])
109
 
        
 
133
 
110
134
        self.run_bzr('add src')
111
 
        
 
135
 
112
136
        self.build_tree(['src/foo.c'])
113
 
        
 
137
 
114
138
        # add with no arguments in a subdirectory gets only files below that
115
139
        # subdirectory
116
140
        chdir('src')
121
145
        versioned = [path for path, entry in t.iter_entries_by_dir()]
122
146
        self.assertEquals(versioned,
123
147
            ['', 'src', 'src/foo.c'])
124
 
                
 
148
 
125
149
        # add from the parent directory should pick up all file names
126
150
        chdir('..')
127
151
        self.run_bzr('add')
145
169
        os.chdir('new')
146
170
        out, err = self.run_bzr('add --file-ids-from ../base')
147
171
        self.assertEqual('', err)
148
 
        self.assertEqualDiff('added a w/ file id from a\n'
149
 
                             'added b w/ file id from b\n'
150
 
                             'added b/c w/ file id from b/c\n',
 
172
        self.assertEqualDiff('adding a w/ file id from a\n'
 
173
                             'adding b w/ file id from b\n'
 
174
                             'adding b/c w/ file id from b/c\n',
151
175
                             out)
152
176
        new_tree = new_tree.bzrdir.open_workingtree()
153
177
        self.assertEqual(base_tree.path2id('a'), new_tree.path2id('a'))
166
190
        os.chdir('new')
167
191
        out, err = self.run_bzr('add --file-ids-from ../base/b')
168
192
        self.assertEqual('', err)
169
 
        self.assertEqualDiff('added c w/ file id from b/c\n'
170
 
                             'added d w/ file id from b/d\n',
 
193
        self.assertEqualDiff('adding c w/ file id from b/c\n'
 
194
                             'adding d w/ file id from b/d\n',
171
195
                             out)
172
196
 
173
197
        new_tree = new_tree.bzrdir.open_workingtree()
192
216
        self.build_tree(['.bzr/crescent'])
193
217
        err = self.run_bzr('add .bzr/crescent', retcode=3)[1]
194
218
        self.assertContainsRe(err, r'ERROR:.*\.bzr.*control file')
 
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
 
 
234
    def test_add_via_symlink(self):
 
235
        self.requireFeature(SymlinkFeature)
 
236
        self.make_branch_and_tree('source')
 
237
        self.build_tree(['source/top.txt'])
 
238
        os.symlink('source', 'link')
 
239
        out = self.run_bzr(['add', 'link/top.txt'])[0]
 
240
        self.assertEquals(out, 'adding top.txt\n')
 
241
 
 
242
    def test_add_symlink_to_abspath(self):
 
243
        self.requireFeature(SymlinkFeature)
 
244
        self.make_branch_and_tree('tree')
 
245
        os.symlink(osutils.abspath('target'), 'tree/link')
 
246
        out = self.run_bzr(['add', 'tree/link'])[0]
 
247
        self.assertEquals(out, 'adding link\n')