This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
devicehub-teal/tests/test_render_2_0.py

29 lines
928 B
Python
Raw Normal View History

2022-03-15 10:17:05 +00:00
# import pytest
from flask.testing import FlaskClient
from ereuse_devicehub.client import UserClient
from ereuse_devicehub.devicehub import Devicehub
# from tests import conftest
# @pytest.mark.mvp
# @pytest.mark.usefixtures()
# def test_create_application(client: FlaskClient, mocker):
# @pytest.mark.usefixtures(conftest.app_context.__name__)
def test_login(user: UserClient, app: Devicehub):
"""Checks a simple login"""
client = FlaskClient(app, use_cookies=True, response_wrapper=app.response_class)
body, status, headers = client.get('/login/')
body = next(body).decode("utf-8")
assert status == '200 OK'
assert "Login to Your Account" in body
data = {'email': user.email, 'password': 'foo', "remember": False}
body, status, headers = client.post('/login/', data=data)
body = next(body).decode("utf-8")
assert status == '200 OK'
assert "Login to Your Account" not in body