-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_create_courier.py
40 lines (34 loc) · 1.85 KB
/
test_create_courier.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import allure
import requests
from handle import Handle
from urls import Urls
from generator import register_new_courier as gen
from generator import register_new_courier_without_login as gen_without_login
from generator import register_new_courier_without_login as gen_without_password
class TestCreateCourier:
data = gen()
@allure.title('Создание курьера')
def test_create_courier(self):
response_body = '{"ok":true}'
response = requests.post(
f'{Urls.URL}{Handle.CREATE_COURIER}',
TestCreateCourier.data)
assert response.status_code == 201 and response.text == response_body
@allure.title('Нельзя создать двух одинаковых курьеров с одинаковыми логинами')
def test_courier_was_created(self):
response = requests.post(
f'{Urls.URL}{Handle.CREATE_COURIER}',
TestCreateCourier.data)
assert response.status_code == 409 and 'Этот логин уже используется' in response.text
@allure.title('Нельзя создать курьера без логина')
def test_create_courier_without_login(self):
response = requests.post(
f'{Urls.URL}{Handle.CREATE_COURIER}',
gen_without_login())
assert response.status_code == 400 and 'Недостаточно данных для создания учетной записи' in response.text
@allure.title('Нельзя создать курьера без пароля')
def test_create_courier_without_password(self):
response = requests.post(
f'{Urls.URL}{Handle.CREATE_COURIER}',
gen_without_password())
assert response.status_code == 400 and 'Недостаточно данных для создания учетной записи' in response.text