def test_patch_part_fields(booker_api, first, last): """Тестовая функция для проверки вызова patch запроса с передаваемым телом. Проверяются позитивные варианты через параметризацию - обновление значений "firstname", "lastname". Обращение напрямую к определенному id в урле. :param booker_api: фикстура, создающая и возвращающая экземпляр класса ApiClient :param first: передаваемый в теле запроса firstname :param last: передаваемый в теле запроса lastname """ id_to_do_request = body_id_data.create_test_entity(booker_api) with allure.step("Получаем все данные сущности"): data_for_id = body_id_data.TestDictForRequests().return_dict_other() data = {"firstname": first, "lastname": last} with allure.step(allure_steps.send_patch_request(data, id_to_do_request)): response = booker_api.patch(path=id_to_do_request, data=json.dumps(data)) with allure.step(allure_steps.check_200_status_code()): assert response.status_code == 200, f"Код ответа - {response.status_code}" with allure.step(allure_steps.check_firstname(first)): assert response.json()["firstname"] == first, \ f"Имя - '{response.json()['firstname']}'" with allure.step(allure_steps.check_lastname(last)): assert response.json()["lastname"] == last, \ f"Фамилия - '{response.json()['lastname']}'" with allure.step(allure_steps.check_totalprice(data_for_id['totalprice'])): assert response.json()["totalprice"] == data_for_id["totalprice"], \ f"Итоговая цена - '{response.json()['totalprice']}'" with allure.step(allure_steps.check_depositpaid( data_for_id['depositpaid'])): assert response.json()["depositpaid"] == data_for_id["depositpaid"], \ f"Депозит - '{response.json()['depositpaid']}'" with allure.step( allure_steps.check_checkin( data_for_id['bookingdates']['checkin'])): assert response.json()["bookingdates"]["checkin"] == \ data_for_id["bookingdates"]["checkin"], \ f"Дата заезда - '{response.json()['bookingdates']['checkin']}'" with allure.step( allure_steps.check_checkout( data_for_id['bookingdates']['checkout'])): assert response.json()["bookingdates"]["checkout"] == \ data_for_id["bookingdates"]["checkout"], \ f"Дата выезда - '{response.json()['bookingdates']['checkout']}'" body_id_data.delete_test_entity(booker_api, id_to_do_request)
def test_put_all_fields(booker_api): """Тестовая функция для проверки вызова put запроса с передаваемым телом. Проверяется обновление всех значений. Обращение напрямую к определенному id в урле. :param booker_api: фикстура, создающая и возвращающая экземпляр класса ApiClient """ data = body_id_data.TestDictForRequests().return_dict() id_to_do_request = body_id_data.create_test_entity(booker_api) with allure.step(allure_steps.send_put_request(data, id_to_do_request)): response = booker_api.put(path=id_to_do_request, data=json.dumps(data)) with allure.step(allure_steps.check_200_status_code()): assert response.status_code == 200, f"Код ответа - {response.status_code}" with allure.step(allure_steps.check_firstname(data['firstname'])): assert response.json()["firstname"] == data['firstname'], \ f"Имя - '{response.json()['firstname']}'" with allure.step(allure_steps.check_lastname(data['lastname'])): assert response.json()["lastname"] == data['lastname'], \ f"Фамилия - '{response.json()['lastname']}'" with allure.step(allure_steps.check_totalprice(data['totalprice'])): assert response.json()["totalprice"] == data['totalprice'], \ f"Итоговая цена - '{response.json()['totalprice']}'" with allure.step(allure_steps.check_depositpaid(data['depositpaid'])): assert response.json()["depositpaid"] == data['depositpaid'], \ f"Депозит - '{response.json()['depositpaid']}'" with allure.step( allure_steps.check_checkin(data['bookingdates']['checkin'])): assert response.json()["bookingdates"]["checkin"] ==\ data['bookingdates']['checkin'], \ f"Дата заезда - '{response.json()['bookingdates']['checkin']}'" with allure.step( allure_steps.check_checkout(data['bookingdates']['checkout'])): assert response.json()["bookingdates"]["checkout"] == \ data['bookingdates']['checkout'], \ f"Дата выезда - '{response.json()['bookingdates']['checkout']}'" with allure.step(allure_steps.check_addneeds(data['additionalneeds'])): assert response.json()["additionalneeds"] == \ data['additionalneeds'], \ f"Депозит - '{response.json()['additionalneeds']}'" body_id_data.delete_test_entity(booker_api, id_to_do_request)
def test_patch_empty_body(booker_api): """Тестовая функция для проверки вызова patch запроса с передаваемым телом. Проверяется передача пустого тела. Обращение напрямую к определенному id в урле. :param booker_api: фикстура, создающая и возвращающая экземпляр класса ApiClient """ id_to_do_request = body_id_data.create_test_entity(booker_api) with allure.step("Получаем все данные сущности"): data_for_id = body_id_data.TestDictForRequests().return_dict_other() with allure.step( f"Отправляем patch запрос с пустым телом и id {id_to_do_request}"): response = booker_api.patch(path=id_to_do_request, data={}) with allure.step(allure_steps.check_200_status_code()): assert response.status_code == 200, f"Код ответа - {response.status_code}" with allure.step(allure_steps.check_firstname(data_for_id['firstname'])): assert response.json()["firstname"] == data_for_id["firstname"], \ f"Имя - '{response.json()['firstname']}'" with allure.step(allure_steps.check_lastname(data_for_id['lastname'])): assert response.json()["lastname"] == data_for_id["lastname"], \ f"Фамилия - '{response.json()['lastname']}'" with allure.step(allure_steps.check_totalprice(data_for_id['totalprice'])): assert response.json()["totalprice"] == data_for_id["totalprice"], \ f"Итоговая цена - '{response.json()['totalprice']}'" with allure.step(allure_steps.check_depositpaid( data_for_id['depositpaid'])): assert response.json()["depositpaid"] == data_for_id["depositpaid"], \ f"Депозит - '{response.json()['depositpaid']}'" with allure.step( allure_steps.check_checkin( data_for_id['bookingdates']['checkin'])): assert response.json()["bookingdates"]["checkin"] == \ data_for_id["bookingdates"]["checkin"], \ f"Дата заезда - '{response.json()['bookingdates']['checkin']}'" with allure.step( allure_steps.check_checkout( data_for_id['bookingdates']['checkout'])): assert response.json()["bookingdates"]["checkout"] == \ data_for_id["bookingdates"]["checkout"], \ f"Дата выезда - '{response.json()['bookingdates']['checkout']}'" body_id_data.delete_test_entity(booker_api, id_to_do_request)
def test_put_invalid_id(booker_api, param): """Тестовая функция для проверки вызова put запроса с передаваемым телом. Негативная проверка обращение к несуществующему урлу. :param booker_api: фикстура, создающая и возвращающая экземпляр класса ApiClient :param param: передаваемый в урле id """ data = body_id_data.TestDictForRequests().return_dict() with allure.step(f"Отправляем put запрос с id {param}"): response = booker_api.put(path=param, data=json.dumps(data)) with allure.step(allure_steps.check_405_status_code()): assert response.status_code == 405, f"Код ответа - {response.status_code}"
def test_post_firstname_negative(booker_api, param): """Тестовая функция для проверки вызова post запроса. Проверяются негативные варианты для "firstname" через параметризацию - число, булево значение. :param booker_api: фикстура, создающая и возвращающая экземпляр класса ApiClient :param param: передаваемые в теле запроса варианты для "firstname" """ data = body_id_data.TestDictForRequests().return_dict_with_firstname(param) with allure.step(f"Отправляем post запрос с firstname - '{param}'"): response = booker_api.post(data=json.dumps(data)) with allure.step(allure_steps.check_500_status_code()): assert response.status_code == 500, f"Код ответа - {response.status_code}"
def test_post_checkin_negative(booker_api, param): """Тестовая функция для проверки вызова post запроса. Проверяются негативные варианты для "checkin" через параметризацию - неправильный формат даты / не дата. :param booker_api: фикстура, создающая и возвращающая экземпляр класса ApiClient :param param: передаваемые в теле запроса варианты для "checkin" """ data = body_id_data.TestDictForRequests().return_dict_with_chekin(param) with allure.step(f"Отправляем post запрос с checkin - '{param}'"): response = booker_api.post(data=json.dumps(data)) with allure.step(allure_steps.check_200_status_code()): assert response.status_code == 200, f"Код ответа - {response.status_code}" with allure.step("Проверяем, что текст ответа - Invalid date"): assert response.text == "Invalid date", f"Текст ответа - '{response.text}'"
def test_post_lastname(booker_api, param): """Тестовая функция для проверки вызова post запроса. Проверяются позитивные варианты для "lastname" через параметризацию. :param booker_api: фикстура, создающая и возвращающая экземпляр класса ApiClient :param param: передаваемые в теле запроса варианты для "lastname" """ data = body_id_data.TestDictForRequests().return_dict_with_lastname(param) with allure.step(f"Отправляем post запрос с lastname - '{param}'"): response = booker_api.post(data=json.dumps(data)) with allure.step(allure_steps.check_200_status_code()): assert response.status_code == 200, f"Код ответа - {response.status_code}" with allure.step(allure_steps.check_lastname(param)): assert response.json()["booking"]["lastname"] == param, \ f"Фамилия - '{response.json()['booking']['lastname']}'" body_id_data.delete_test_entity(booker_api, response.json()['bookingid'])