~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Robert Collins
  • Date: 2007-07-04 08:08:13 UTC
  • mfrom: (2572 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2587.
  • Revision ID: robertc@robertcollins.net-20070704080813-wzebx0r88fvwj5rq
Merge bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2004, 2005, 2007 Canonical Ltd
 
2
#
 
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.
 
7
#
 
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.
 
12
#
 
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
 
16
 
 
17
from bzrlib.tests import blackbox
 
18
 
 
19
 
 
20
class TestCatRevision(blackbox.ExternalBase):
 
21
 
 
22
    def test_cat_unicode_revision(self):
 
23
        tree = self.make_branch_and_tree('.')
 
24
        tree.commit('This revision', rev_id='abcd')
 
25
        output, errors = self.run_bzr('cat-revision', u'abcd')
 
26
        self.assertContainsRe(output, 'This revision')
 
27
        self.assertEqual('', errors)
 
28
 
 
29
    def test_cat_revision(self):
 
30
        """Test bzr cat-revision.
 
31
        """
 
32
        wt = self.make_branch_and_tree('.')
 
33
        r = wt.branch.repository
 
34
 
 
35
        wt.commit('Commit one', rev_id='a@r-0-1')
 
36
        wt.commit('Commit two', rev_id='a@r-0-2')
 
37
        wt.commit('Commit three', rev_id='a@r-0-3')
 
38
 
 
39
        revs = {
 
40
            1:r.get_revision_xml('a@r-0-1'),
 
41
            2:r.get_revision_xml('a@r-0-2'),
 
42
            3:r.get_revision_xml('a@r-0-3'),
 
43
        }
 
44
 
 
45
        self.check_output(revs[1], 'cat-revision', 'a@r-0-1')
 
46
        self.check_output(revs[2], 'cat-revision', 'a@r-0-2')
 
47
        self.check_output(revs[3], 'cat-revision', 'a@r-0-3')
 
48
 
 
49
        self.check_output(revs[1], 'cat-revision', '-r', '1')
 
50
        self.check_output(revs[2], 'cat-revision', '-r', '2')
 
51
        self.check_output(revs[3], 'cat-revision', '-r', '3')
 
52
 
 
53
        self.check_output(revs[1], 'cat-revision', '-r', 'revid:a@r-0-1')
 
54
        self.check_output(revs[2], 'cat-revision', '-r', 'revid:a@r-0-2')
 
55
        self.check_output(revs[3], 'cat-revision', '-r', 'revid:a@r-0-3')