1
# Copyright (C) 2005, 2006 Canonical Ltd
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
17
"""Black-box tests for bzr nick."""
22
from bzrlib import osutils
23
from bzrlib.tests.blackbox import ExternalBase
26
class TestNick(ExternalBase):
28
def test_nick_command(self):
29
"""bzr nick for viewing, setting nicknames"""
30
self.make_branch_and_tree('me.dev')
32
nick = self.run_bzr('nick')[0]
33
self.assertEqual(nick, 'me.dev\n')
35
self.run_bzr("nick moo")
36
nick = self.run_bzr('nick')[0]
37
self.assertEqual(nick, 'moo\n')
39
def test_autonick_urlencoded(self):
40
# https://bugs.launchpad.net/bzr/+bug/66857 -- nick was printed
41
# urlencoded but shouldn't be
42
self.make_branch_and_tree('!repo')
44
nick = self.run_bzr('nick')[0]
45
self.assertEqual(nick, '!repo\n')
47
def test_bound_nick(self):
48
"""Check that nick works well for checkouts."""
49
base = self.make_branch_and_tree('base')
50
child = self.make_branch_and_tree('child')
52
self.assertEqual(self.run_bzr('nick')[0][:-1], 'child')
53
self.assertEqual(child.branch.get_config().has_explicit_nickname(),
55
self.run_bzr('bind ../base')
56
self.assertEqual(self.run_bzr('nick')[0][:-1], base.branch.nick)
57
self.assertEqual(child.branch.get_config().has_explicit_nickname(),
60
self.run_bzr('unbind')
61
self.run_bzr("nick explicit_nick")
62
self.assertEqual(self.run_bzr('nick')[0][:-1], "explicit_nick")
63
self.assertEqual(child.branch.get_config()._get_explicit_nickname(),
65
self.run_bzr('bind ../base')
66
self.assertEqual(self.run_bzr('nick')[0][:-1], base.branch.nick)
67
self.assertEqual(child.branch.get_config()._get_explicit_nickname(),
70
def test_boundless_nick(self):
71
"""Nick defaults to implicit local nick when bound branch is AWOL"""
72
base = self.make_branch_and_tree('base')
73
child = self.make_branch_and_tree('child')
75
self.run_bzr('bind ../base')
76
self.assertEqual(self.run_bzr('nick')[0][:-1], base.branch.nick)
77
self.assertEqual(child.branch.get_config().has_explicit_nickname(),
79
osutils.rmtree('../base')
80
self.assertEqual(self.run_bzr('nick')[0][:-1], 'child')