~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

(robertc) Fix lp: urls behind an https proxy.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2006, 2007, 2009, 2010, 2011 Canonical Ltd
 
1
# Copyright (C) 2006 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
17
17
 
18
18
"""Black-box tests for bzr whoami."""
19
19
 
 
20
import os
 
21
 
20
22
import bzrlib
21
 
from bzrlib import (
22
 
    config,
23
 
    tests,
24
 
    )
25
 
 
26
 
 
27
 
class TestWhoami(tests.TestCaseWithTransport):
28
 
 
29
 
    def assertWhoAmI(self, expected, *cmd_args, **kwargs):
30
 
        out, err = self.run_bzr(('whoami',) + cmd_args, **kwargs)
31
 
        self.assertEquals('', err)
32
 
        lines = out.splitlines()
33
 
        self.assertLength(1, lines)
34
 
        self.assertEquals(expected, lines[0].rstrip())
35
 
 
36
 
    def test_whoami_no_args_no_conf(self):
 
23
from bzrlib import osutils
 
24
from bzrlib.branch import Branch
 
25
from bzrlib.tests.blackbox import ExternalBase
 
26
 
 
27
 
 
28
class TestWhoami(ExternalBase):
 
29
 
 
30
    def test_whoami(self):
37
31
        # this should always identify something, if only "john@localhost"
38
32
        out = self.run_bzr("whoami")[0]
39
33
        self.assertTrue(len(out) > 0)
40
34
        self.assertEquals(1, out.count('@'))
41
35
 
42
 
    def test_whoami_email_no_args(self):
43
36
        out = self.run_bzr("whoami --email")[0]
44
37
        self.assertTrue(len(out) > 0)
45
38
        self.assertEquals(1, out.count('@'))
46
39
 
47
 
    def test_whoami_email_arg(self):
48
 
        # whoami --email is mutually exclusive with any arguments
49
 
        out = self.run_bzr("whoami --email 'foo <foo@example.com>'", 3)[0]
50
 
        self.assertEquals("", out)
51
 
 
52
40
    def test_whoami_branch(self):
53
41
        """branch specific user identity works."""
54
42
        wt = self.make_branch_and_tree('.')
55
43
        b = bzrlib.branch.Branch.open('.')
56
44
        b.get_config().set_user_option('email',
57
45
                                       'Branch Identity <branch@identi.ty>')
58
 
        self.assertWhoAmI('Branch Identity <branch@identi.ty>')
59
 
        self.assertWhoAmI('branch@identi.ty', '--email')
 
46
        bzr_email = os.environ.get('BZR_EMAIL')
 
47
        if bzr_email is not None:
 
48
            del os.environ['BZR_EMAIL']
 
49
        try:
 
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)
60
54
 
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')
 
55
            # Verify that the environment variable overrides the value
 
56
            # in the file
 
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']
 
63
        finally:
 
64
            if bzr_email is not None:
 
65
                os.environ['BZR_EMAIL'] = bzr_email
66
66
 
67
67
    def test_whoami_utf8(self):
68
68
        """verify that an identity can be in utf-8."""
 
69
        wt = self.make_branch_and_tree('.')
69
70
        self.run_bzr(['whoami', u'Branch Identity \u20ac <branch@identi.ty>'],
70
71
                     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')
 
72
        bzr_email = os.environ.get('BZR_EMAIL')
 
73
        if bzr_email is not None:
 
74
            del os.environ['BZR_EMAIL']
 
75
        try:
 
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",
 
80
                                        encoding='utf-8')[0]
 
81
            self.assertEquals('branch@identi.ty\n', whoami_email)
 
82
        finally:
 
83
            if bzr_email is not None:
 
84
                os.environ['BZR_EMAIL'] = bzr_email
74
85
 
75
86
    def test_whoami_ascii(self):
76
87
        """
81
92
        b = bzrlib.branch.Branch.open('.')
82
93
        b.get_config().set_user_option('email', u'Branch Identity \u20ac ' +
83
94
                                       '<branch@identi.ty>')
84
 
        self.assertWhoAmI('Branch Identity ? <branch@identi.ty>',
85
 
                          encoding='ascii')
86
 
        self.assertWhoAmI('branch@identi.ty', '--email',
87
 
                          encoding='ascii')
 
95
        bzr_email = os.environ.get('BZR_EMAIL')
 
96
        if bzr_email is not None:
 
97
            del os.environ['BZR_EMAIL']
 
98
        try:
 
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",
 
102
                                        encoding='ascii')[0]
 
103
            self.assertEquals('branch@identi.ty\n', whoami_email)
 
104
        finally:
 
105
            if bzr_email is not None:
 
106
                os.environ['BZR_EMAIL'] = bzr_email
88
107
 
89
108
    def test_warning(self):
90
109
        """verify that a warning is displayed if no email is given."""
95
114
                          'recommended.\n', display)
96
115
 
97
116
    def test_whoami_not_set(self):
98
 
        """Ensure whoami error if username is not set and not inferred.
 
117
        """Ensure whoami error if username is not set.
99
118
        """
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))
 
119
        osutils.set_or_unset_env('EMAIL', None)
 
120
        osutils.set_or_unset_env('BZR_EMAIL', None)
105
121
        out, err = self.run_bzr(['whoami'], 3)
106
122
        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()
112
 
        c.set_user_option('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()
118
 
        self.assertEquals('Changed Identity <changed@identi.ty>',
119
 
                          c.get_user_option('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()
125
 
        c.set_user_option('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()
135
 
        self.assertEquals('Changed Identity <changed@identi.ty>',
136
 
                          c.get_user_option('email'))
137
 
        global_conf = config.GlobalConfig()
138
 
        self.assertEquals(None, global_conf.get_user_option('email'))
139
 
 
140
 
    def test_whoami_nonbranch_directory(self):
141
 
        """Test --directory mentioning a non-branch directory."""
142
 
        wt = self.build_tree(['subdir/'])
143
 
        out, err = self.run_bzr("whoami --directory subdir", retcode=3)
144
 
        self.assertContainsRe(err, 'ERROR: Not a branch')