2022-12-28 06:47:35 +00:00
|
|
|
import pytest
|
|
|
|
import requests
|
|
|
|
|
|
|
|
from backend import config
|
|
|
|
from tests.model.fakes import build_tribes
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.usefixtures("restart_api")
|
|
|
|
@pytest.mark.usefixtures("clean_db")
|
|
|
|
def test_api_post_student():
|
|
|
|
url = config.get_api_url()
|
|
|
|
tribe = build_tribes(1)[0]
|
|
|
|
requests.post(f"{url}/tribes", json=tribe.to_dict())
|
|
|
|
|
|
|
|
data = {"name": "zart", "tribe_name": tribe.name}
|
|
|
|
r = requests.post(f"{url}/students", json=data)
|
|
|
|
|
|
|
|
assert r.status_code == 201
|
|
|
|
assert r.json()["name"] == "zart"
|
|
|
|
assert r.json()["tribe_name"] == tribe.name
|
|
|
|
assert r.json()["id"]
|
2022-12-29 06:23:02 +00:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.usefixtures("restart_api")
|
|
|
|
@pytest.mark.usefixtures("clean_db")
|
2022-12-29 06:37:49 +00:00
|
|
|
def test_api_post_student_with_id():
|
2022-12-29 06:23:02 +00:00
|
|
|
url = config.get_api_url()
|
|
|
|
tribe = build_tribes(1)[0]
|
|
|
|
requests.post(f"{url}/tribes", json=tribe.to_dict())
|
|
|
|
|
2022-12-29 06:37:49 +00:00
|
|
|
data = {"id": "1234", "name": "zart", "tribe_name": tribe.name}
|
|
|
|
requests.post(f"{url}/students", json=data)
|
2022-12-29 06:23:02 +00:00
|
|
|
r = requests.post(f"{url}/students", json=data)
|
|
|
|
|
2022-12-29 06:37:49 +00:00
|
|
|
assert r.status_code == 409
|
|
|
|
assert (
|
|
|
|
r.json()
|
|
|
|
== f"You can't post a student with an id. It is already registrered. Use PUT to modify it."
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.usefixtures("restart_api")
|
|
|
|
@pytest.mark.usefixtures("clean_db")
|
|
|
|
def test_api_post_student_in_non_existant_tribe():
|
|
|
|
url = config.get_api_url()
|
|
|
|
tribe = build_tribes(1)[0]
|
|
|
|
requests.post(f"{url}/tribes", json=tribe.to_dict())
|
|
|
|
|
|
|
|
data = {"name": "zart", "tribe_name": tribe.name + "_"}
|
|
|
|
requests.post(f"{url}/students", json=data)
|
|
|
|
r = requests.post(f"{url}/students", json=data)
|
|
|
|
|
|
|
|
assert r.status_code == 409
|
|
|
|
assert (
|
|
|
|
r.json()
|
|
|
|
== f"The tribe {tribe.name+'_'} does not exists. You can't add a student in it."
|
|
|
|
)
|