2020-09-13 21:39:44 +02:00
|
|
|
from .utils import (
|
|
|
|
TEST_URL,
|
|
|
|
assert_navbar,
|
|
|
|
random_string,
|
|
|
|
register,
|
|
|
|
register_valid_user,
|
|
|
|
)
|
|
|
|
|
|
|
|
URL = f'{TEST_URL}/register'
|
|
|
|
|
|
|
|
|
|
|
|
class TestRegistration:
|
|
|
|
def test_it_displays_registration_form(self, selenium):
|
|
|
|
selenium.get(URL)
|
|
|
|
selenium.implicitly_wait(1)
|
|
|
|
|
|
|
|
inputs = selenium.find_elements_by_tag_name('input')
|
2021-10-31 21:04:47 +01:00
|
|
|
assert len(inputs) == 4
|
|
|
|
assert inputs[0].get_attribute('id') == 'username'
|
2020-09-13 21:39:44 +02:00
|
|
|
assert inputs[0].get_attribute('type') == 'text'
|
2021-10-31 21:04:47 +01:00
|
|
|
assert inputs[1].get_attribute('id') == 'email'
|
2020-09-13 21:39:44 +02:00
|
|
|
assert inputs[1].get_attribute('type') == 'email'
|
2021-10-31 21:04:47 +01:00
|
|
|
assert inputs[2].get_attribute('id') == 'password'
|
2020-09-13 21:39:44 +02:00
|
|
|
assert inputs[2].get_attribute('type') == 'password'
|
2021-10-31 21:04:47 +01:00
|
|
|
assert inputs[3].get_attribute('id') == 'confirm-password'
|
2020-09-13 21:39:44 +02:00
|
|
|
assert inputs[3].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 'Register' in button.text
|
2020-09-13 21:39:44 +02:00
|
|
|
|
|
|
|
def test_user_can_register(self, selenium):
|
|
|
|
user = register_valid_user(selenium)
|
|
|
|
|
|
|
|
assert_navbar(selenium, user)
|
|
|
|
|
|
|
|
def test_user_can_not_register_with_invalid_email(self, selenium):
|
|
|
|
user_name = random_string()
|
|
|
|
user_infos = {
|
|
|
|
'username': user_name,
|
|
|
|
'email': user_name,
|
|
|
|
'password': 'p@ssw0rd',
|
|
|
|
'password_conf': 'p@ssw0rd',
|
|
|
|
}
|
|
|
|
|
|
|
|
register(selenium, user_infos)
|
|
|
|
|
|
|
|
assert selenium.current_url == 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 'Register' in nav
|
|
|
|
assert 'Login' in nav
|
|
|
|
|
|
|
|
def test_user_can_not_register_if_username_is_already_taken(
|
|
|
|
self, selenium
|
|
|
|
):
|
|
|
|
user_name = random_string()
|
|
|
|
user_infos = {
|
|
|
|
'username': 'admin',
|
|
|
|
'email': f'{user_name}@example.com',
|
|
|
|
'password': 'p@ssw0rd',
|
|
|
|
'password_conf': 'p@ssw0rd',
|
|
|
|
}
|
|
|
|
|
|
|
|
register(selenium, user_infos)
|
|
|
|
|
|
|
|
assert selenium.current_url == URL
|
2021-10-31 21:04:47 +01:00
|
|
|
errors = selenium.find_element_by_class_name('error-message').text
|
2021-11-01 11:09:42 +01:00
|
|
|
assert 'Sorry, that user already exists.' in errors
|
2020-09-13 21:39:44 +02:00
|
|
|
|
|
|
|
def test_user_can_not_register_if_email_is_already_taken(self, selenium):
|
|
|
|
user_name = random_string()
|
|
|
|
user_infos = {
|
|
|
|
'username': user_name,
|
|
|
|
'email': 'admin@example.com',
|
|
|
|
'password': 'p@ssw0rd',
|
|
|
|
'password_conf': 'p@ssw0rd',
|
|
|
|
}
|
|
|
|
|
|
|
|
register(selenium, user_infos)
|
|
|
|
|
|
|
|
assert selenium.current_url == URL
|
2021-10-31 21:04:47 +01:00
|
|
|
errors = selenium.find_element_by_class_name('error-message').text
|
2021-11-01 11:09:42 +01:00
|
|
|
assert 'Sorry, that user already exists.' in errors
|
2020-09-13 21:39:44 +02:00
|
|
|
|
|
|
|
def test_user_can_not_register_if_username_is_too_short(self, selenium):
|
|
|
|
user_name = random_string(2)
|
|
|
|
user_infos = {
|
|
|
|
'username': user_name,
|
|
|
|
'email': 'admin@example.com',
|
|
|
|
'password': 'p@ssw0rd',
|
|
|
|
'password_conf': 'p@ssw0rd',
|
|
|
|
}
|
|
|
|
|
|
|
|
register(selenium, user_infos)
|
|
|
|
|
|
|
|
assert selenium.current_url == URL
|
2021-10-31 21:04:47 +01:00
|
|
|
errors = selenium.find_element_by_class_name('error-message').text
|
|
|
|
assert 'Username: 3 to 12 characters required' in errors
|
2020-09-13 21:39:44 +02:00
|
|
|
|
|
|
|
def test_user_can_not_register_if_username_is_too_long(self, selenium):
|
|
|
|
user_name = random_string(13)
|
|
|
|
user_infos = {
|
|
|
|
'username': user_name,
|
|
|
|
'email': 'admin@example.com',
|
|
|
|
'password': 'p@ssw0rd',
|
|
|
|
'password_conf': 'p@ssw0rd',
|
|
|
|
}
|
|
|
|
|
|
|
|
register(selenium, user_infos)
|
|
|
|
|
|
|
|
assert selenium.current_url == URL
|
2021-10-31 21:04:47 +01:00
|
|
|
errors = selenium.find_element_by_class_name('error-message').text
|
|
|
|
assert 'Username: 3 to 12 characters required' in errors
|
2020-09-13 21:39:44 +02:00
|
|
|
|
|
|
|
def test_it_displays_error_if_passwords_do_not_match(self, selenium):
|
|
|
|
user_name = random_string()
|
|
|
|
user_infos = {
|
|
|
|
'username': user_name,
|
|
|
|
'email': f'{user_name}@example.com',
|
|
|
|
'password': 'p@ssw0rd',
|
|
|
|
'password_conf': 'password',
|
|
|
|
}
|
|
|
|
|
|
|
|
register(selenium, user_infos)
|
|
|
|
|
|
|
|
assert selenium.current_url == URL
|
2021-10-31 21:04:47 +01:00
|
|
|
errors = selenium.find_element_by_class_name('error-message').text
|
2021-11-01 11:09:42 +01:00
|
|
|
assert 'password and password confirmation don\'t match' in errors
|
2020-09-13 21:39:44 +02:00
|
|
|
|
|
|
|
def test_it_displays_error_if_password_is_too_short(self, selenium):
|
|
|
|
user_name = random_string()
|
|
|
|
user_infos = {
|
|
|
|
'username': user_name,
|
|
|
|
'email': f'{user_name}@example.com',
|
|
|
|
'password': 'p@ss',
|
|
|
|
'password_conf': 'p@ss',
|
|
|
|
}
|
|
|
|
|
|
|
|
register(selenium, user_infos)
|
|
|
|
|
|
|
|
assert selenium.current_url == URL
|
2021-10-31 21:04:47 +01:00
|
|
|
errors = selenium.find_element_by_class_name('error-message').text
|
|
|
|
assert 'Password: 8 characters required' in errors
|