1551.13.18
by Aaron Bentley
Add copyright notice |
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 |
||
1551.13.17
by Aaron Bentley
Move cat-revision tests out of test_revision_info |
17 |
from bzrlib.tests import blackbox |
18 |
||
19 |
||
20 |
class TestCatRevision(blackbox.ExternalBase): |
|
21 |
||
22 |
def test_cat_unicode_revision(self): |
|
1551.13.16
by Aaron Bentley
Fix cat-revision REVISION |
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) |
|
1551.13.17
by Aaron Bentley
Move cat-revision tests out of test_revision_info |
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') |