~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

Compare URLs in RemoteRepository.__eq__, rather than '_client' attributes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
"""Black-box tests for bzr missing.
2
 
"""
 
1
# Copyright (C) 2005 Canonical Ltd
 
2
# -*- coding: utf-8 -*-
 
3
# vim: encoding=utf-8
 
4
#
 
5
# This program is free software; you can redistribute it and/or modify
 
6
# it under the terms of the GNU General Public License as published by
 
7
# the Free Software Foundation; either version 2 of the License, or
 
8
# (at your option) any later version.
 
9
#
 
10
# This program is distributed in the hope that it will be useful,
 
11
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
# GNU General Public License for more details.
 
14
#
 
15
# You should have received a copy of the GNU General Public License
 
16
# along with this program; if not, write to the Free Software
 
17
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
18
 
 
19
"""Black-box tests for bzr missing."""
3
20
 
4
21
import os
5
22
 
 
23
from bzrlib import osutils
 
24
 
6
25
from bzrlib.branch import Branch
7
 
from bzrlib.tests import TestCaseInTempDir
8
 
 
9
 
class TestMissing(TestCaseInTempDir):
 
26
from bzrlib.tests import TestCaseWithTransport
 
27
 
 
28
 
 
29
class TestMissing(TestCaseWithTransport):
 
30
 
10
31
    def test_missing(self):
 
32
        def bzr(*args, **kwargs):
 
33
            return self.run_bzr(*args, **kwargs)[0]
11
34
        missing = "You are missing 1 revision(s):"
12
35
 
13
36
        # create a source branch
14
37
        os.mkdir('a')
15
38
        os.chdir('a')
16
 
        self.capture('init')
 
39
        bzr('init')
17
40
        open('a', 'wb').write('initial\n')
18
 
        self.capture('add a')
19
 
        self.capture('commit -m inital')
 
41
        bzr('add a')
 
42
        bzr('commit -m inital')
20
43
 
21
44
        # clone and add a differing revision
22
 
        self.capture('branch . ../b')
 
45
        bzr('branch . ../b')
23
46
        os.chdir('../b')
24
47
        open('a', 'ab').write('more\n')
25
 
        self.capture('commit -m more')
 
48
        bzr('commit -m more')
26
49
 
27
 
        # compare a against b
 
50
        # run missing in a against b
28
51
        os.chdir('../a')
29
 
        lines = self.capture('missing ../b', retcode=1).splitlines()
 
52
        # this should not require missing to take out a write lock on a 
 
53
        # or b. So we take a write lock on both to test that at the same
 
54
        # time. This may let the test pass while the default branch is an
 
55
        # os-locking branch, but it will trigger failures with lockdir based
 
56
        # branches.
 
57
        branch_a = Branch.open('.')
 
58
        branch_a.lock_write()
 
59
        branch_b = Branch.open('../b')
 
60
        branch_b.lock_write()
 
61
        out,err = self.run_bzr('missing ../b', retcode=1)
 
62
        lines = out.splitlines()
30
63
        # we're missing the extra revision here
31
64
        self.assertEqual(missing, lines[0])
 
65
        # and we expect 8 lines of output which we trust at the moment to be
 
66
        # good.
32
67
        self.assertEqual(8, len(lines))
 
68
        # we do not expect any error output.
 
69
        self.assertEqual('', err)
 
70
        # unlock the branches for the rest of the test
 
71
        branch_a.unlock()
 
72
        branch_b.unlock()
33
73
 
34
74
        # get extra revision from b
35
 
        self.capture('merge ../b')
36
 
        self.capture('commit -m merge')
 
75
        bzr('merge ../b')
 
76
        bzr('commit -m merge')
37
77
 
38
78
        # compare again, but now we have the 'merge' commit extra
39
 
        lines = self.capture('missing ../b', retcode=1).splitlines()
 
79
        lines = bzr('missing ../b', retcode=1).splitlines()
40
80
        self.assertEqual("You have 1 extra revision(s):", lines[0])
41
81
        self.assertEqual(8, len(lines))
42
 
        lines2 = self.capture('missing ../b --mine-only', retcode=1)
 
82
        lines2 = bzr('missing ../b --mine-only', retcode=1)
43
83
        lines2 = lines2.splitlines()
44
84
        self.assertEqual(lines, lines2)
45
 
        lines3 = self.capture('missing ../b --theirs-only', retcode=1)
 
85
        lines3 = bzr('missing ../b --theirs-only', retcode=1)
46
86
        lines3 = lines3.splitlines()
47
87
        self.assertEqual(0, len(lines3))
48
88
 
49
89
        # relative to a, missing the 'merge' commit 
50
90
        os.chdir('../b')
51
 
        lines = self.capture('missing ../a', retcode=1).splitlines()
 
91
        lines = bzr('missing ../a', retcode=1).splitlines()
52
92
        self.assertEqual(missing, lines[0])
53
93
        self.assertEqual(8, len(lines))
54
 
        lines2 = self.capture('missing ../a --theirs-only', retcode=1)
 
94
        lines2 = bzr('missing ../a --theirs-only', retcode=1)
55
95
        lines2 = lines2.splitlines()
56
96
        self.assertEqual(lines, lines2)
57
 
        lines3 = self.capture('missing ../a --mine-only', retcode=1)
 
97
        lines3 = bzr('missing ../a --mine-only', retcode=1)
58
98
        lines3 = lines3.splitlines()
59
99
        self.assertEqual(0, len(lines3))
60
 
        lines4 = self.capture('missing ../a --short', retcode=1)
 
100
        lines4 = bzr('missing ../a --short', retcode=1)
61
101
        lines4 = lines4.splitlines()
62
102
        self.assertEqual(4, len(lines4))
63
 
        lines5 = self.capture('missing ../a --line', retcode=1)
 
103
        lines5 = bzr('missing ../a --line', retcode=1)
64
104
        lines5 = lines5.splitlines()
65
105
        self.assertEqual(2, len(lines5))
66
 
        lines6 = self.capture('missing ../a --reverse', retcode=1)
 
106
        lines6 = bzr('missing ../a --reverse', retcode=1)
67
107
        lines6 = lines6.splitlines()
68
108
        self.assertEqual(lines6, lines)
69
 
        lines7 = self.capture('missing ../a --show-ids', retcode=1)
 
109
        lines7 = bzr('missing ../a --show-ids', retcode=1)
70
110
        lines7 = lines7.splitlines()
71
111
        self.assertEqual(11, len(lines7))
72
 
        lines8 = self.capture('missing ../a --verbose', retcode=1)
 
112
        lines8 = bzr('missing ../a --verbose', retcode=1)
73
113
        lines8 = lines8.splitlines()
74
114
        self.assertEqual("modified:", lines8[-2])
75
115
        self.assertEqual("  a", lines8[-1])
76
116
 
77
 
        
78
117
        # after a pull we're back on track
79
 
        self.capture('pull')
80
 
        self.assertEqual("Branches are up to date.\n", 
81
 
                         self.capture('missing ../a'))
82
 
 
 
118
        bzr('pull')
 
119
        self.assertEqual("Branches are up to date.\n", bzr('missing ../a'))
 
120
 
 
121
    def test_missing_check_last_location(self):
 
122
        # check that last location shown as filepath not file URL
 
123
 
 
124
        # create a source branch
 
125
        os.mkdir('a')
 
126
        os.chdir('a')
 
127
        wt = self.make_branch_and_tree('.')
 
128
        b = wt.branch
 
129
        self.build_tree(['foo'])
 
130
        wt.add('foo')
 
131
        wt.commit('initial')
 
132
 
 
133
        location = osutils.getcwd() + '/'
 
134
 
 
135
        # clone
 
136
        b.bzrdir.sprout('../b')
 
137
 
 
138
        # check last location
 
139
        lines, err = self.run_bzr('missing', working_dir='../b')
 
140
        self.assertEquals('Using last location: %s\n'
 
141
                          'Branches are up to date.\n' % location,
 
142
                          lines)
 
143
        self.assertEquals('', err)