source: main/waeup.cas/trunk/waeup/cas/tests/test_authenticators.py @ 10522

Last change on this file since 10522 was 10522, checked in by Henrik Bettermann, 11 years ago

Be more verbose if credentials checking fails.

File size: 13.9 KB
Line 
1# Tests for waeup.cas.authentictors
2import os
3import threading
4import unittest
5from paste.deploy import loadapp
6try:
7    from SimpleXMLRPCServer import SimpleXMLRPCServer  # Python 2.x
8except ImportError:
9    from xmlrpc.server import SimpleXMLRPCServer       # Python 3.x
10try:
11    import xmlrpclib                     # Python 2.x
12except ImportError:
13    import xmlrpc.client as xmlrpclib    # Python 3.x
14from waeup.cas.authenticators import (
15    get_all_authenticators, get_authenticator, filter_auth_opts,
16    Authenticator, DummyAuthenticator, KofaAuthenticator,
17    KofaMoodleAuthenticator
18    )
19from waeup.cas.server import CASServer
20
21
22class TestHelpers(unittest.TestCase):
23
24    def test_get_all_authenticators(self):
25        # we can get authenticators via entry points
26        auths = get_all_authenticators()
27        assert 'dummy' in auths
28        assert auths['dummy'] is DummyAuthenticator
29
30    def test_filter_auth_opts(self):
31        # we can filter auth opts
32        result = filter_auth_opts(
33            dict(auth='foo', auth_bar='baz', auth_baz='blah')
34            )
35        assert result == (
36            {'auth': 'foo'},
37            {'auth_bar': 'baz', 'auth_baz': 'blah'}
38            )
39
40    def test_get_authenticator(self):
41        # we can parse a paste.deploy config dict for auth
42        result = get_authenticator({})
43        assert result == {}
44        result = get_authenticator({'auth': 'dummy'})
45        assert isinstance(result['auth'], DummyAuthenticator)
46
47
48class AuthenticatorTests(unittest.TestCase):
49
50    def test_create(self):
51        # we can create Authenticator instances
52        auth = Authenticator()
53        assert isinstance(auth, Authenticator)
54
55
56class DummyAuthenticatorTests(unittest.TestCase):
57
58    def test_create(self):
59        # we can create DummyAuthenticator instances
60        auth = DummyAuthenticator()
61        assert isinstance(auth, DummyAuthenticator)
62
63    def test_check_credentials(self):
64        # we can succeed with 'bird'/'bebop'. Others will fail.
65        auth = DummyAuthenticator()
66        result1 = auth.check_credentials('bird', 'bebop')
67        assert result1 == (True, '')
68        result2 = auth.check_credentials('foo', 'bar')
69        assert result2 == (False, 'Invalid username or password.')
70
71
72BACKENDS1 = dict(
73    inst1=dict(
74        url='http://localhost:6666/app',
75        marker='^MA-',
76        )
77    )
78
79BACKENDS2 = dict(
80    inst1=dict(
81        url='http://localhost:6666/',
82        marker='^SCHOOL1-',
83        )
84    )
85
86BACKENDS3 = dict(
87    inst1=dict(
88        url='http://localhost:6666/',
89        marker='^SCHOOL1-',
90        moodle_url = 'http://localhost:7777/',
91        )
92    )
93
94class KofaAuthenticatorTests(unittest.TestCase):
95
96    def test_create(self):
97        # we can create KofaAuthenticator instances
98        auth = KofaAuthenticator()
99        assert isinstance(auth, KofaAuthenticator)
100
101    def test_options_defaults(self):
102        # all options have sensible defaults
103        auth = KofaAuthenticator()
104        assert auth.backends == {}
105
106    def test_options(self):
107        # we can pass options
108        auth = KofaAuthenticator(auth_backends=str(BACKENDS1))
109        assert auth.backends == BACKENDS1
110        auth = KofaAuthenticator(auth_backends='{"foo": {"url": "bar"}}')
111        assert auth.backends['foo']['marker'] == '.+'
112        self.assertRaises(
113            ValueError, KofaAuthenticator, auth_backends='not-a-py-expr')
114        self.assertRaises(
115            ValueError, KofaAuthenticator, auth_backends='"Not a dict"')
116        self.assertRaises(
117            ValueError, KofaAuthenticator,
118            auth_backends='{"foo": "not-a-dict"}')
119        self.assertRaises(
120            ValueError, KofaAuthenticator,
121            auth_backends='{"foo": {"no-url-key": "bar"}}')
122        self.assertRaises(
123            ValueError, KofaAuthenticator,
124            auth_backends='{"foo": {"url": "bar", "marker": "inv_re)"}}')
125
126    def test_paste_deploy_options(self):
127        # we can set CAS server-related options via paste.deploy config
128        paste_conf = os.path.join(
129            os.path.dirname(__file__), 'sample3.ini')
130        app = loadapp('config:%s' % paste_conf)
131        assert isinstance(app, CASServer)
132        assert app.db_connection_string == 'sqlite:///:memory:'
133        assert isinstance(app.auth, KofaAuthenticator)
134
135class KofaMoodleAuthenticatorTests(unittest.TestCase):
136
137    def test_paste_deploy_options(self):
138        # we can set CAS server-related options via paste.deploy config
139        paste_conf = os.path.join(
140            os.path.dirname(__file__), 'sample4.ini')
141        app = loadapp('config:%s' % paste_conf)
142        assert isinstance(app, CASServer)
143        assert app.db_connection_string == 'sqlite:///:memory:'
144        assert isinstance(app.auth, KofaAuthenticator)
145        assert app.auth.name == 'kofa_moodle1'
146        auth_backends = {
147          'kofa_moodle1':
148            {'url': 'http://xmlrpcuser1:xmlrpcuser1@localhost:8080/app1/',
149             'marker': '^K',
150             'moodle_url': 'http://localhost/moodle/webservice/xmlrpc/server.php?wstoken=de1e1cbacf91ec6290bb6f6339122e7d',
151            },
152          }
153        assert app.auth.backends == auth_backends
154
155
156class FakeKofaServer(SimpleXMLRPCServer):
157    # A fake Kofa server that provides only XMLRPC methods
158
159    allow_reuse_address = True
160
161    def __init__(self, *args, **kw):
162        kw.update(allow_none=True)
163        SimpleXMLRPCServer.__init__(self, *args, **kw)
164        self.register_function(
165            self._check_credentials, 'check_applicant_credentials')
166        self.register_function(
167            self._check_credentials, 'check_student_credentials')
168        self.register_function(
169            self._get_moodle_data, 'get_student_moodle_data')
170        self.register_function(
171            self._get_moodle_data, 'get_applicant_moodle_data')
172
173    def _check_credentials(self, username, password):
174        # fake waeup.kofa check_credentials method.
175        #
176        # This method is supposed to mimic the behaviour of an
177        # original waeup.kofa check_credentials method. It returns a
178        # positive result for the credentials `bird`/`bebop`.
179        if username == 'bird' and password == 'bebop':
180            return {'id': 'bird', 'email': 'bird@gods.net',
181                    'description': 'Mr. Charles Parker',
182                    'type': 'student'}
183        if username == 'pig' and password == 'pog':
184            return {'id': 'pig', 'email': 'pig@gods.net',
185                    'description': 'Mr. Ray Charles',
186                    'type': 'applicant'}
187        if username in (
188            'fault1', 'fault2', 'fault3', 'fault4') and password == 'biz':
189            return {'type': 'student'}
190        if username == 'fault5' and password == 'biz':
191            return {'type': 'applicant'}
192        if username == 'fault6' and password == 'biz':
193            return {'type': 'boss'}
194        return None
195
196    def _get_moodle_data(self, username):
197        # fake waeup.kofa get_student_moodle_data method.
198        if username == 'bird':
199            return dict(email='aa@aa.aa',
200                        firstname='Charles',
201                        lastname='Parker',
202                        )
203        if username == 'pig':
204            return dict(email='bb@bb.bb',
205                        firstname='Ray',
206                        lastname='Charles',
207                        )
208        if username in ('fault1', 'fault2', 'fault3', 'fault4', 'fault5'):
209            return dict(email='ff@ff.ff',
210                        firstname='John',
211                        lastname='Fault',
212                        )
213
214class FakeMoodleServer(SimpleXMLRPCServer):
215    # A fake Moodle server that provides only XMLRPC methods
216
217    allow_reuse_address = True
218
219    def __init__(self, *args, **kw):
220        kw.update(allow_none=True)
221        SimpleXMLRPCServer.__init__(self, *args, **kw)
222        self.register_function(
223            self._core_user_create_users, 'core_user_create_users')
224        self.register_function(
225            self._core_user_get_users, 'core_user_get_users')
226        self.register_function(
227            self._core_user_update_users, 'core_user_update_users')
228
229    def _core_user_create_users(self, arg):
230        # fake Moodle core_user_create_users method.
231        if arg[0]['username'] == 'fault1':
232            raise xmlrpclib.Fault('faultCode', 'faultString')
233        if arg[0]['username'] in ('fault4', 'fault5'):
234            raise xmlrpclib.Fault('faultCode', 'Username already exists')
235        return None
236
237    def _core_user_get_users(self, arg):
238        # fake Moodle core_user_get_users method.
239        if arg[0]['value'] == 'fault2':
240            raise xmlrpclib.Fault('faultCode', 'faultString')
241        if arg[0]['value'] == 'fault3':
242            return {'users':[{'id':'fault3'}]}
243        return {'users':[{'id':'any id'}]}
244
245    def _core_user_update_users(self, arg):
246        # fake Moodle core_user_update_users method.
247        if arg[0]['id'] == 'fault3':
248            raise xmlrpclib.Fault('faultCode', 'faultString')
249        return None
250
251class KofaAuthenticatorsIntegrationTests(unittest.TestCase):
252    # A test case where a fake Kofa server is started before tests (and
253    # shut down afterwards).
254
255    kofa_server = None
256    kofa_th = None
257    moodle_server = None
258    moodle_th = None
259
260    @classmethod
261    def setUpClass(cls):
262        # set up a fake kofa server
263        cls.kofa_server = FakeKofaServer(('localhost', 6666))
264        cls.kofa_th = threading.Thread(target=cls.kofa_server.serve_forever)
265        cls.kofa_th.daemon = True
266        cls.kofa_th.start()
267        # set up a fake moodle server
268        cls.moodle_server = FakeMoodleServer(('localhost', 7777))
269        cls.moodle_th = threading.Thread(target=cls.moodle_server.serve_forever)
270        cls.moodle_th.daemon = True
271        cls.moodle_th.start()
272
273    @classmethod
274    def tearDownClass(cls):
275        # tear down fake kofa server
276        cls.kofa_server.shutdown()
277        cls.kofa_server.server_close()
278        # tear down fake moodle server
279        cls.moodle_server.shutdown()
280        cls.moodle_server.server_close()
281
282    def test_fake_kofa_works(self):
283        # make sure the local fake kofa works
284        proxy = xmlrpclib.ServerProxy("http://localhost:6666", allow_none=True)
285        result = proxy.check_student_credentials('bird', 'bebop')
286        assert result == {
287            'description': 'Mr. Charles Parker',
288            'email': 'bird@gods.net',
289            'id': 'bird',
290            'type': 'student'}
291        result = proxy.check_applicant_credentials('pig', 'pog')
292        assert result == {
293            'description': 'Mr. Ray Charles',
294            'email': 'pig@gods.net',
295            'id': 'pig',
296            'type': 'applicant'}
297        result = proxy.get_student_moodle_data('pig')
298        assert result == {
299            'lastname': 'Charles',
300            'email': 'bb@bb.bb',
301            'firstname': 'Ray',
302            }
303        result = proxy.get_applicant_moodle_data('pig')
304        assert result == {
305            'lastname': 'Charles',
306            'email': 'bb@bb.bb',
307            'firstname': 'Ray',
308            }
309        return
310
311    def test_fake_moodle_works(self):
312        # make sure the local fake moodle works
313        proxy = xmlrpclib.ServerProxy("http://localhost:7777", allow_none=True)
314        # test core_user_create_users
315        result = proxy.core_user_create_users(
316            [{'username': 'any name'}])
317        assert result == None
318        self.assertRaises(
319            xmlrpclib.Fault, proxy.core_user_create_users,
320            [{'username': 'fault1'}])
321        # test core_user_get_users
322        result = proxy.core_user_get_users(
323            [{'key': 'username', 'value': 'any name'}])
324        assert result == {'users':[{'id':'any id'}]}
325        self.assertRaises(
326            xmlrpclib.Fault, proxy.core_user_get_users,
327            [{'key': 'username', 'value': 'fault2'}])
328        # test core_user_update_users
329        result = proxy.core_user_update_users(
330            [{'id': 'any id'}])
331        assert result == None
332        self.assertRaises(
333            xmlrpclib.Fault, proxy.core_user_update_users,
334            [{'id': 'fault3'}])
335        return
336
337    def test_check_credentials_KofaAuthenticator(self):
338        # we get real responses when querying Kofa instances
339        auth = KofaAuthenticator(auth_backends=str(BACKENDS2))
340        result1 = auth.check_credentials('SCHOOL1-bird', 'bebop')
341        assert result1 == (True, '')
342        result2 = auth.check_credentials('SCHOOL1-foo', 'bar')
343        assert result2 == (False, 'Invalid username or password.')
344        result3 = auth.check_credentials('SCHOOL2-bar', 'baz')
345        assert result3 == (False, 'Invalid username or password.')
346
347    def test_check_credentials_KofaMoodleAuthenticator(self):
348        # we get real responses when querying Kofa instances
349        auth = KofaMoodleAuthenticator(auth_backends=str(BACKENDS3))
350        result1s = auth.check_credentials('SCHOOL1-bird', 'bebop')
351        assert result1s == (True, '')
352        result1a  = auth.check_credentials('SCHOOL1-pig', 'pog')
353        assert result1a == (True, '')
354        result2s = auth.check_credentials('SCHOOL1-foo', 'bar')
355        assert result2s == (False, 'Invalid username or password')
356        result3s = auth.check_credentials('SCHOOL2-bar', 'baz')
357        assert result3s == (False, 'Invalid username or password')
358        result8 = auth.check_credentials('SCHOOL1-fault6', 'biz')
359        assert result8 == (False, 'User not eligible')
360
361        # exceptions are raised in the follwoing cases
362        result4s = auth.check_credentials('SCHOOL1-fault1', 'biz')
363        assert result4s == (False, 'faultString')
364        result5s = auth.check_credentials('SCHOOL1-fault2', 'biz')
365        assert result5s == (False, 'faultString')
366        result6s = auth.check_credentials('SCHOOL1-fault3', 'biz')
367        assert result6s == (False, 'faultString')
368
369        # no exception if user exists
370        result7s = auth.check_credentials('SCHOOL1-fault4', 'biz')
371        assert result7s == (True, '')
372        result7a = auth.check_credentials('SCHOOL1-fault5', 'biz')
373        assert result7a == (True, '')
Note: See TracBrowser for help on using the repository browser.