Source code for tests.system.post_cars_positive_test

#!/path/to/interpreter

"""
Flask App REST API testing: POST
"""

#  Created by Egor Kostan.
#  GitHub: https://github.com/ikostan
#  LinkedIn: https://www.linkedin.com/in/egor-kostan/

import allure
import requests
from tests.system.base_test import BaseTestCase
from api.cars_app import USER_LIST


[docs]@allure.epic('Simple Flask App') @allure.parent_suite('REST API') @allure.suite("System Tests") @allure.sub_suite("Positive Tests") @allure.feature("POST") @allure.story('Cars') class PostCarsPositiveTestCase(BaseTestCase): """ Simple Flask App Positive Test: POST call """
[docs] def setUp(self) -> None: """ Test data preparation :return: """ with allure.step("Prepare test data"): self.cars_url = '/cars' self.message = '' self.new_car = {'name': 'Figo', 'brand': 'Ford', 'price_range': '2-3 lacs', 'car_type': 'hatchback'}
[docs] def tearDown(self) -> None: """ Post test procedure :return: """ with allure.step("Remove new added car from the list"): username = USER_LIST[0]['name'] password = USER_LIST[0]['password'] requests.delete(url=self.URL + self.cars_url + '/remove/' + self.new_car['name'], auth=(username, password))
[docs] def test_post_car_admin(self): """ Add new car using admin user credentials. :return: """ allure.dynamic.title("Add new car " "using admin user credentials") allure.dynamic.severity(allure.severity_level.BLOCKER) with allure.step("Verify user permissions"): username = USER_LIST[0]['name'] password = USER_LIST[0]['password'] self.assertEqual("admin", USER_LIST[0]['perm']) with allure.step("Send POST request"): response = requests.post(self.URL + self.cars_url + '/add', json=self.new_car, auth=(username, password)) with allure.step("Verify status code"): self.assertEqual(200, response.status_code) with allure.step("Verify 'successful' flag"): self.assertTrue(response.json()['successful']) with allure.step("Verify retrieved cars list"): self.assertDictEqual(self.new_car, response.json()['car'])
[docs] def test_post_car_non_admin(self): """ Add new car using non admin user credentials. :return: """ allure.dynamic.title("Add new car " "using non admin user credentials") allure.dynamic.severity(allure.severity_level.BLOCKER) with allure.step("Verify user permissions"): username = USER_LIST[1]['name'] password = USER_LIST[1]['password'] self.assertEqual("non_admin", USER_LIST[1]['perm']) with allure.step("Send POST request"): response = requests.post(self.URL + self.cars_url + '/add', json=self.new_car, auth=(username, password)) with allure.step("Verify status code"): self.assertEqual(200, response.status_code) with allure.step("Verify 'successful' flag"): self.assertTrue(response.json()['successful']) with allure.step("Verify retrieved cars list"): self.assertDictEqual(self.new_car, response.json()['car'])