15
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18
"""Black-box tests for bzr whoami."""
23
from bzrlib import osutils
24
from bzrlib.branch import Branch
25
from bzrlib.tests.blackbox import ExternalBase
28
class TestWhoami(ExternalBase):
30
def test_whoami(self):
18
"""Black-box tests for brz whoami."""
27
from ..test_bedding import override_whoami
30
class TestWhoami(tests.TestCaseWithTransport):
32
def assertWhoAmI(self, expected, *cmd_args, **kwargs):
33
out, err = self.run_bzr(('whoami',) + cmd_args, **kwargs)
34
self.assertEqual('', err)
35
lines = out.splitlines()
36
self.assertLength(1, lines)
37
if isinstance(expected, bytes):
38
expected = expected.decode(kwargs.get('encoding', 'ascii'))
39
self.assertEqual(expected, lines[0].rstrip())
41
def test_whoami_no_args_no_conf(self):
31
42
# this should always identify something, if only "john@localhost"
32
43
out = self.run_bzr("whoami")[0]
33
44
self.assertTrue(len(out) > 0)
34
self.assertEquals(1, out.count('@'))
45
self.assertEqual(1, out.count('@'))
47
def test_whoami_email_no_args(self):
36
48
out = self.run_bzr("whoami --email")[0]
37
49
self.assertTrue(len(out) > 0)
38
self.assertEquals(1, out.count('@'))
50
self.assertEqual(1, out.count('@'))
52
def test_whoami_email_arg(self):
53
# whoami --email is mutually exclusive with any arguments
54
out = self.run_bzr("whoami --email 'foo <foo@example.com>'", 3)[0]
55
self.assertEqual("", out)
57
def set_branch_email(self, b, email):
58
b.get_config_stack().set('email', email)
40
60
def test_whoami_branch(self):
41
61
"""branch specific user identity works."""
42
62
wt = self.make_branch_and_tree('.')
43
b = bzrlib.branch.Branch.open('.')
44
b.get_config().set_user_option('email',
45
'Branch Identity <branch@identi.ty>')
46
bzr_email = os.environ.get('BZR_EMAIL')
47
if bzr_email is not None:
48
del os.environ['BZR_EMAIL']
50
whoami = self.run_bzr("whoami")[0]
51
self.assertEquals('Branch Identity <branch@identi.ty>\n', whoami)
52
whoami_email = self.run_bzr("whoami --email")[0]
53
self.assertEquals('branch@identi.ty\n', whoami_email)
63
b = branch.Branch.open('.')
64
self.set_branch_email(b, 'Branch Identity <branch@identi.ty>')
65
self.assertWhoAmI('Branch Identity <branch@identi.ty>')
66
self.assertWhoAmI('branch@identi.ty', '--email')
55
# Verify that the environment variable overrides the value
57
os.environ['BZR_EMAIL'] = 'Different ID <other@environ.ment>'
58
whoami = self.run_bzr("whoami")[0]
59
self.assertEquals('Different ID <other@environ.ment>\n', whoami)
60
whoami_email = self.run_bzr("whoami --email")[0]
61
self.assertEquals('other@environ.ment\n', whoami_email)
62
del os.environ['BZR_EMAIL']
64
if bzr_email is not None:
65
os.environ['BZR_EMAIL'] = bzr_email
68
# Verify that the environment variable overrides the value
70
self.overrideEnv('BRZ_EMAIL', 'Different ID <other@environ.ment>')
71
self.assertWhoAmI('Different ID <other@environ.ment>')
72
self.assertWhoAmI('other@environ.ment', '--email')
67
74
def test_whoami_utf8(self):
68
75
"""verify that an identity can be in utf-8."""
69
wt = self.make_branch_and_tree('.')
70
76
self.run_bzr(['whoami', u'Branch Identity \u20ac <branch@identi.ty>'],
72
bzr_email = os.environ.get('BZR_EMAIL')
73
if bzr_email is not None:
74
del os.environ['BZR_EMAIL']
76
whoami = self.run_bzr("whoami", encoding='utf-8')[0]
77
self.assertEquals('Branch Identity \xe2\x82\xac ' +
78
'<branch@identi.ty>\n', whoami)
79
whoami_email = self.run_bzr("whoami --email",
81
self.assertEquals('branch@identi.ty\n', whoami_email)
83
if bzr_email is not None:
84
os.environ['BZR_EMAIL'] = bzr_email
78
self.assertWhoAmI(b'Branch Identity \xe2\x82\xac <branch@identi.ty>',
80
self.assertWhoAmI('branch@identi.ty', '--email')
86
82
def test_whoami_ascii(self):
91
87
wt = self.make_branch_and_tree('.')
92
b = bzrlib.branch.Branch.open('.')
93
b.get_config().set_user_option('email', u'Branch Identity \u20ac ' +
95
bzr_email = os.environ.get('BZR_EMAIL')
96
if bzr_email is not None:
97
del os.environ['BZR_EMAIL']
99
whoami = self.run_bzr("whoami", encoding='ascii')[0]
100
self.assertEquals('Branch Identity ? <branch@identi.ty>\n', whoami)
101
whoami_email = self.run_bzr("whoami --email",
103
self.assertEquals('branch@identi.ty\n', whoami_email)
105
if bzr_email is not None:
106
os.environ['BZR_EMAIL'] = bzr_email
88
b = branch.Branch.open('.')
89
self.set_branch_email(b, u'Branch Identity \u20ac <branch@identi.ty>')
90
self.assertWhoAmI('Branch Identity ? <branch@identi.ty>',
92
self.assertWhoAmI('branch@identi.ty', '--email',
108
95
def test_warning(self):
109
96
"""verify that a warning is displayed if no email is given."""
110
97
self.make_branch_and_tree('.')
111
98
display = self.run_bzr(['whoami', 'Branch Identity'])[1]
112
self.assertEquals('"Branch Identity" does not seem to contain an '
113
'email address. This is allowed, but not '
114
'recommended.\n', display)
99
self.assertEqual('"Branch Identity" does not seem to contain an '
100
'email address. This is allowed, but not '
101
'recommended.\n', display)
116
103
def test_whoami_not_set(self):
117
"""Ensure whoami error if username is not set.
104
"""Ensure whoami error if username is not set and not inferred.
119
osutils.set_or_unset_env('EMAIL', None)
120
osutils.set_or_unset_env('BZR_EMAIL', None)
106
override_whoami(self)
121
107
out, err = self.run_bzr(['whoami'], 3)
122
108
self.assertContainsRe(err, 'Unable to determine your name')
110
def test_whoami_directory(self):
111
"""Test --directory option."""
112
wt = self.make_branch_and_tree('subdir')
113
self.set_branch_email(wt.branch, 'Branch Identity <branch@identi.ty>')
114
self.assertWhoAmI('Branch Identity <branch@identi.ty>',
115
'--directory', 'subdir')
116
self.run_bzr(['whoami', '--directory', 'subdir', '--branch',
117
'Changed Identity <changed@identi.ty>'])
118
# Refresh wt as 'whoami' modified it
119
wt = wt.controldir.open_workingtree()
120
c = wt.branch.get_config_stack()
121
self.assertEqual('Changed Identity <changed@identi.ty>',
124
def test_whoami_remote_directory(self):
125
"""Test --directory option with a remote directory."""
126
wt = self.make_branch_and_tree('subdir')
127
self.set_branch_email(wt.branch, 'Branch Identity <branch@identi.ty>')
128
url = self.get_readonly_url() + '/subdir'
129
self.assertWhoAmI('Branch Identity <branch@identi.ty>',
131
url = self.get_url('subdir')
132
self.run_bzr(['whoami', '--directory', url, '--branch',
133
'Changed Identity <changed@identi.ty>'])
134
# The identity has been set in the branch config (but not the global
136
c = branch.Branch.open(url).get_config_stack()
137
self.assertEqual('Changed Identity <changed@identi.ty>',
139
# Ensuring that the value does not come from the breezy.conf file
140
# itself requires some isolation setup
141
override_whoami(self)
142
global_conf = config.GlobalStack()
143
self.assertRaises(errors.NoWhoami, global_conf.get, 'email')
145
def test_whoami_nonbranch_directory(self):
146
"""Test --directory mentioning a non-branch directory."""
147
wt = self.build_tree(['subdir/'])
148
out, err = self.run_bzr("whoami --directory subdir", retcode=3)
149
self.assertContainsRe(err, 'ERROR: Not a branch')