aboutsummaryrefslogtreecommitdiffstats
path: root/lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/test/unit/test_status_web_authz_Authz.py
blob: a38201a28a46473d7d65a9be03f9d59575ef1435 (plain)
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
# This file is part of Buildbot.  Buildbot 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, version 2.
#
# 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., 51
# Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Copyright Buildbot Team Members

from zope.interface import implements
from twisted.trial import unittest
from twisted.internet import defer

from buildbot.status.web.authz import Authz
from buildbot.status.web.auth import IAuth, AuthBase

class StubRequest(object):
    # all we need from a request is username/password
    def __init__(self, username=None, passwd=None):
        self.args = {
            'username' : [ username ],
            'passwd' : [ passwd ],
        }
        self.received_cookies = {}
        self.send_cookies = []
    def getUser(self):
        return ''

    def getPassword(self):
        return None
    def addCookie(self, key, cookie, expires, path):
        self.send_cookies.append((key, cookie, expires, path))

class StubHttpAuthRequest(object):
    # all we need from a request is username/password
    def __init__(self, username, passwd):
        self.args = {}
        self.username = username
        self.passwd = passwd

    def getUser(self):
        return self.username

    def getPassword(self):
        return self.passwd

class StubAuth(AuthBase):
    implements(IAuth)
    def __init__(self, user):
        self.user = user

    def authenticate(self, user, pw):
        return user == self.user
class TestAuthz(unittest.TestCase):

    def test_actionAllowed_Defaults(self):
        "by default, nothing is allowed"
        z = Authz()
        self.failedActions = []
        self.dl = []
        for a in Authz.knownActions:
            md = z.actionAllowed(a, StubRequest('foo', 'bar'))
            def check(res):
                if res:
                    self.failedActions.append(a)
                return
            md.addCallback(check)
            self.dl.append(md)
        d = defer.DeferredList(self.dl)
        def check_failed(_):
            if self.failedActions:
                raise unittest.FailTest("action(s) %s do not default to False"
                                        % (self.failedActions,))
        d.addCallback(check_failed)
        return d

    def test_actionAllowed_Positive(self):
        "'True' should always permit access"
        z = Authz(forceBuild=True)
        d = z.actionAllowed('forceBuild', StubRequest('foo', 'bar'))
        def check(res):
            self.assertEqual(res, True)
        d.addCallback(check)
        return d

    def test_actionAllowed_AuthPositive(self):
        z = Authz(auth=StubAuth('jrobinson'),
                  stopBuild='auth')
        d = z.actionAllowed('stopBuild', StubRequest('jrobinson', 'bar'))
        def check(res):
            self.assertEqual(res, True)
        d.addCallback(check)
        return d

    def test_actionAllowed_AuthNegative(self):
        z = Authz(auth=StubAuth('jrobinson'),
                  stopBuild='auth')
        d = z.actionAllowed('stopBuild', StubRequest('apeterson', 'bar'))
        def check(res):
            self.assertEqual(res, False)
        d.addCallback(check)
        return d

    def test_actionAllowed_AuthCallable(self):
        myargs = []
        def myAuthzFn(*args):
            myargs.extend(args)
        z = Authz(auth=StubAuth('uu'),
                  stopBuild=myAuthzFn)
        d = z.actionAllowed('stopBuild', StubRequest('uu', 'shh'), 'arg', 'arg2')
        def check(res):
            self.assertEqual(myargs, ['uu', 'arg', 'arg2'])
        d.addCallback(check)
        return d

    def test_actionAllowed_AuthCallableTrue(self):
        def myAuthzFn(*args):
            return True
        z = Authz(auth=StubAuth('uu'),
                  stopBuild=myAuthzFn)
        d = z.actionAllowed('stopBuild', StubRequest('uu', 'shh'))
        def check(res):
            self.assertEqual(res, True)
        d.addCallback(check)
        return d

    def test_actionAllowed_AuthCallableFalse(self):
        def myAuthzFn(*args):
            return False
        z = Authz(auth=StubAuth('uu'),
                  stopBuild=myAuthzFn)
        d = z.actionAllowed('stopBuild', StubRequest('uu', 'shh'))
        def check(res):
            self.assertEqual(res, False)
        d.addCallback(check)
        return d

    def test_advertiseAction_False(self):
        z = Authz(forceBuild = False)
        assert not z.advertiseAction('forceBuild',StubRequest())

    def test_advertiseAction_True(self):
        z = Authz(forceAllBuilds = True)
        assert z.advertiseAction('forceAllBuilds',StubRequest())

    def test_advertiseAction_auth(self):
        z = Authz(stopBuild = 'auth')
        assert not z.advertiseAction('stopBuild',StubRequest())

    def test_advertiseAction_auth_authenticated(self):
        z = Authz(auth=StubAuth('uu'),stopBuild = 'auth')
        r = StubRequest('uu','aa')
        d = z.login(r)
        def check(c):
            assert z.advertiseAction('stopBuild',r)
        d.addCallback(check)

    def test_advertiseAction_callable(self):
        z = Authz(auth=StubAuth('uu'), stopAllBuilds = lambda u : False)
        r = StubRequest('uu','aa')
        d = z.login(r)
        @d.addCallback
        def check(c):
            assert z.advertiseAction('stopAllBuilds',r)
        return d

    def test_authenticated_False(self):
        z = Authz(forceBuild = False)
        assert not z.authenticated(StubRequest())

    def test_authenticated_True(self):
        z = Authz(auth=StubAuth('uu'), forceBuild = True)
        r = StubRequest('uu','aa')
        d = z.login(r)
        @d.addCallback
        def check(c):
            assert z.authenticated(r)
        return d

    def test_authenticated_http_False(self):
        z = Authz(useHttpHeader = True)
        assert not z.authenticated(StubRequest())

    def test_authenticated_http_True(self):
        z = Authz(useHttpHeader = True)
        assert z.authenticated(StubHttpAuthRequest('foo', 'bar'))

    def test_constructor_invalidAction(self):
        self.assertRaises(ValueError, Authz, someRandomAction=3)

    def test_getUsername_http(self):
        z = Authz(useHttpHeader = True)
        assert z.getUsername(StubHttpAuthRequest('foo', 'bar')) == 'foo'

    def test_getPassword_http(self):
        z = Authz(useHttpHeader = True)
        assert z.getPassword(StubHttpAuthRequest('foo', 'bar')) == 'bar'

    def test_getUsername_http_missing(self):
        z = Authz(useHttpHeader = True)
        assert z.getUsername(StubRequest('foo', 'bar')) == ''

    def test_getPassword_http_missing(self):
        z = Authz(useHttpHeader = True)
        assert z.getPassword(StubRequest('foo', 'bar')) == None

    def test_getUsername_request(self):
        z = Authz()
        assert z.getUsername(StubRequest('foo', 'bar')) == 'foo'

    def test_getPassword_request(self):
        z = Authz()
        assert z.getPassword(StubRequest('foo', 'bar')) == 'bar'

    def test_advertiseAction_invalidAction(self):
        z = Authz()
        self.assertRaises(KeyError, z.advertiseAction, 'someRandomAction', StubRequest('snow', 'foo'))

    def test_actionAllowed_invalidAction(self):
        z = Authz()
        self.assertRaises(KeyError, z.actionAllowed, 'someRandomAction', StubRequest('snow', 'foo'))