~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/blackbox/test_cat.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) 2005-2010 Canonical Ltd
 
1
# Copyright (C) 2005 Canonical Ltd
2
2
# -*- coding: utf-8 -*-
3
3
#
4
4
# This program is free software; you can redistribute it and/or modify
13
13
#
14
14
# You should have received a copy of the GNU General Public License
15
15
# along with this program; if not, write to the Free Software
16
 
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
16
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
17
 
18
18
 
19
19
"""Black-box tests for bzr cat.
20
20
"""
21
21
 
22
22
import os
23
 
 
24
 
from bzrlib import tests
25
 
from bzrlib.transport import memory
26
 
 
27
 
 
28
 
class TestCat(tests.TestCaseWithTransport):
 
23
import sys
 
24
 
 
25
from bzrlib.tests.blackbox import TestCaseWithTransport
 
26
 
 
27
class TestCat(TestCaseWithTransport):
29
28
 
30
29
    def test_cat(self):
31
30
        tree = self.make_branch_and_tree('branch')
69
68
 
70
69
    def test_cat_different_id(self):
71
70
        """'cat' works with old and new files"""
72
 
        self.disable_missing_extensions_warning()
73
71
        tree = self.make_branch_and_tree('.')
74
72
        # the files are named after their path in the revision and
75
73
        # current trees later in the test case
128
126
        out, err = self.run_bzr_subprocess(['cat', url])
129
127
        self.assertEqual('contents of README\n', out)
130
128
 
131
 
    def test_cat_branch_revspec(self):
132
 
        wt = self.make_branch_and_tree('a')
133
 
        self.build_tree(['a/README'])
134
 
        wt.add('README')
135
 
        wt.commit('Making sure there is a basis_tree available')
136
 
        wt = self.make_branch_and_tree('b')
137
 
        os.chdir('b')
138
 
 
139
 
        out, err = self.run_bzr_subprocess(
140
 
            ['cat', '-r', 'branch:../a', 'README'])
141
 
        self.assertEqual('contents of a/README\n', out)
142
 
 
143
 
    def test_cat_filters(self):
144
 
        wt = self.make_branch_and_tree('.')
145
 
        self.build_tree(['README'])
146
 
        wt.add('README')
147
 
        wt.commit('Making sure there is a basis_tree available')
148
 
        url = self.get_readonly_url() + '/README'
149
 
 
150
 
        # Test unfiltered output
151
 
        out, err = self.run_bzr_subprocess(['cat', url])
152
 
        self.assertEqual('contents of README\n', out)
153
 
 
154
 
        # Test --filters option is legal but has no impact if no filters
155
 
        out, err = self.run_bzr_subprocess(['cat', '--filters', url])
156
 
        self.assertEqual('contents of README\n', out)
157
 
 
158
 
    def test_cat_filters_applied(self):
159
 
        # Test filtering applied to output. This is tricky to do in a
160
 
        # subprocess because we really need to patch in a plugin that
161
 
        # registers the filters. Instead, we patch in a custom
162
 
        # filter_stack and use run_bzr() ...
163
 
        from cStringIO import StringIO
164
 
        from bzrlib.commands import run_bzr
165
 
        from bzrlib.tests.test_filters import _stack_2
166
 
        from bzrlib.trace import mutter
167
 
        from bzrlib.tree import Tree
168
 
        wt = self.make_branch_and_tree('.')
169
 
        self.build_tree_contents([
170
 
            ('README', "junk\nline 1 of README\nline 2 of README\n"),
171
 
            ])
172
 
        wt.add('README')
173
 
        wt.commit('Making sure there is a basis_tree available')
174
 
        url = self.get_readonly_url() + '/README'
175
 
        real_content_filter_stack = Tree._content_filter_stack
176
 
        def _custom_content_filter_stack(tree, path=None, file_id=None):
177
 
            return _stack_2
178
 
        Tree._content_filter_stack = _custom_content_filter_stack
179
 
        try:
180
 
            out, err = self.run_bzr(['cat', url, '--filters'])
181
 
            # The filter stack will remove the first line and swapcase the rest
182
 
            self.assertEqual('LINE 1 OF readme\nLINE 2 OF readme\n', out)
183
 
            self.assertEqual('', err)
184
 
        finally:
185
 
            Tree._content_filter_stack = real_content_filter_stack
186
 
 
187
129
    def test_cat_no_working_tree(self):
188
130
        wt = self.make_branch_and_tree('.')
189
131
        self.build_tree(['README'])
196
138
        self.assertEqual('contents of README\n', out)
197
139
 
198
140
    def test_cat_nonexistent_branch(self):
199
 
        self.vfs_transport_factory = memory.MemoryServer
200
 
        self.run_bzr_error(['^bzr: ERROR: Not a branch'],
201
 
                           ['cat', self.get_url()])
202
 
 
203
 
    def test_cat_directory(self):
204
 
        wt = self.make_branch_and_tree('a')
205
 
        self.build_tree(['a/README'])
206
 
        wt.add('README')
207
 
        wt.commit('Making sure there is a basis_tree available')
208
 
 
209
 
        out, err = self.run_bzr_subprocess(['cat', '--directory=a', 'README'])
210
 
        self.assertEqual('contents of a/README\n', out)
211
 
 
212
 
    def test_cat_remote_directory(self):
213
 
        wt = self.make_branch_and_tree('a')
214
 
        self.build_tree(['a/README'])
215
 
        wt.add('README')
216
 
        wt.commit('Making sure there is a basis_tree available')
217
 
 
218
 
        url = self.get_readonly_url() + '/a'
219
 
        out, err = self.run_bzr_subprocess(['cat', '-d', url, 'README'])
220
 
        self.assertEqual('contents of a/README\n', out)
 
141
        if sys.platform == "win32":
 
142
            location = "C:/i/do/not/exist"
 
143
        else:
 
144
            location = "/i/do/not/exist"
 
145
        self.run_bzr_error(['^bzr: ERROR: Not a branch'], ['cat', location])