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

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

Start implementing KofaMoodleAuthenticator? tests.

File size: 8.0 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/moodle',
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
169    def _check_credentials(self, username, password):
170        # fake waeup.kofa check_credentials method.
171        #
172        # This method is supposed to mimic the behaviour of an
173        # original waeup.kofa check_credentials method. It returns a
174        # positive result for the credentials `bird`/`bebop`.
175        if username == 'bird' and password == 'bebop':
176            return {'id': 'bird', 'email': 'bird@gods.net',
177                    'description': 'Mr. Charles Parker',
178                    'type': 'student'}
179        if username == 'pig' and password == 'pog':
180            return {'id': 'pig', 'email': 'pig@gods.net',
181                    'description': 'Mr. Ray Charles',
182                    'type': 'applicant'}
183        return None
184
185
186class KofaAuthenticatorIntegrationTests(unittest.TestCase):
187    # A test case where a fake Kofa server is started before tests (and
188    # shut down afterwards).
189
190    server = None
191    th = None
192
193    @classmethod
194    def setUpClass(cls):
195        # set up a fake kofa server
196        cls.server = FakeKofaServer(('localhost', 6666))
197        cls.th = threading.Thread(target=cls.server.serve_forever)
198        cls.th.daemon = True
199        cls.th.start()
200
201    @classmethod
202    def tearDownClass(cls):
203        # tear down fake kofa server
204        cls.server.shutdown()
205        cls.server.server_close()
206
207    def test_fake_kofa_works(self):
208        # make sure the local fake kofa works
209        proxy = xmlrpclib.ServerProxy("http://localhost:6666", allow_none=True)
210        result = proxy.check_student_credentials('bird', 'bebop')
211        assert result == {
212            'description': 'Mr. Charles Parker',
213            'email': 'bird@gods.net',
214            'id': 'bird',
215            'type': 'student'}
216        result = proxy.check_applicant_credentials('pig', 'pog')
217        assert result == {
218            'description': 'Mr. Ray Charles',
219            'email': 'pig@gods.net',
220            'id': 'pig',
221            'type': 'applicant'}
222        return
223
224    def test_check_credentials(self):
225        # we get real responses when querying Kofa instances
226        auth = KofaAuthenticator(auth_backends=str(BACKENDS2))
227        result1 = auth.check_credentials('SCHOOL1-bird', 'bebop')
228        assert result1 == (True, '')
229        result2 = auth.check_credentials('SCHOOL1-foo', 'bar')
230        assert result2 == (False, 'Invalid username or password.')
231        result3 = auth.check_credentials('SCHOOL2-bar', 'baz')
232        assert result3 == (False, 'Invalid username or password.')
233
Note: See TracBrowser for help on using the repository browser.