~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/blackbox/test_ls.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-2010 Canonical Ltd
 
1
# Copyright (C) 2006 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
"""External tests of 'bzr ls'"""
18
18
 
19
19
import os
20
20
 
21
 
from bzrlib import ignores, osutils
 
21
from bzrlib import ignores
22
22
from bzrlib.tests import TestCaseWithTransport
23
23
 
24
24
 
36
36
                                 ('a', 'hello\n'),
37
37
                                 ])
38
38
 
39
 
    def ls_equals(self, value, args=None, recursive=True):
 
39
    def ls_equals(self, value, args=None):
40
40
        command = 'ls'
41
41
        if args is not None:
42
42
            command += ' ' + args
43
 
        if recursive:
44
 
            command += ' -R'
45
43
        out, err = self.run_bzr(command)
46
44
        self.assertEqual('', err)
47
45
        self.assertEqualDiff(value, out)
54
52
    def test_ls_basic(self):
55
53
        """Test the abilities of 'bzr ls'"""
56
54
        self.ls_equals('.bzrignore\na\n')
57
 
        self.ls_equals('.bzrignore\na\n', './')
58
55
        self.ls_equals('?        .bzrignore\n'
59
56
                       '?        a\n',
60
57
                       '--verbose')
111
108
                       'a\0a-id\0'
112
109
                       'subdir\0subdir-id\0', '--show-ids --null')
113
110
 
114
 
    def test_ls_no_recursive(self):
 
111
    def test_ls_recursive(self):
115
112
        self.build_tree(['subdir/', 'subdir/b'])
116
113
        self.wt.add(['a', 'subdir/', 'subdir/b', '.bzrignore'])
117
114
 
118
115
        self.ls_equals('.bzrignore\n'
119
116
                       'a\n'
120
117
                       'subdir/\n'
121
 
                       , recursive=False)
 
118
                       , '--non-recursive')
122
119
 
123
120
        self.ls_equals('V        .bzrignore\n'
124
121
                       'V        a\n'
125
122
                       'V        subdir/\n'
126
 
                       , '--verbose', recursive=False)
 
123
                       , '--verbose --non-recursive')
127
124
 
128
125
        # Check what happens in a sub-directory
129
126
        os.chdir('subdir')
130
127
        self.ls_equals('b\n')
131
128
        self.ls_equals('b\0'
132
129
                  , '--null')
133
 
        self.ls_equals('subdir/b\n'
 
130
        self.ls_equals('.bzrignore\n'
 
131
                       'a\n'
 
132
                       'subdir/\n'
 
133
                       'subdir/b\n'
134
134
                       , '--from-root')
135
 
        self.ls_equals('subdir/b\0'
 
135
        self.ls_equals('.bzrignore\0'
 
136
                       'a\0'
 
137
                       'subdir\0'
 
138
                       'subdir/b\0'
136
139
                       , '--from-root --null')
137
 
        self.ls_equals('subdir/b\n'
138
 
                       , '--from-root', recursive=False)
 
140
        self.ls_equals('.bzrignore\n'
 
141
                       'a\n'
 
142
                       'subdir/\n'
 
143
                       , '--from-root --non-recursive')
139
144
 
140
145
    def test_ls_path(self):
141
146
        """If a path is specified, files are listed with that prefix"""
159
164
                       'V        ../subdir/\n'
160
165
                       'V        ../subdir/b\n' ,
161
166
                       '.. --verbose')
162
 
        self.run_bzr_error(['cannot specify both --from-root and PATH'],
 
167
        self.run_bzr_error('cannot specify both --from-root and PATH',
163
168
                           'ls --from-root ..')
164
169
 
165
170
    def test_ls_revision(self):
228
233
                       '--kind=directory')
229
234
        self.ls_equals('',
230
235
                       '--kind=symlink')
231
 
        self.run_bzr_error(['invalid kind specified'], 'ls --kind=pile')
232
 
 
233
 
    def test_ls_path_nonrecursive(self):
234
 
        self.ls_equals('%s/.bzrignore\n'
235
 
                       '%s/a\n'
236
 
                       % (self.test_dir, self.test_dir),
237
 
                       self.test_dir, recursive=False)
238
 
 
239
 
    def test_ls_directory(self):
240
 
        """Test --directory option"""
241
 
        self.wt = self.make_branch_and_tree('dir')
242
 
        self.build_tree(['dir/sub/', 'dir/sub/file'])
243
 
        self.wt.add(['sub', 'sub/file'])
244
 
        self.wt.commit('commit')
245
 
        self.ls_equals('sub/\nsub/file\n', '--directory=dir')
246
 
        self.ls_equals('sub/file\n', '-d dir sub')
 
236
        self.run_bzr_error('invalid kind specified', 'ls --kind=pile')