Beispiel #1
0
 def test_check(self):
     aa = AccountingAuthorization()
     session = MagicMock()
     token = "Token 1234"
     ok, reason = aa.check(token, session)
     assert not ok
     json = {"auth": token}
     session.post.assert_called_once_with(aa.endpoint_url(), headers=aa.headers(), json=json)
Beispiel #2
0
 def test_check(self):
     aa = AccountingAuthorization()
     session = MagicMock()
     token = 'Token 1234'
     ok, reason = aa.check(token, session)
     assert not ok
     json = {
         'auth': token,
     }
     session.post.assert_called_once_with(aa.endpoint_url(), headers=aa.headers(), json=json)
Beispiel #3
0
 def test_endpoint_url(self, settings):
     aa = AccountingAuthorization()
     settings.ACCOUNTING_URL = 'gopher://accounting.plan9/foo'
     assert aa.endpoint_url() == 'gopher://accounting.plan9/foo/api/v0/internal/user/'
Beispiel #4
0
 def test_endpoint_url(self, settings):
     aa = AccountingAuthorization()
     settings.ACCOUNTING_URL = "gopher://accounting.plan9/foo"
     assert aa.endpoint_url() == "gopher://accounting.plan9/foo/api/v0/internal/user/"