1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
# Copyright (C) 2007 Canonical Ltd
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
"""Tests for Launchpad user ID management functions."""
from cStringIO import StringIO
from bzrlib import config
from bzrlib.tests import TestCaseInTempDir, TestCaseWithMemoryTransport
from bzrlib.plugins.launchpad import account
class LaunchpadAccountTests(TestCaseInTempDir):
def setup_config(self, text):
my_config = config.GlobalConfig()
config_file = StringIO(text)
my_config._get_parser(config_file)
return my_config
def test_get_lp_login_unconfigured(self):
# Test that get_lp_login() returns None if no username has
# been configured.
my_config = self.setup_config('')
self.assertEqual(None, account.get_lp_login(my_config))
def test_get_lp_login(self):
# Test that get_lp_login() returns the configured username
my_config = self.setup_config(
'[DEFAULT]\nlaunchpad_username=test-user\n')
self.assertEqual('test-user', account.get_lp_login(my_config))
def test_set_lp_login(self):
# Test that set_lp_login() updates the config file.
my_config = self.setup_config('')
self.assertEqual(None, my_config.get_user_option('launchpad_username'))
account.set_lp_login('test-user', my_config)
self.assertEqual(
'test-user', my_config.get_user_option('launchpad_username'))
def test_unknown_launchpad_username(self):
# Test formatting of UnknownLaunchpadUsername exception
error = account.UnknownLaunchpadUsername(user='test-user')
self.assertEqualDiff('The user name test-user is not registered '
'on Launchpad.', str(error))
def test_no_registered_ssh_keys(self):
# Test formatting of NoRegisteredSSHKeys exception
error = account.NoRegisteredSSHKeys(user='test-user')
self.assertEqualDiff('The user test-user has not registered any '
'SSH keys with Launchpad.', str(error))
class CheckAccountTests(TestCaseWithMemoryTransport):
def test_check_lp_login_valid_user(self):
transport = self.get_transport()
transport.mkdir('~test-user')
transport.put_bytes('~test-user/+sshkeys', 'some keys here')
account.check_lp_login('test-user', transport)
def test_check_lp_login_no_user(self):
transport = self.get_transport()
self.assertRaises(account.UnknownLaunchpadUsername,
account.check_lp_login, 'test-user', transport)
def test_check_lp_login_no_ssh_keys(self):
transport = self.get_transport()
transport.mkdir('~test-user')
transport.put_bytes('~test-user/+sshkeys', '')
self.assertRaises(account.NoRegisteredSSHKeys,
account.check_lp_login, 'test-user', transport)
|