/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

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

  • Committer: Matthew Fuller
  • Date: 2009-07-25 15:21:25 UTC
  • mto: (4772.1.1 integration)
  • mto: This revision was merged to the branch mainline in revision 4773.
  • Revision ID: fullermd@over-yonder.net-20090725152125-2mzil0setr85g0no
Adjust documentation in the user guide a bit to correspond to DWIM
revspecs.

This is untested, as I don't have the tools to build the docs.  It's
also really not as clean as it could be, and there are probably much
better ways to put this info in here.  But it's something.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2005, 2006, 2007, 2009 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
16
 
 
17
 
 
18
"""Black-box tests for bzr revno.
 
19
"""
 
20
 
 
21
import os
 
22
 
 
23
from bzrlib import tests
 
24
 
 
25
class TestRevno(tests.TestCaseWithTransport):
 
26
 
 
27
    def test_revno(self):
 
28
 
 
29
        def bzr(*args, **kwargs):
 
30
            return self.run_bzr(*args, **kwargs)[0]
 
31
 
 
32
        os.mkdir('a')
 
33
        os.chdir('a')
 
34
        bzr('init')
 
35
        self.assertEquals(int(bzr('revno')), 0)
 
36
 
 
37
        open('foo', 'wb').write('foo\n')
 
38
        bzr('add foo')
 
39
        bzr('commit -m foo')
 
40
        self.assertEquals(int(bzr('revno')), 1)
 
41
 
 
42
        os.mkdir('baz')
 
43
        bzr('add baz')
 
44
        bzr('commit -m baz')
 
45
        self.assertEquals(int(bzr('revno')), 2)
 
46
 
 
47
        os.chdir('..')
 
48
        self.assertEquals(int(bzr('revno a')), 2)
 
49
        self.assertEquals(int(bzr('revno a/baz')), 2)
 
50
 
 
51
    def test_revno_tree(self):
 
52
        # Make branch and checkout
 
53
        wt = self.make_branch_and_tree('branch')
 
54
        checkout = wt.branch.create_checkout('checkout', lightweight=True)
 
55
 
 
56
        # Get the checkout out of date
 
57
        self.build_tree(['branch/file'])
 
58
        wt.add(['file'])
 
59
        wt.commit('mkfile')
 
60
 
 
61
        # Make sure revno says we're on 1
 
62
        out,err = self.run_bzr('revno checkout')
 
63
        self.assertEqual('', err)
 
64
        self.assertEqual('1\n', out)
 
65
 
 
66
        # Make sure --tree knows it's still on 0
 
67
        out,err = self.run_bzr('revno --tree checkout')
 
68
        self.assertEqual('', err)
 
69
        self.assertEqual('0\n', out)
 
70
 
 
71
    def test_revno_tree_no_tree(self):
 
72
        # Make treeless branch
 
73
        b = self.make_branch('branch')
 
74
 
 
75
        # Try getting it's --tree revno
 
76
        out,err = self.run_bzr('revno --tree branch', retcode=3)
 
77
        self.assertEqual('', out)
 
78
        self.assertEqual('bzr: ERROR: No WorkingTree exists for "branch".\n',
 
79
            err)
 
80
 
 
81
    def test_dotted_revno_tree(self):
 
82
        builder = self.make_branch_builder('branch')
 
83
        builder.start_series()
 
84
        builder.build_snapshot('A-id', None, [
 
85
            ('add', ('', 'root-id', 'directory', None)),
 
86
            ('add', ('file', 'file-id', 'file', 'content\n'))])
 
87
        builder.build_snapshot('B-id', ['A-id'], [])
 
88
        builder.build_snapshot('C-id', ['A-id', 'B-id'], [])
 
89
        builder.finish_series()
 
90
        b = builder.get_branch()
 
91
        co_b = b.create_checkout('checkout_b', lightweight=True,
 
92
                                 revision_id='B-id')
 
93
        out, err = self.run_bzr('revno checkout_b')
 
94
        self.assertEqual('', err)
 
95
        self.assertEqual('2\n', out)
 
96
        out, err = self.run_bzr('revno --tree checkout_b')
 
97
        self.assertEqual('', err)
 
98
        self.assertEqual('1.1.1\n', out)
 
99
 
 
100
    def test_stale_revno_tree(self):
 
101
        builder = self.make_branch_builder('branch')
 
102
        builder.start_series()
 
103
        builder.build_snapshot('A-id', None, [
 
104
            ('add', ('', 'root-id', 'directory', None)),
 
105
            ('add', ('file', 'file-id', 'file', 'content\n'))])
 
106
        builder.build_snapshot('B-id', ['A-id'], [])
 
107
        builder.build_snapshot('C-id', ['A-id'], [])
 
108
        builder.finish_series()
 
109
        b = builder.get_branch()
 
110
        # The branch is now at "C-id", but the checkout is still at "B-id"
 
111
        # which is no longer in the history
 
112
        co_b = b.create_checkout('checkout_b', lightweight=True,
 
113
                                 revision_id='B-id')
 
114
        out, err = self.run_bzr('revno checkout_b')
 
115
        self.assertEqual('', err)
 
116
        self.assertEqual('2\n', out)
 
117
        out, err = self.run_bzr('revno --tree checkout_b')
 
118
        self.assertEqual('', err)
 
119
        self.assertEqual('???\n', out)