Best Python code snippet using lisa_python
test_film.py
Source:test_film.py
1import pytest23API_URL = '/film/'456@pytest.mark.asyncio7async def test_film_get_by_id(make_get_request,8 initialize_environment,9 expected_json_response):10 some_id = "0fdad8d4-6672-46a4-b5c6-529faa368ac7"11 response = await make_get_request(f"{API_URL}{some_id}", {})12 assert response.status == 20013 assert response.body == expected_json_response141516@pytest.mark.asyncio17async def test_film_get_all(make_get_request, initialize_environment):18 response = await make_get_request(API_URL, {})19 assert response.status == 20020 assert len(response.body) == 10212223@pytest.mark.asyncio24@pytest.mark.parametrize(25 ("page_size", "page_number"),26 (27 (1, 1), (1, 2), (50, 1))28 )29async def test_film_paging(make_get_request,30 initialize_environment,31 page_size, page_number):32 response = await make_get_request(33 API_URL,34 {"page[number]": page_number, "page[size]": page_size}35 )36 assert response.status == 20037 assert len(response.body) == page_size383940@pytest.mark.asyncio41@pytest.mark.parametrize(42 ("page_number", "page_size"),43 (44 (0, 1), (1, 0), (-1, 1), (1, -1),45 )46)47async def test_film_paging_invalid_page(make_get_request,48 initialize_environment,49 page_number, page_size):50 response = await make_get_request(51 f"{API_URL}search/",52 {"page[number]": page_number, "page[size]": page_size}53 )54 assert response.status == 422555657@pytest.mark.asyncio58async def test_film_search(make_get_request, initialize_environment,59 expected_json_response):60 response = await make_get_request(61 f"{API_URL}search/",62 {"query": "The Reality"}63 )64 assert response.status == 20065 assert len(response.body) == 1066 assert response.body == expected_json_response676869@pytest.mark.asyncio70async def test_film_search_unknown(make_get_request, initialize_environment):71 response = await make_get_request(72 f"{API_URL}search/",73 {"query": "UnknownFilm"}74 )75 assert response.status == 20076 assert len(response.body) == 0777879@pytest.mark.asyncio80async def test_film_filter_genre(make_get_request, initialize_environment):81 response = await make_get_request(82 API_URL,83 {"filter[genre]": "d55e7647-bf7a-4011-8f4c-04025adfa127"}84 )85 assert response.status == 20086 assert len(response.body) == 10878889@pytest.mark.asyncio90async def test_film_filter_unknown_genre(make_get_request,91 initialize_environment):92 response = await make_get_request(93 API_URL,94 {"filter[genre]": "deadbeaf"}95 )96 assert response.status == 20097 assert len(response.body) == 09899100@pytest.mark.asyncio101async def test_film_cache(make_get_request,102 initialize_environment,103 es_client):104 request = (f"{API_URL}", {"page[number]": 1, "page[size]": 1})105 cache_response = await make_get_request(*request)106 assert cache_response.status == 200107 await es_client.indices.delete(index="movies", ignore=[400, 404])108109 response = await make_get_request(*request)110 assert response.status == 200
...
test_activity.py
Source:test_activity.py
1import import_ipynb2from Activity5_01 import (initialize_environment, policy_iteration, play,3 value_iteration)4def test_policy_iteration():5 env = initialize_environment()6 policy = policy_iteration(env)7 score = play(policy)8 assert 1 == score9def test_value_iteration():10 env = initialize_environment()11 policy = value_iteration(env)12 score = play(policy)...
test_policy_value_iteration.py
Source:test_policy_value_iteration.py
1import import_ipynb2from PolicyandValueIteration_Taxiv3 import policy_iteration, \3 initialize_environment, play, value_iteration4def test_policy_iteration():5 env = initialize_environment()6 policy = policy_iteration(env)7 # will return only if converged8def test_value_iteration():9 env = initialize_environment()10 policy = value_iteration(env)...
Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!