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