1
# Copyright (C) 2006 Canonical Ltd
 
 
3
# This program is free software; you can redistribute it and/or modify
 
 
4
# it under the terms of the GNU General Public License as published by
 
 
5
# the Free Software Foundation; either version 2 of the License, or
 
 
6
# (at your option) any later version.
 
 
8
# This program is distributed in the hope that it will be useful,
 
 
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
 
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
 
11
# GNU General Public License for more details.
 
 
13
# You should have received a copy of the GNU General Public License
 
 
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
 
 
17
"""External tests of 'bzr ls'"""
 
 
21
from bzrlib import ignores
 
 
22
from bzrlib.tests import TestCaseWithTransport
 
 
25
class TestLS(TestCaseWithTransport):
 
 
28
        super(TestLS, self).setUp()
 
 
30
        # Create a simple branch that can be used in testing
 
 
31
        ignores._set_user_ignores(['user-ignore'])
 
 
33
        self.wt = self.make_branch_and_tree('.')
 
 
34
        self.build_tree_contents([
 
 
35
                                 ('.bzrignore', '*.pyo\n'),
 
 
39
    def ls_equals(self, value, args=None):
 
 
43
        out, err = self.run_bzr(command)
 
 
44
        self.assertEqual('', err)
 
 
45
        self.assertEqualDiff(value, out)
 
 
47
    def test_ls_null_verbose(self):
 
 
49
        self.run_bzr_error(['Cannot set both --verbose and --null'],
 
 
50
                           'ls --verbose --null')
 
 
52
    def test_ls_basic(self):
 
 
53
        """Test the abilities of 'bzr ls'"""
 
 
54
        self.ls_equals('.bzrignore\na\n')
 
 
55
        self.ls_equals('?        .bzrignore\n'
 
 
58
        self.ls_equals('.bzrignore\n'
 
 
61
        self.ls_equals('', '--ignored')
 
 
62
        self.ls_equals('', '--versioned')
 
 
63
        self.ls_equals('.bzrignore\n'
 
 
65
                       '--unknown --ignored --versioned')
 
 
66
        self.ls_equals('', '--ignored --versioned')
 
 
67
        self.ls_equals('.bzrignore\0a\0', '--null')
 
 
69
    def test_ls_added(self):
 
 
71
        self.ls_equals('?        .bzrignore\n'
 
 
76
        self.build_tree(['subdir/'])
 
 
77
        self.ls_equals('?        .bzrignore\n'
 
 
81
        self.build_tree(['subdir/b'])
 
 
82
        self.wt.add(['subdir/', 'subdir/b', '.bzrignore'])
 
 
83
        self.ls_equals('V        .bzrignore\n'
 
 
89
    def test_show_ids(self):
 
 
90
        self.build_tree(['subdir/'])
 
 
91
        self.wt.add(['a', 'subdir'], ['a-id', 'subdir-id'])
 
 
100
            'V        subdir/                                   subdir-id\n', 
 
 
101
            '--show-ids --verbose')
 
 
102
        self.ls_equals('.bzrignore\0\0'
 
 
104
                       'subdir\0subdir-id\0', '--show-ids --null')
 
 
106
    def test_ls_recursive(self):
 
 
107
        self.build_tree(['subdir/', 'subdir/b'])
 
 
108
        self.wt.add(['a', 'subdir/', 'subdir/b', '.bzrignore'])
 
 
110
        self.ls_equals('.bzrignore\n'
 
 
115
        self.ls_equals('V        .bzrignore\n'
 
 
118
                       , '--verbose --non-recursive')
 
 
120
        # Check what happens in a sub-directory
 
 
122
        self.ls_equals('b\n')
 
 
125
        self.ls_equals('.bzrignore\n'
 
 
130
        self.ls_equals('.bzrignore\0'
 
 
134
                       , '--from-root --null')
 
 
135
        self.ls_equals('.bzrignore\n'
 
 
138
                       , '--from-root --non-recursive')
 
 
140
    def test_ls_path(self):
 
 
141
        """If a path is specified, files are listed with that prefix"""
 
 
142
        self.build_tree(['subdir/', 'subdir/b'])
 
 
143
        self.wt.add(['subdir', 'subdir/b'])
 
 
144
        self.ls_equals('subdir/b\n' ,
 
 
147
        self.ls_equals('../.bzrignore\n'
 
 
152
        self.ls_equals('../.bzrignore\0'
 
 
157
        self.ls_equals('?        ../.bzrignore\n'
 
 
162
        self.run_bzr_error('cannot specify both --from-root and PATH',
 
 
165
    def test_ls_revision(self):
 
 
167
        self.wt.commit('add')
 
 
169
        self.build_tree(['subdir/'])
 
 
171
        # Check what happens when we supply a specific revision
 
 
172
        self.ls_equals('a\n', '--revision 1')
 
 
173
        self.ls_equals('V        a\n'
 
 
174
                       , '--verbose --revision 1')
 
 
177
        self.ls_equals('', '--revision 1')
 
 
179
    def test_ls_branch(self):
 
 
180
        """If a branch is specified, files are listed from it"""
 
 
181
        self.build_tree(['subdir/', 'subdir/b'])
 
 
182
        self.wt.add(['subdir', 'subdir/b'])
 
 
183
        self.wt.commit('committing')
 
 
184
        branch = self.make_branch('branchdir')
 
 
185
        branch.pull(self.wt.branch)
 
 
186
        self.ls_equals('branchdir/subdir\n'
 
 
187
                       'branchdir/subdir/b\n',
 
 
189
        self.ls_equals('branchdir/subdir\n'
 
 
190
                       'branchdir/subdir/b\n',
 
 
191
                       'branchdir --revision 1')
 
 
193
    def test_ls_ignored(self):
 
 
194
        # Now try to do ignored files.
 
 
195
        self.wt.add(['a', '.bzrignore'])
 
 
197
        self.build_tree(['blah.py', 'blah.pyo', 'user-ignore'])
 
 
198
        self.ls_equals('.bzrignore\n'
 
 
204
        self.ls_equals('V        .bzrignore\n'
 
 
210
        self.ls_equals('blah.pyo\n'
 
 
213
        self.ls_equals('blah.py\n'
 
 
215
        self.ls_equals('.bzrignore\n'
 
 
219
    def test_kinds(self):
 
 
220
        self.build_tree(['subdir/'])
 
 
221
        self.ls_equals('.bzrignore\n' 
 
 
224
        self.ls_equals('subdir\n',
 
 
228
        self.run_bzr_error('invalid kind specified', 'ls --kind=pile')