| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 | from http import HTTPStatusfrom unittest import mockimport pytestfrom clean_python import DoesNotExistfrom clean_python import Jsonfrom clean_python import Mapperfrom clean_python.api_client import ApiExceptionfrom clean_python.api_client import ApiGatewayfrom clean_python.api_client import ApiProviderclass TstApiGateway(ApiGateway, path="foo/{id}"):    pass@pytest.fixturedef api_provider():    return mock.MagicMock(spec_set=ApiProvider)@pytest.fixturedef api_gateway(api_provider) -> ApiGateway:    return TstApiGateway(api_provider)async def test_get(api_gateway: ApiGateway):    actual = await api_gateway.get(14)    api_gateway.provider.request.assert_called_once_with("GET", "foo/14")    assert actual is api_gateway.provider.request.return_valueasync def test_add(api_gateway: ApiGateway):    actual = await api_gateway.add({"foo": 2})    api_gateway.provider.request.assert_called_once_with(        "POST", "foo/", json={"foo": 2}    )    assert actual is api_gateway.provider.request.return_valueasync def test_remove(api_gateway: ApiGateway):    actual = await api_gateway.remove(2)    api_gateway.provider.request.assert_called_once_with("DELETE", "foo/2")    assert actual is Trueasync def test_remove_does_not_exist(api_gateway: ApiGateway):    api_gateway.provider.request.side_effect = ApiException(        {}, status=HTTPStatus.NOT_FOUND    )    actual = await api_gateway.remove(2)    assert actual is Falseasync def test_update(api_gateway: ApiGateway):    actual = await api_gateway.update({"id": 2, "foo": "bar"})    api_gateway.provider.request.assert_called_once_with(        "PATCH", "foo/2", json={"foo": "bar"}    )    assert actual is api_gateway.provider.request.return_valueasync def test_update_no_id(api_gateway: ApiGateway):    with pytest.raises(DoesNotExist):        await api_gateway.update({"foo": "bar"})    assert not api_gateway.provider.request.calledasync def test_update_does_not_exist(api_gateway: ApiGateway):    api_gateway.provider.request.side_effect = ApiException(        {}, status=HTTPStatus.NOT_FOUND    )    with pytest.raises(DoesNotExist):        await api_gateway.update({"id": 2, "foo": "bar"})class TstMapper(Mapper):    def to_external(self, internal: Json) -> Json:        result = {}        if internal.get("id") is not None:            result["id"] = internal["id"]        if internal.get("name") is not None:            result["name"] = internal["name"].upper()        return result    def to_internal(self, external: Json) -> Json:        return {"id": external["id"], "name": external["name"].lower()}class TstMappedApiGateway(ApiGateway, path="foo/{id}"):    mapper = TstMapper()@pytest.fixturedef mapped_api_gateway(api_provider) -> ApiGateway:    return TstMappedApiGateway(api_provider)async def test_get_with_mapper(mapped_api_gateway: ApiGateway):    mapped_api_gateway.provider.request.return_value = {"id": 14, "name": "FOO"}    assert await mapped_api_gateway.get(14) == {"id": 14, "name": "foo"}async def test_add_with_mapper(mapped_api_gateway: ApiGateway):    mapped_api_gateway.provider.request.return_value = {"id": 3, "name": "FOO"}    assert await mapped_api_gateway.add({"name": "foo"}) == {"id": 3, "name": "foo"}    mapped_api_gateway.provider.request.assert_called_once_with(        "POST", "foo/", json={"name": "FOO"}    )async def test_update_with_mapper(mapped_api_gateway: ApiGateway):    mapped_api_gateway.provider.request.return_value = {"id": 2, "name": "BAR"}    assert await mapped_api_gateway.update({"id": 2, "name": "bar"}) == {        "id": 2,        "name": "bar",    }    mapped_api_gateway.provider.request.assert_called_once_with(        "PATCH", "foo/2", json={"name": "BAR"}    )
 |