Moving the rest of the relevant tests to have test_app set up in "def setup()" as well

This commit is contained in:
Christopher Allan Webber 2013-04-18 11:15:47 -05:00
parent 0f3467013f
commit 2455a54f72
2 changed files with 50 additions and 58 deletions

View File

@ -16,6 +16,7 @@
import json import json
import pytest
from urlparse import urlparse, parse_qs from urlparse import urlparse, parse_qs
from mediagoblin import mg_globals from mediagoblin import mg_globals
@ -26,21 +27,24 @@ from mediagoblin.tests import test_oauth as oauth
class TestHTTPCallback(object): class TestHTTPCallback(object):
def _setup(self, test_app): @pytest.fixture(autouse=True)
def setup(self, test_app):
self.test_app = test_app
self.db = mg_globals.database self.db = mg_globals.database
self.user_password = u'secret' self.user_password = u'secret'
self.user = fixture_add_user(u'call_back', self.user_password) self.user = fixture_add_user(u'call_back', self.user_password)
self.login(test_app) self.login()
def login(self, testapp): def login(self):
testapp.post('/auth/login/', { self.test_app.post('/auth/login/', {
'username': self.user.username, 'username': self.user.username,
'password': self.user_password}) 'password': self.user_password})
def get_access_token(self, testapp, client_id, client_secret, code): def get_access_token(self, client_id, client_secret, code):
response = testapp.get('/oauth/access_token', { response = self.test_app.get('/oauth/access_token', {
'code': code, 'code': code,
'client_id': client_id, 'client_id': client_id,
'client_secret': client_secret}) 'client_secret': client_secret})
@ -49,15 +53,12 @@ class TestHTTPCallback(object):
return response_data['access_token'] return response_data['access_token']
def test_callback(self, test_app): def test_callback(self):
''' Test processing HTTP callback ''' ''' Test processing HTTP callback '''
self._setup(test_app)
self.oauth = oauth.TestOAuth() self.oauth = oauth.TestOAuth()
self.oauth._setup(test_app) self.oauth.setup(self.test_app)
redirect, client_id = self.oauth.test_4_authorize_confidential_client( redirect, client_id = self.oauth.test_4_authorize_confidential_client()
test_app)
code = parse_qs(urlparse(redirect.location).query)['code'][0] code = parse_qs(urlparse(redirect.location).query)['code'][0]
@ -66,11 +67,11 @@ class TestHTTPCallback(object):
client_secret = client.secret client_secret = client.secret
access_token = self.get_access_token(test_app, client_id, client_secret, code) access_token = self.get_access_token(client_id, client_secret, code)
callback_url = 'https://foo.example?secrettestmediagoblinparam' callback_url = 'https://foo.example?secrettestmediagoblinparam'
res = test_app.post('/api/submit?client_id={0}&access_token={1}\ self.test_app.post('/api/submit?client_id={0}&access_token={1}\
&client_secret={2}'.format( &client_secret={2}'.format(
client_id, client_id,
access_token, access_token,

View File

@ -17,6 +17,7 @@
import json import json
import logging import logging
import pytest
from urlparse import parse_qs, urlparse from urlparse import parse_qs, urlparse
from mediagoblin import mg_globals from mediagoblin import mg_globals
@ -28,7 +29,10 @@ _log = logging.getLogger(__name__)
class TestOAuth(object): class TestOAuth(object):
def _setup(self, test_app): @pytest.fixture(autouse=True)
def setup(self, test_app):
self.test_app = test_app
self.db = mg_globals.database self.db = mg_globals.database
self.pman = pluginapi.PluginManager() self.pman = pluginapi.PluginManager()
@ -36,17 +40,17 @@ class TestOAuth(object):
self.user_password = u'4cc355_70k3N' self.user_password = u'4cc355_70k3N'
self.user = fixture_add_user(u'joauth', self.user_password) self.user = fixture_add_user(u'joauth', self.user_password)
self.login(test_app) self.login()
def login(self, test_app): def login(self):
test_app.post( self.test_app.post(
'/auth/login/', { '/auth/login/', {
'username': self.user.username, 'username': self.user.username,
'password': self.user_password}) 'password': self.user_password})
def register_client(self, test_app, name, client_type, description=None, def register_client(self, name, client_type, description=None,
redirect_uri=''): redirect_uri=''):
return test_app.post( return self.test_app.post(
'/oauth/client/register', { '/oauth/client/register', {
'name': name, 'name': name,
'description': description, 'description': description,
@ -56,12 +60,10 @@ class TestOAuth(object):
def get_context(self, template_name): def get_context(self, template_name):
return template.TEMPLATE_TEST_CONTEXT[template_name] return template.TEMPLATE_TEST_CONTEXT[template_name]
def test_1_public_client_registration_without_redirect_uri(self, test_app): def test_1_public_client_registration_without_redirect_uri(self):
''' Test 'public' OAuth client registration without any redirect uri ''' ''' Test 'public' OAuth client registration without any redirect uri '''
self._setup(test_app) response = self.register_client(
u'OMGOMGOMG', 'public', 'OMGOMG Apache License v2')
response = self.register_client(test_app, u'OMGOMGOMG', 'public',
'OMGOMG Apache License v2')
ctx = self.get_context('oauth/client/register.html') ctx = self.get_context('oauth/client/register.html')
@ -76,12 +78,11 @@ class TestOAuth(object):
# Should not pass through # Should not pass through
assert not client assert not client
def test_2_successful_public_client_registration(self, test_app): def test_2_successful_public_client_registration(self):
''' Successfully register a public client ''' ''' Successfully register a public client '''
self._setup(test_app)
uri = 'http://foo.example' uri = 'http://foo.example'
self.register_client(test_app, u'OMGOMG', 'public', 'OMG!', self.register_client(
uri) u'OMGOMG', 'public', 'OMG!', uri)
client = self.db.OAuthClient.query.filter( client = self.db.OAuthClient.query.filter(
self.db.OAuthClient.name == u'OMGOMG').first() self.db.OAuthClient.name == u'OMGOMG').first()
@ -92,12 +93,10 @@ class TestOAuth(object):
# Client should have been registered # Client should have been registered
assert client assert client
def test_3_successful_confidential_client_reg(self, test_app): def test_3_successful_confidential_client_reg(self):
''' Register a confidential OAuth client ''' ''' Register a confidential OAuth client '''
self._setup(test_app)
response = self.register_client( response = self.register_client(
test_app, u'GMOGMO', 'confidential', 'NO GMO!') u'GMOGMO', 'confidential', 'NO GMO!')
assert response.status_int == 302 assert response.status_int == 302
@ -109,16 +108,14 @@ class TestOAuth(object):
return client return client
def test_4_authorize_confidential_client(self, test_app): def test_4_authorize_confidential_client(self):
''' Authorize a confidential client as a logged in user ''' ''' Authorize a confidential client as a logged in user '''
self._setup(test_app) client = self.test_3_successful_confidential_client_reg()
client = self.test_3_successful_confidential_client_reg(test_app)
client_identifier = client.identifier client_identifier = client.identifier
redirect_uri = 'https://foo.example' redirect_uri = 'https://foo.example'
response = test_app.get('/oauth/authorize', { response = self.test_app.get('/oauth/authorize', {
'client_id': client.identifier, 'client_id': client.identifier,
'scope': 'all', 'scope': 'all',
'redirect_uri': redirect_uri}) 'redirect_uri': redirect_uri})
@ -131,7 +128,7 @@ class TestOAuth(object):
form = ctx['form'] form = ctx['form']
# Short for client authorization post reponse # Short for client authorization post reponse
capr = test_app.post( capr = self.test_app.post(
'/oauth/client/authorize', { '/oauth/client/authorize', {
'client_id': form.client_id.data, 'client_id': form.client_id.data,
'allow': 'Allow', 'allow': 'Allow',
@ -149,19 +146,16 @@ class TestOAuth(object):
''' Get the value of ?code= from an URI ''' ''' Get the value of ?code= from an URI '''
return parse_qs(urlparse(uri).query)['code'][0] return parse_qs(urlparse(uri).query)['code'][0]
def test_token_endpoint_successful_confidential_request(self, test_app): def test_token_endpoint_successful_confidential_request(self):
''' Successful request against token endpoint ''' ''' Successful request against token endpoint '''
self._setup(test_app) code_redirect, client_id = self.test_4_authorize_confidential_client()
code_redirect, client_id = self.test_4_authorize_confidential_client(
test_app)
code = self.get_code_from_redirect_uri(code_redirect.location) code = self.get_code_from_redirect_uri(code_redirect.location)
client = self.db.OAuthClient.query.filter( client = self.db.OAuthClient.query.filter(
self.db.OAuthClient.identifier == unicode(client_id)).first() self.db.OAuthClient.identifier == unicode(client_id)).first()
token_res = test_app.get('/oauth/access_token?client_id={0}&\ token_res = self.test_app.get('/oauth/access_token?client_id={0}&\
code={1}&client_secret={2}'.format(client_id, code, client.secret)) code={1}&client_secret={2}'.format(client_id, code, client.secret))
assert token_res.status_int == 200 assert token_res.status_int == 200
@ -180,19 +174,16 @@ code={1}&client_secret={2}'.format(client_id, code, client.secret))
return client_id, token_data return client_id, token_data
def test_token_endpont_missing_id_confidential_request(self, test_app): def test_token_endpont_missing_id_confidential_request(self):
''' Unsuccessful request against token endpoint, missing client_id ''' ''' Unsuccessful request against token endpoint, missing client_id '''
self._setup(test_app) code_redirect, client_id = self.test_4_authorize_confidential_client()
code_redirect, client_id = self.test_4_authorize_confidential_client(
test_app)
code = self.get_code_from_redirect_uri(code_redirect.location) code = self.get_code_from_redirect_uri(code_redirect.location)
client = self.db.OAuthClient.query.filter( client = self.db.OAuthClient.query.filter(
self.db.OAuthClient.identifier == unicode(client_id)).first() self.db.OAuthClient.identifier == unicode(client_id)).first()
token_res = test_app.get('/oauth/access_token?\ token_res = self.test_app.get('/oauth/access_token?\
code={0}&client_secret={1}'.format(code, client.secret)) code={0}&client_secret={1}'.format(code, client.secret))
assert token_res.status_int == 200 assert token_res.status_int == 200
@ -204,16 +195,16 @@ code={0}&client_secret={1}'.format(code, client.secret))
assert token_data['error'] == 'invalid_request' assert token_data['error'] == 'invalid_request'
assert len(token_data['error_description']) assert len(token_data['error_description'])
def test_refresh_token(self, test_app): def test_refresh_token(self):
''' Try to get a new access token using the refresh token ''' ''' Try to get a new access token using the refresh token '''
# Get an access token and a refresh token # Get an access token and a refresh token
client_id, token_data =\ client_id, token_data =\
self.test_token_endpoint_successful_confidential_request(test_app) self.test_token_endpoint_successful_confidential_request()
client = self.db.OAuthClient.query.filter( client = self.db.OAuthClient.query.filter(
self.db.OAuthClient.identifier == client_id).first() self.db.OAuthClient.identifier == client_id).first()
token_res = test_app.get('/oauth/access_token', token_res = self.test_app.get('/oauth/access_token',
{'refresh_token': token_data['refresh_token'], {'refresh_token': token_data['refresh_token'],
'client_id': client_id, 'client_id': client_id,
'client_secret': client.secret 'client_secret': client.secret