1
# Copyright (C) 2006, Michael Ellerman
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
18
from bzrlib.tests import TestCaseWithTransport
19
from bzrlib.branch import Branch
22
class TestRevisionHistory(TestCaseWithTransport):
24
def _build_branch(self):
25
# setup a standalone branch with three commits
26
tree = self.make_branch_and_tree('test')
27
open('test/foo', 'wb').write('1111\n')
29
tree.commit('added foo',rev_id='revision_1')
30
open('test/foo', 'wb').write('2222\n')
31
tree.commit('updated foo',rev_id='revision_2')
32
open('test/foo', 'wb').write('3333\n')
33
tree.commit('updated foo again',rev_id='revision_3')
36
def _check_revision_history(self, location=''):
37
rh = self.capture('revision-history ' + location)
38
self.assertEqual(rh, 'revision_1\nrevision_2\nrevision_3\n')
40
def test_revision_history(self):
41
"""Tests 'revision_history' command"""
44
self._check_revision_history()
46
def test_revision_history_with_location(self):
47
"""Tests 'revision_history' command with a specified location."""
49
self._check_revision_history('test')
51
def test_revision_history_with_repo_branch(self):
52
"""Tests 'revision_history' command with a location that is a
55
self.run_bzr('init-repo', 'repo')
56
self.run_bzr('branch', 'test', 'repo/test')
57
self._check_revision_history('repo/test')
59
def test_revision_history_with_checkout(self):
60
"""Tests 'revision_history' command with a location that is a
61
checkout of a repository branch."""
63
self.run_bzr('init-repo', 'repo')
64
self.run_bzr('branch', 'test', 'repo/test')
65
self.run_bzr('checkout', 'repo/test', 'test-checkout')
66
self._check_revision_history('test-checkout')
68
def test_revision_history_with_lightweight_checkout(self):
69
"""Tests 'revision_history' command with a location that is a
70
lightweight checkout of a repository branch."""
72
self.run_bzr('init-repo', 'repo')
73
self.run_bzr('branch', 'test', 'repo/test')
74
self.run_bzr('checkout', '--lightweight', 'repo/test', 'test-checkout')
75
self._check_revision_history('test-checkout')