~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Jelmer Vernooij
  • Date: 2012-02-07 00:49:58 UTC
  • mto: This revision was merged to the branch mainline in revision 6465.
  • Revision ID: jelmer@samba.org-20120207004958-rdtzmipi10p1oq97
Migrate 'bugtracker' setting to config stacks.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2006, 2007, 2009-2012 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 whoami."""
 
19
 
 
20
import bzrlib
 
21
from bzrlib import (
 
22
    config,
 
23
    errors,
 
24
    tests,
 
25
    )
 
26
 
 
27
 
 
28
class TestWhoami(tests.TestCaseWithTransport):
 
29
 
 
30
    def assertWhoAmI(self, expected, *cmd_args, **kwargs):
 
31
        out, err = self.run_bzr(('whoami',) + cmd_args, **kwargs)
 
32
        self.assertEquals('', err)
 
33
        lines = out.splitlines()
 
34
        self.assertLength(1, lines)
 
35
        self.assertEquals(expected, lines[0].rstrip())
 
36
 
 
37
    def test_whoami_no_args_no_conf(self):
 
38
        # this should always identify something, if only "john@localhost"
 
39
        out = self.run_bzr("whoami")[0]
 
40
        self.assertTrue(len(out) > 0)
 
41
        self.assertEquals(1, out.count('@'))
 
42
 
 
43
    def test_whoami_email_no_args(self):
 
44
        out = self.run_bzr("whoami --email")[0]
 
45
        self.assertTrue(len(out) > 0)
 
46
        self.assertEquals(1, out.count('@'))
 
47
 
 
48
    def test_whoami_email_arg(self):
 
49
        # whoami --email is mutually exclusive with any arguments
 
50
        out = self.run_bzr("whoami --email 'foo <foo@example.com>'", 3)[0]
 
51
        self.assertEquals("", out)
 
52
 
 
53
    def test_whoami_branch(self):
 
54
        """branch specific user identity works."""
 
55
        wt = self.make_branch_and_tree('.')
 
56
        b = bzrlib.branch.Branch.open('.')
 
57
        b.get_config_stack().set('email', 'Branch Identity <branch@identi.ty>')
 
58
        self.assertWhoAmI('Branch Identity <branch@identi.ty>')
 
59
        self.assertWhoAmI('branch@identi.ty', '--email')
 
60
 
 
61
        # Verify that the environment variable overrides the value
 
62
        # in the file
 
63
        self.overrideEnv('BZR_EMAIL', 'Different ID <other@environ.ment>')
 
64
        self.assertWhoAmI('Different ID <other@environ.ment>')
 
65
        self.assertWhoAmI('other@environ.ment', '--email')
 
66
 
 
67
    def test_whoami_utf8(self):
 
68
        """verify that an identity can be in utf-8."""
 
69
        self.run_bzr(['whoami', u'Branch Identity \u20ac <branch@identi.ty>'],
 
70
                     encoding='utf-8')
 
71
        self.assertWhoAmI('Branch Identity \xe2\x82\xac <branch@identi.ty>',
 
72
                          encoding='utf-8')
 
73
        self.assertWhoAmI('branch@identi.ty', '--email')
 
74
 
 
75
    def test_whoami_ascii(self):
 
76
        """
 
77
        verify that whoami doesn't totally break when in utf-8, using an ascii
 
78
        encoding.
 
79
        """
 
80
        wt = self.make_branch_and_tree('.')
 
81
        b = bzrlib.branch.Branch.open('.')
 
82
        b.get_config_stack().set(
 
83
            'email', u'Branch Identity \u20ac ' + '<branch@identi.ty>')
 
84
        self.assertWhoAmI('Branch Identity ? <branch@identi.ty>',
 
85
                          encoding='ascii')
 
86
        self.assertWhoAmI('branch@identi.ty', '--email',
 
87
                          encoding='ascii')
 
88
 
 
89
    def test_warning(self):
 
90
        """verify that a warning is displayed if no email is given."""
 
91
        self.make_branch_and_tree('.')
 
92
        display = self.run_bzr(['whoami', 'Branch Identity'])[1]
 
93
        self.assertEquals('"Branch Identity" does not seem to contain an '
 
94
                          'email address.  This is allowed, but not '
 
95
                          'recommended.\n', display)
 
96
 
 
97
    def test_whoami_not_set(self):
 
98
        """Ensure whoami error if username is not set and not inferred.
 
99
        """
 
100
        self.overrideEnv('EMAIL', None)
 
101
        self.overrideEnv('BZR_EMAIL', None)
 
102
        # Also, make sure that it's not inferred from mailname.
 
103
        self.overrideAttr(config, '_auto_user_id',
 
104
            lambda: (None, None))
 
105
        out, err = self.run_bzr(['whoami'], 3)
 
106
        self.assertContainsRe(err, 'Unable to determine your name')
 
107
 
 
108
    def test_whoami_directory(self):
 
109
        """Test --directory option."""
 
110
        wt = self.make_branch_and_tree('subdir')
 
111
        c = wt.branch.get_config_stack()
 
112
        c.set('email', 'Branch Identity <branch@identi.ty>')
 
113
        self.assertWhoAmI('Branch Identity <branch@identi.ty>',
 
114
                          '--directory', 'subdir')
 
115
        self.run_bzr(['whoami', '--directory', 'subdir', '--branch',
 
116
                      'Changed Identity <changed@identi.ty>'])
 
117
        c = wt.branch.get_config_stack()
 
118
        self.assertEquals('Changed Identity <changed@identi.ty>',
 
119
                          c.get('email'))
 
120
 
 
121
    def test_whoami_remote_directory(self):
 
122
        """Test --directory option with a remote directory."""
 
123
        wt = self.make_branch_and_tree('subdir')
 
124
        c = wt.branch.get_config_stack()
 
125
        c.set('email', 'Branch Identity <branch@identi.ty>')
 
126
        url = self.get_readonly_url() + '/subdir'
 
127
        self.assertWhoAmI('Branch Identity <branch@identi.ty>',
 
128
                          '--directory', url)
 
129
        url = self.get_url('subdir')
 
130
        self.run_bzr(['whoami', '--directory', url, '--branch',
 
131
                      'Changed Identity <changed@identi.ty>'])
 
132
        # The identity has been set in the branch config (but not the global
 
133
        # config)
 
134
        c = wt.branch.get_config_stack()
 
135
        self.assertEquals('Changed Identity <changed@identi.ty>',
 
136
                          c.get('email'))
 
137
        # Ensuring that the value does not come from the bazaar.conf file
 
138
        # itself requires some isolation setup
 
139
        self.overrideEnv('BZR_EMAIL', None)
 
140
        self.overrideEnv('EMAIL', None)
 
141
        self.overrideAttr(config, '_auto_user_id', lambda: (None, None))
 
142
        global_conf = config.GlobalStack()
 
143
        self.assertRaises(errors.NoWhoami, global_conf.get, 'email')
 
144
 
 
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')