2018-04-27 17:16:43 +00:00
|
|
|
from uuid import UUID
|
|
|
|
|
2018-08-03 16:15:08 +00:00
|
|
|
import pytest
|
2018-04-27 17:16:43 +00:00
|
|
|
from sqlalchemy_utils import Password
|
2018-09-20 14:40:41 +00:00
|
|
|
from teal.enums import Country
|
|
|
|
from teal.marshmallow import ValidationError
|
2018-05-16 13:23:48 +00:00
|
|
|
from werkzeug.exceptions import NotFound
|
2018-04-27 17:16:43 +00:00
|
|
|
|
2019-01-19 18:19:35 +00:00
|
|
|
from ereuse_devicehub import auth
|
2018-04-27 17:16:43 +00:00
|
|
|
from ereuse_devicehub.client import Client
|
|
|
|
from ereuse_devicehub.db import db
|
|
|
|
from ereuse_devicehub.devicehub import Devicehub
|
|
|
|
from ereuse_devicehub.resources.user import UserDef
|
2018-05-16 13:23:48 +00:00
|
|
|
from ereuse_devicehub.resources.user.exceptions import WrongCredentials
|
2018-04-27 17:16:43 +00:00
|
|
|
from ereuse_devicehub.resources.user.models import User
|
2018-08-03 16:15:08 +00:00
|
|
|
from tests.conftest import app_context, create_user
|
2018-04-27 17:16:43 +00:00
|
|
|
|
|
|
|
|
2018-08-03 16:15:08 +00:00
|
|
|
@pytest.mark.usefixtures(app_context.__name__)
|
2018-09-20 14:40:41 +00:00
|
|
|
def test_create_user_method_with_agent(app: Devicehub):
|
2019-06-19 11:35:26 +00:00
|
|
|
"""Tests creating an user through the main method.
|
2018-04-27 17:16:43 +00:00
|
|
|
|
|
|
|
This method checks that the token is correct, too.
|
|
|
|
"""
|
2018-08-03 16:15:08 +00:00
|
|
|
user_def = app.resources['User'] # type: UserDef
|
2018-09-20 14:40:41 +00:00
|
|
|
u = user_def.create_user(email='foo@foo.com',
|
|
|
|
password='foo',
|
|
|
|
agent='Nice Person',
|
|
|
|
country=Country.ES.name,
|
|
|
|
telephone='+34 666 66 66 66',
|
|
|
|
tax_id='1234')
|
2018-08-03 16:15:08 +00:00
|
|
|
user = User.query.filter_by(id=u['id']).one() # type: User
|
|
|
|
assert user.email == 'foo@foo.com'
|
|
|
|
assert isinstance(user.token, UUID)
|
|
|
|
assert User.query.filter_by(email='foo@foo.com').one() == user
|
2018-09-20 14:40:41 +00:00
|
|
|
individual = next(iter(user.individuals))
|
|
|
|
assert individual.name == 'Nice Person'
|
|
|
|
assert individual.tax_id == '1234'
|
|
|
|
assert individual.telephone.e164 == '+34666666666'
|
|
|
|
assert individual.country == Country.ES
|
|
|
|
assert individual.email == user.email
|
2018-04-27 17:16:43 +00:00
|
|
|
|
|
|
|
|
2018-08-03 16:15:08 +00:00
|
|
|
@pytest.mark.usefixtures(app_context.__name__)
|
|
|
|
def test_create_user_email_insensitive():
|
2018-04-27 17:16:43 +00:00
|
|
|
"""Ensures email is case insensitive."""
|
2018-08-03 16:15:08 +00:00
|
|
|
user = User(email='FOO@foo.com')
|
|
|
|
db.session.add(user)
|
|
|
|
db.session.commit()
|
|
|
|
# We search in case insensitive manner
|
|
|
|
u1 = User.query.filter_by(email='foo@foo.com').one()
|
|
|
|
assert u1 == user
|
|
|
|
assert u1.email == 'foo@foo.com'
|
2018-04-27 17:16:43 +00:00
|
|
|
|
|
|
|
|
2018-08-03 16:15:08 +00:00
|
|
|
@pytest.mark.usefixtures(app_context.__name__)
|
|
|
|
def test_hash_password():
|
2018-04-27 17:16:43 +00:00
|
|
|
"""Tests correct password hashing and equaling."""
|
2018-08-03 16:15:08 +00:00
|
|
|
user = create_user()
|
|
|
|
assert isinstance(user.password, Password)
|
|
|
|
assert user.password == 'foo'
|
2018-04-27 17:16:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_login_success(client: Client, app: Devicehub):
|
2019-06-19 11:35:26 +00:00
|
|
|
"""Tests successfully performing login.
|
2018-04-27 17:16:43 +00:00
|
|
|
This checks that:
|
|
|
|
|
|
|
|
- User is returned.
|
|
|
|
- User has token.
|
|
|
|
- User has not the password.
|
|
|
|
"""
|
|
|
|
with app.app_context():
|
|
|
|
create_user()
|
|
|
|
user, _ = client.post({'email': 'foo@foo.com', 'password': 'foo'},
|
2019-01-16 19:40:27 +00:00
|
|
|
uri='/users/login/',
|
2018-04-27 17:16:43 +00:00
|
|
|
status=200)
|
|
|
|
assert user['email'] == 'foo@foo.com'
|
2019-01-19 18:19:35 +00:00
|
|
|
assert UUID(auth.Auth.decode(user['token']))
|
2018-04-27 17:16:43 +00:00
|
|
|
assert 'password' not in user
|
2018-08-03 16:15:08 +00:00
|
|
|
assert user['individuals'][0]['name'] == 'Timmy'
|
|
|
|
assert user['individuals'][0]['type'] == 'Person'
|
|
|
|
assert len(user['individuals']) == 1
|
2019-01-23 15:55:04 +00:00
|
|
|
assert user['inventories'][0]['id'] == 'test'
|
2018-04-27 17:16:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_login_failure(client: Client, app: Devicehub):
|
|
|
|
"""Tests performing wrong login."""
|
|
|
|
# Wrong password
|
|
|
|
with app.app_context():
|
|
|
|
create_user()
|
|
|
|
client.post({'email': 'foo@foo.com', 'password': 'wrong pass'},
|
2019-01-16 19:40:27 +00:00
|
|
|
uri='/users/login/',
|
2018-05-16 13:23:48 +00:00
|
|
|
status=WrongCredentials)
|
2018-04-27 17:16:43 +00:00
|
|
|
# Wrong URI
|
|
|
|
client.post({}, uri='/wrong-uri', status=NotFound)
|
|
|
|
# Malformed data
|
2019-01-16 19:40:27 +00:00
|
|
|
client.post({}, uri='/users/login/', status=ValidationError)
|
2018-04-27 17:16:43 +00:00
|
|
|
client.post({'email': 'this is not an email', 'password': 'nope'},
|
2019-01-16 19:40:27 +00:00
|
|
|
uri='/users/login/',
|
2018-05-16 13:23:48 +00:00
|
|
|
status=ValidationError)
|
2019-01-23 15:55:04 +00:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.xfail(reason='Test not developed')
|
|
|
|
def test_user_at_least_one_inventory():
|
|
|
|
pass
|