2022-02-12 16:31:29 +01:00
|
|
|
from .utils import (
|
|
|
|
TEST_URL,
|
|
|
|
assert_navbar,
|
|
|
|
login_valid_user,
|
|
|
|
register_valid_user_and_logout,
|
|
|
|
)
|
2020-09-13 21:39:44 +02:00
|
|
|
|
|
|
|
URL = f'{TEST_URL}/login'
|
|
|
|
|
|
|
|
|
|
|
|
class TestLogin:
|
|
|
|
def test_navbar_contains_login(self, selenium):
|
|
|
|
selenium.get(URL)
|
|
|
|
|
2021-10-31 21:04:47 +01:00
|
|
|
nav = selenium.find_element_by_id('nav').text
|
2020-09-13 21:39:44 +02:00
|
|
|
assert 'Login' in nav
|
|
|
|
|
|
|
|
def test_it_displays_login_form(self, selenium):
|
|
|
|
selenium.get(URL)
|
|
|
|
|
|
|
|
inputs = selenium.find_elements_by_tag_name('input')
|
2021-10-31 21:04:47 +01:00
|
|
|
assert len(inputs) == 2
|
|
|
|
assert inputs[0].get_attribute('id') == 'email'
|
2020-09-13 21:39:44 +02:00
|
|
|
assert inputs[0].get_attribute('type') == 'email'
|
2021-10-31 21:04:47 +01:00
|
|
|
assert inputs[1].get_attribute('id') == 'password'
|
2020-09-13 21:39:44 +02:00
|
|
|
assert inputs[1].get_attribute('type') == 'password'
|
2021-10-31 21:04:47 +01:00
|
|
|
|
|
|
|
button = selenium.find_element_by_tag_name('button')
|
|
|
|
assert button.get_attribute('type') == 'submit'
|
|
|
|
assert 'Log in' in button.text
|
|
|
|
|
2021-11-06 23:16:19 +01:00
|
|
|
links = selenium.find_elements_by_class_name('links')
|
|
|
|
assert links[0].tag_name == 'a'
|
|
|
|
assert 'Register' in links[0].text
|
|
|
|
assert links[1].tag_name == 'a'
|
|
|
|
assert 'Forgot password?' in links[1].text
|
2020-09-13 21:39:44 +02:00
|
|
|
|
|
|
|
def test_user_can_log_in(self, selenium):
|
2022-02-12 16:31:29 +01:00
|
|
|
user = register_valid_user_and_logout(selenium)
|
2020-09-13 21:39:44 +02:00
|
|
|
|
|
|
|
login_valid_user(selenium, user)
|
|
|
|
|
|
|
|
assert_navbar(selenium, user)
|