/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/plugins/launchpad/test_account.py

  • Committer: Martin Pool
  • Date: 2005-06-28 03:02:31 UTC
  • Revision ID: mbp@sourcefrog.net-20050628030231-d311e4ebcd467ef4
Merge John's import-speedup branch:

                                                                                         
  777 John Arbash Meinel <john@arbash-meinel.com>       Sun 2005-06-26 22:20:32 -0500
      revision-id: john@arbash-meinel.com-20050627032031-e82a50db3863b18e
      bzr selftest was not using the correct bzr

  776 John Arbash Meinel <john@arbash-meinel.com>       Sun 2005-06-26 22:20:22 -0500
      revision-id: john@arbash-meinel.com-20050627032021-c9f21fde989ddaee
      Add was using an old mutter

  775 John Arbash Meinel <john@arbash-meinel.com>       Sun 2005-06-26 22:02:33 -0500
      revision-id: john@arbash-meinel.com-20050627030233-9165cfe98fc63298
      Cleaned up to be less different

  774 John Arbash Meinel <john@arbash-meinel.com>       Sun 2005-06-26 21:54:53 -0500
      revision-id: john@arbash-meinel.com-20050627025452-4260d0e744edef43
      Allow BZR_PLUGIN_PATH='' to negate plugin loading.

  773 John Arbash Meinel <john@arbash-meinel.com>       Sun 2005-06-26 21:49:34 -0500
      revision-id: john@arbash-meinel.com-20050627024933-b7158f67b7b9eae5
      Finished the previous cleanup (allowing load_plugins to be called twice)

  772 John Arbash Meinel <john@arbash-meinel.com>       Sun 2005-06-26 21:45:08 -0500
      revision-id: john@arbash-meinel.com-20050627024508-723b1df510d196fc
      Work on making the tests pass. versioning.py is calling run_cmd directly, but plugins have been loaded.

  771 John Arbash Meinel <john@arbash-meinel.com>       Sun 2005-06-26 21:32:29 -0500
      revision-id: john@arbash-meinel.com-20050627023228-79972744d7c53e15
      Got it down a little bit more by removing import of tree and inventory.

  770 John Arbash Meinel <john@arbash-meinel.com>       Sun 2005-06-26 21:26:05 -0500
      revision-id: john@arbash-meinel.com-20050627022604-350b9773ef622f95
      Reducing the number of import from bzrlib/__init__.py and bzrlib/branch.py

  769 John Arbash Meinel <john@arbash-meinel.com>       Sun 2005-06-26 20:32:25 -0500
      revision-id: john@arbash-meinel.com-20050627013225-32dd044f10d23948
      Updated revision.py and xml.py to include SubElement.

  768 John Arbash Meinel <john@arbash-meinel.com>       Sun 2005-06-26 20:03:56 -0500
      revision-id: john@arbash-meinel.com-20050627010356-ee66919e1c377faf
      Minor typo

  767 John Arbash Meinel <john@arbash-meinel.com>       Sun 2005-06-26 20:03:13 -0500
      revision-id: john@arbash-meinel.com-20050627010312-40d024007eb85051
      Caching the import

  766 John Arbash Meinel <john@arbash-meinel.com>       Sun 2005-06-26 19:51:47 -0500
      revision-id: john@arbash-meinel.com-20050627005147-5281c99e48ed1834
      Created wrapper functions for lazy import of ElementTree

  765 John Arbash Meinel <john@arbash-meinel.com>       Sun 2005-06-26 19:46:37 -0500
      revision-id: john@arbash-meinel.com-20050627004636-bf432902004a94c5
      Removed all of the test imports of cElementTree

  764 John Arbash Meinel <john@arbash-meinel.com>       Sun 2005-06-26 19:43:59 -0500
      revision-id: john@arbash-meinel.com-20050627004358-d137fbe9570dd71b
      Trying to make bzr startup faster.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2007, 2008 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
 
"""Tests for Launchpad user ID management functions."""
18
 
 
19
 
from cStringIO import StringIO
20
 
 
21
 
from bzrlib import config
22
 
from bzrlib.tests import TestCaseInTempDir, TestCaseWithMemoryTransport
23
 
from bzrlib.plugins.launchpad import account
24
 
 
25
 
 
26
 
class LaunchpadAccountTests(TestCaseInTempDir):
27
 
 
28
 
    def setup_config(self, text):
29
 
        my_config = config.GlobalConfig()
30
 
        config_file = StringIO(text)
31
 
        my_config._get_parser(config_file)
32
 
        return my_config
33
 
 
34
 
    def test_get_lp_login_unconfigured(self):
35
 
        # Test that get_lp_login() returns None if no username has
36
 
        # been configured.
37
 
        my_config = self.setup_config('')
38
 
        self.assertEqual(None, account.get_lp_login(my_config))
39
 
 
40
 
    def test_get_lp_login(self):
41
 
        # Test that get_lp_login() returns the configured username
42
 
        my_config = self.setup_config(
43
 
            '[DEFAULT]\nlaunchpad_username=test-user\n')
44
 
        self.assertEqual('test-user', account.get_lp_login(my_config))
45
 
 
46
 
    def test_set_lp_login(self):
47
 
        # Test that set_lp_login() updates the config file.
48
 
        my_config = self.setup_config('')
49
 
        self.assertEqual(None, my_config.get_user_option('launchpad_username'))
50
 
        account.set_lp_login('test-user', my_config)
51
 
        self.assertEqual(
52
 
            'test-user', my_config.get_user_option('launchpad_username'))
53
 
 
54
 
    def test_unknown_launchpad_username(self):
55
 
        # Test formatting of UnknownLaunchpadUsername exception
56
 
        error = account.UnknownLaunchpadUsername(user='test-user')
57
 
        self.assertEqualDiff('The user name test-user is not registered '
58
 
                             'on Launchpad.', str(error))
59
 
 
60
 
    def test_no_registered_ssh_keys(self):
61
 
        # Test formatting of NoRegisteredSSHKeys exception
62
 
        error = account.NoRegisteredSSHKeys(user='test-user')
63
 
        self.assertEqualDiff('The user test-user has not registered any '
64
 
            'SSH keys with Launchpad.\n'
65
 
            'See <https://launchpad.net/people/+me>',
66
 
            str(error))
67
 
 
68
 
    def test_set_lp_login_updates_authentication_conf(self):
69
 
        self.assertIs(None, account._get_auth_user())
70
 
        account.set_lp_login('foo')
71
 
        self.assertEqual('foo', account._get_auth_user())
72
 
 
73
 
    def test_get_lp_login_does_not_update_for_none_user(self):
74
 
        account.get_lp_login()
75
 
        self.assertIs(None, account._get_auth_user())
76
 
 
77
 
    def test_get_lp_login_updates_authentication_conf(self):
78
 
        account._set_global_option('foo')
79
 
        self.assertIs(None, account._get_auth_user())
80
 
        account.get_lp_login()
81
 
        auth = config.AuthenticationConfig()
82
 
        self.assertEqual('foo', account._get_auth_user(auth))
83
 
        self.assertEqual('foo', auth.get_user('ssh', 'bazaar.launchpad.net'))
84
 
        self.assertEqual('foo', auth.get_user('ssh',
85
 
                                              'bazaar.staging.launchpad.net'))
86
 
 
87
 
    def test_get_lp_login_leaves_existing_credentials(self):
88
 
        auth = config.AuthenticationConfig()
89
 
        auth.set_credentials('Foo', 'bazaar.launchpad.net', 'foo', 'ssh')
90
 
        auth.set_credentials('Bar', 'bazaar.staging.launchpad.net', 'foo',
91
 
                             'ssh')
92
 
        account._set_global_option('foo')
93
 
        account.get_lp_login()
94
 
        auth = config.AuthenticationConfig()
95
 
        credentials = auth.get_credentials('ssh', 'bazaar.launchpad.net')
96
 
        self.assertEqual('Foo', credentials['name'])
97
 
 
98
 
    def test_get_lp_login_errors_on_mismatch(self):
99
 
        account._set_auth_user('foo')
100
 
        account._set_global_option('bar')
101
 
        e = self.assertRaises(account.MismatchedUsernames,
102
 
                              account.get_lp_login)
103
 
        self.assertEqual('bazaar.conf and authentication.conf disagree about'
104
 
            ' launchpad account name.  Please re-run launchpad-login.', str(e))
105
 
 
106
 
 
107
 
class CheckAccountTests(TestCaseWithMemoryTransport):
108
 
 
109
 
    def test_check_lp_login_valid_user(self):
110
 
        transport = self.get_transport()
111
 
        transport.mkdir('~test-user')
112
 
        transport.put_bytes('~test-user/+sshkeys', 'some keys here')
113
 
        account.check_lp_login('test-user', transport)
114
 
 
115
 
    def test_check_lp_login_no_user(self):
116
 
        transport = self.get_transport()
117
 
        self.assertRaises(account.UnknownLaunchpadUsername,
118
 
                          account.check_lp_login, 'test-user', transport)
119
 
 
120
 
    def test_check_lp_login_no_ssh_keys(self):
121
 
        transport = self.get_transport()
122
 
        transport.mkdir('~test-user')
123
 
        transport.put_bytes('~test-user/+sshkeys', '')
124
 
        self.assertRaises(account.NoRegisteredSSHKeys,
125
 
                          account.check_lp_login, 'test-user', transport)