194 lines
7.5 KiB
Python
194 lines
7.5 KiB
Python
import json
|
|
import time
|
|
|
|
from mpwo_api.tests.base import BaseTestCase
|
|
from mpwo_api.tests.utils import add_user
|
|
|
|
|
|
class TestAuthBlueprint(BaseTestCase):
|
|
|
|
def test_user_registration(self):
|
|
with self.client:
|
|
response = self.client.post(
|
|
'/api/auth/register',
|
|
data=json.dumps(dict(
|
|
username='justatest',
|
|
email='test@test.com',
|
|
password='123456'
|
|
)),
|
|
content_type='application/json'
|
|
)
|
|
data = json.loads(response.data.decode())
|
|
self.assertTrue(data['status'] == 'success')
|
|
self.assertTrue(data['message'] == 'Successfully registered.')
|
|
self.assertTrue(data['auth_token'])
|
|
self.assertTrue(response.content_type == 'application/json')
|
|
self.assertEqual(response.status_code, 201)
|
|
|
|
def test_user_registration_user_already_exists(self):
|
|
add_user('test', 'test@test.com', 'test')
|
|
with self.client:
|
|
response = self.client.post(
|
|
'/api/auth/register',
|
|
data=json.dumps(dict(
|
|
username='test',
|
|
email='test@test.com',
|
|
password='test'
|
|
)),
|
|
content_type='application/json'
|
|
)
|
|
data = json.loads(response.data.decode())
|
|
self.assertTrue(data['status'] == 'error')
|
|
self.assertTrue(
|
|
data['message'] == 'Sorry. That user already exists.')
|
|
self.assertTrue(response.content_type == 'application/json')
|
|
self.assertEqual(response.status_code, 400)
|
|
|
|
def test_user_registration_invalid_json(self):
|
|
with self.client:
|
|
response = self.client.post(
|
|
'/api/auth/register',
|
|
data=json.dumps(dict()),
|
|
content_type='application/json'
|
|
)
|
|
data = json.loads(response.data.decode())
|
|
self.assertEqual(response.status_code, 400)
|
|
self.assertIn('Invalid payload.', data['message'])
|
|
self.assertIn('error', data['status'])
|
|
|
|
def test_user_registration_invalid_json_keys_no_username(self):
|
|
with self.client:
|
|
response = self.client.post(
|
|
'/api/auth/register',
|
|
data=json.dumps(dict(email='test@test.com', password='test')),
|
|
content_type='application/json',
|
|
)
|
|
data = json.loads(response.data.decode())
|
|
self.assertEqual(response.status_code, 400)
|
|
self.assertIn('Invalid payload.', data['message'])
|
|
self.assertIn('error', data['status'])
|
|
|
|
def test_user_registration_invalid_json_keys_no_email(self):
|
|
with self.client:
|
|
response = self.client.post(
|
|
'/api/auth/register',
|
|
data=json.dumps(dict(
|
|
username='test', password='test')),
|
|
content_type='application/json',
|
|
)
|
|
data = json.loads(response.data.decode())
|
|
self.assertEqual(response.status_code, 400)
|
|
self.assertIn('Invalid payload.', data['message'])
|
|
self.assertIn('error', data['status'])
|
|
|
|
def test_user_registration_invalid_json_keys_no_password(self):
|
|
with self.client:
|
|
response = self.client.post(
|
|
'/api/auth/register',
|
|
data=json.dumps(dict(
|
|
username='test', email='test@test.com')),
|
|
content_type='application/json',
|
|
)
|
|
data = json.loads(response.data.decode())
|
|
self.assertEqual(response.status_code, 400)
|
|
self.assertIn('Invalid payload.', data['message'])
|
|
self.assertIn('error', data['status'])
|
|
|
|
def test_registered_user_login(self):
|
|
with self.client:
|
|
add_user('test', 'test@test.com', 'test')
|
|
response = self.client.post(
|
|
'/api/auth/login',
|
|
data=json.dumps(dict(
|
|
email='test@test.com',
|
|
password='test'
|
|
)),
|
|
content_type='application/json'
|
|
)
|
|
data = json.loads(response.data.decode())
|
|
self.assertTrue(data['status'] == 'success')
|
|
self.assertTrue(data['message'] == 'Successfully logged in.')
|
|
self.assertTrue(data['auth_token'])
|
|
self.assertTrue(response.content_type == 'application/json')
|
|
self.assertEqual(response.status_code, 200)
|
|
|
|
def test_no_registered_user_login(self):
|
|
with self.client:
|
|
response = self.client.post(
|
|
'/api/auth/login',
|
|
data=json.dumps(dict(
|
|
email='test@test.com',
|
|
password='test'
|
|
)),
|
|
content_type='application/json'
|
|
)
|
|
data = json.loads(response.data.decode())
|
|
self.assertTrue(data['status'] == 'error')
|
|
self.assertTrue(data['message'] == 'User does not exist.')
|
|
self.assertTrue(response.content_type == 'application/json')
|
|
self.assertEqual(response.status_code, 404)
|
|
|
|
def test_valid_logout(self):
|
|
add_user('test', 'test@test.com', 'test')
|
|
with self.client:
|
|
# user login
|
|
resp_login = self.client.post(
|
|
'/api/auth/login',
|
|
data=json.dumps(dict(
|
|
email='test@test.com',
|
|
password='test'
|
|
)),
|
|
content_type='application/json'
|
|
)
|
|
# valid token logout
|
|
response = self.client.get(
|
|
'/api/auth/logout',
|
|
headers=dict(
|
|
Authorization='Bearer ' + json.loads(
|
|
resp_login.data.decode()
|
|
)['auth_token']
|
|
)
|
|
)
|
|
data = json.loads(response.data.decode())
|
|
self.assertTrue(data['status'] == 'success')
|
|
self.assertTrue(data['message'] == 'Successfully logged out.')
|
|
self.assertEqual(response.status_code, 200)
|
|
|
|
def test_invalid_logout_expired_token(self):
|
|
add_user('test', 'test@test.com', 'test')
|
|
with self.client:
|
|
resp_login = self.client.post(
|
|
'/api/auth/login',
|
|
data=json.dumps(dict(
|
|
email='test@test.com',
|
|
password='test'
|
|
)),
|
|
content_type='application/json'
|
|
)
|
|
# invalid token logout
|
|
time.sleep(4)
|
|
response = self.client.get(
|
|
'/api/auth/logout',
|
|
headers=dict(
|
|
Authorization='Bearer ' + json.loads(
|
|
resp_login.data.decode()
|
|
)['auth_token']
|
|
)
|
|
)
|
|
data = json.loads(response.data.decode())
|
|
self.assertTrue(data['status'] == 'error')
|
|
self.assertTrue(
|
|
data['message'] == 'Signature expired. Please log in again.')
|
|
self.assertEqual(response.status_code, 401)
|
|
|
|
def test_invalid_logout(self):
|
|
with self.client:
|
|
response = self.client.get(
|
|
'/api/auth/logout',
|
|
headers=dict(Authorization='Bearer invalid'))
|
|
data = json.loads(response.data.decode())
|
|
self.assertTrue(data['status'] == 'error')
|
|
self.assertTrue(
|
|
data['message'] == 'Invalid token. Please log in again.')
|
|
self.assertEqual(response.status_code, 401)
|