summaryrefslogtreecommitdiff
path: root/src/leap
diff options
context:
space:
mode:
authordrebs <drebs@leap.se>2013-05-01 13:16:50 -0300
committerdrebs <drebs@leap.se>2013-05-01 13:19:39 -0300
commit60c6b64916503ed87737e0b17424ff1a911838e3 (patch)
tree3d3e5b1ec10f228e8688937252340ab9837f5161 /src/leap
parentdc1e18c9460339faf5180805f0245cda7f686521 (diff)
Add token tests in LeapTests.
Diffstat (limited to 'src/leap')
-rw-r--r--src/leap/soledad/tests/test_leap_backend.py100
1 files changed, 86 insertions, 14 deletions
diff --git a/src/leap/soledad/tests/test_leap_backend.py b/src/leap/soledad/tests/test_leap_backend.py
index 81edf89d..893090d7 100644
--- a/src/leap/soledad/tests/test_leap_backend.py
+++ b/src/leap/soledad/tests/test_leap_backend.py
@@ -33,6 +33,7 @@ from leap.soledad.server import (
SoledadApp,
SoledadAuthMiddleware
)
+from leap.soledad import auth
from leap.soledad.tests import u1db_tests as tests
@@ -62,6 +63,19 @@ def make_soledad_app(state):
return SoledadApp(state)
+def make_token_soledad_app(state):
+ app = SoledadApp(state)
+
+ def verify_token(environ, uuid, token):
+ if uuid == 'user-uuid' and token == 'auth-token':
+ return True
+ return False
+
+ application = SoledadAuthMiddleware(app)
+ application.verify_token = verify_token
+ return application
+
+
LEAP_SCENARIOS = [
('http', {
'make_database_for_test': test_backends.make_http_database_for_test,
@@ -71,9 +85,52 @@ LEAP_SCENARIOS = [
]
+def make_token_http_database_for_test(test, replica_uid):
+ http_db = test_backends.make_http_database_for_test(test, replica_uid, 'test')
+ http_db.set_token_credentials = auth.set_token_credentials
+
+ def _sign_request(method, url_query, params):
+ return auth._sign_request(http_db, method, url_query, params)
+
+ http_db._sign_request = _sign_request
+ http_db.set_token_credentials(http_db, 'user-uuid', 'auth-token')
+ return http_db
+
+
+def copy_token_http_database_for_test(test, db):
+ # DO NOT COPY OR REUSE THIS CODE OUTSIDE TESTS: COPYING U1DB DATABASES IS
+ # THE WRONG THING TO DO, THE ONLY REASON WE DO SO HERE IS TO TEST THAT WE
+ # CORRECTLY DETECT IT HAPPENING SO THAT WE CAN RAISE ERRORS RATHER THAN
+ # CORRUPT USER DATA. USE SYNC INSTEAD, OR WE WILL SEND NINJA TO YOUR
+ # HOUSE.
+ http_db = test.request_state._copy_database(db)
+ http_db.set_token_credentials = auth.set_token_credentials
+
+ def _sign_request(method, url_query, params):
+ return auth._sign_request(http_db, method, url_query, params)
+
+ http_db._sign_request = _sign_request
+ http_db.set_token_credentials(http_db, 'user-uuid', 'auth-token')
+ return http_db
+
+
class LeapTests(test_backends.AllDatabaseTests, BaseSoledadTest):
- scenarios = LEAP_SCENARIOS
+ scenarios = LEAP_SCENARIOS + [
+ ('oauth_http', {'make_database_for_test':
+ test_backends.make_oauth_http_database_for_test,
+ 'copy_database_for_test':
+ test_backends.copy_oauth_http_database_for_test,
+ 'make_document_for_test': make_leap_document_for_test,
+ 'make_app_with_state': make_oauth_http_app}),
+ ('token_http', {'make_database_for_test':
+ make_token_http_database_for_test,
+ 'copy_database_for_test':
+ copy_token_http_database_for_test,
+ 'make_document_for_test': make_leap_document_for_test,
+ 'make_app_with_state': make_token_soledad_app,
+ })
+ ]
#-----------------------------------------------------------------------------
@@ -84,7 +141,34 @@ class TestLeapClientBase(test_http_client.TestHTTPClientBase):
"""
This class should be used to test Token auth.
"""
- pass
+
+ def getClient(self, **kwds):
+ self.startServer()
+ client = http_client.HTTPClientBase(self.getURL('dbase'), **kwds)
+ client.set_token_credentials = auth.set_token_credentials
+
+ def _sign_request(method, url_query, params):
+ return auth._sign_request(http_db, method, url_query, params)
+
+ client._sign_request = _sign_request
+
+ def test_oauth(self):
+ """
+ Suppress oauth test (we test for token auth here).
+ """
+ pass
+
+ def test_oauth_ctr_creds(self):
+ """
+ Suppress oauth test (we test for token auth here).
+ """
+ pass
+
+ def test_oauth_Unauthorized(self):
+ """
+ Suppress oauth test (we test for token auth here).
+ """
+ pass
#-----------------------------------------------------------------------------
@@ -230,18 +314,6 @@ def token_leap_sync_target(test, path):
st.set_token_credentials('user-uuid', 'auth-token')
return st
-def make_token_soledad_app(state):
- app = SoledadApp(state)
-
- def verify_token(environ, uuid, token):
- if uuid == 'user-uuid' and token == 'auth-token':
- return True
- return False
-
- application = SoledadAuthMiddleware(app)
- application.verify_token = verify_token
- return application
-
class TestLeapSyncTarget(
test_remote_sync_target.TestRemoteSyncTargets, BaseSoledadTest):