~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: 2010-09-29 22:03:03 UTC
  • mfrom: (5416.2.6 jam-integration)
  • Revision ID: pqm@pqm.ubuntu.com-20100929220303-cr95h8iwtggco721
(mbp) Add 'break-lock --force'

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005 Canonical Ltd
 
1
# Copyright (C) 2005-2010 Canonical Ltd
2
2
# -*- coding: utf-8 -*-
3
3
#
4
4
# This program is free software; you can redistribute it and/or modify
20
20
"""
21
21
 
22
22
import os
23
 
import sys
24
 
 
25
 
from bzrlib.tests.blackbox import TestCaseWithTransport
26
 
 
27
 
class TestCat(TestCaseWithTransport):
 
23
 
 
24
from bzrlib import tests
 
25
from bzrlib.transport import memory
 
26
 
 
27
 
 
28
class TestCat(tests.TestCaseWithTransport):
28
29
 
29
30
    def test_cat(self):
30
31
        tree = self.make_branch_and_tree('branch')
68
69
 
69
70
    def test_cat_different_id(self):
70
71
        """'cat' works with old and new files"""
 
72
        self.disable_missing_extensions_warning()
71
73
        tree = self.make_branch_and_tree('.')
72
74
        # the files are named after their path in the revision and
73
75
        # current trees later in the test case
126
128
        out, err = self.run_bzr_subprocess(['cat', url])
127
129
        self.assertEqual('contents of README\n', out)
128
130
 
 
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
 
129
143
    def test_cat_filters(self):
130
144
        wt = self.make_branch_and_tree('.')
131
145
        self.build_tree(['README'])
182
196
        self.assertEqual('contents of README\n', out)
183
197
 
184
198
    def test_cat_nonexistent_branch(self):
185
 
        if sys.platform == "win32":
186
 
            location = "C:/i/do/not/exist"
187
 
        else:
188
 
            location = "/i/do/not/exist"
189
 
        self.run_bzr_error(['^bzr: ERROR: Not a branch'], ['cat', location])
 
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)