cloudflare-python/tests/api_resources/workers/scripts/test_content.py
2025-05-15 20:37:51 +00:00

306 lines
13 KiB
Python

# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
from __future__ import annotations
import os
from typing import Any, cast
import httpx
import pytest
from respx import MockRouter
from cloudflare import Cloudflare, AsyncCloudflare
from tests.utils import assert_matches_type
from cloudflare._response import (
BinaryAPIResponse,
AsyncBinaryAPIResponse,
StreamedBinaryAPIResponse,
AsyncStreamedBinaryAPIResponse,
)
from cloudflare.types.workers import Script
base_url = os.environ.get("TEST_API_BASE_URL", "http://127.0.0.1:4010")
class TestContent:
parametrize = pytest.mark.parametrize("client", [False, True], indirect=True, ids=["loose", "strict"])
@pytest.mark.skip(reason="TODO: investigate broken test")
@parametrize
def test_method_update(self, client: Cloudflare) -> None:
content = client.workers.scripts.content.update(
script_name="this-is_my_script-01",
account_id="023e105f4ecef8ad9ca31a8372d0c353",
metadata={},
)
assert_matches_type(Script, content, path=["response"])
@pytest.mark.skip(reason="TODO: investigate broken test")
@parametrize
def test_method_update_with_all_params(self, client: Cloudflare) -> None:
content = client.workers.scripts.content.update(
script_name="this-is_my_script-01",
account_id="023e105f4ecef8ad9ca31a8372d0c353",
metadata={
"body_part": "worker.js",
"main_module": "worker.js",
},
cf_worker_body_part="CF-WORKER-BODY-PART",
cf_worker_main_module_part="CF-WORKER-MAIN-MODULE-PART",
)
assert_matches_type(Script, content, path=["response"])
@pytest.mark.skip(reason="TODO: investigate broken test")
@parametrize
def test_raw_response_update(self, client: Cloudflare) -> None:
response = client.workers.scripts.content.with_raw_response.update(
script_name="this-is_my_script-01",
account_id="023e105f4ecef8ad9ca31a8372d0c353",
metadata={},
)
assert response.is_closed is True
assert response.http_request.headers.get("X-Stainless-Lang") == "python"
content = response.parse()
assert_matches_type(Script, content, path=["response"])
@pytest.mark.skip(reason="TODO: investigate broken test")
@parametrize
def test_streaming_response_update(self, client: Cloudflare) -> None:
with client.workers.scripts.content.with_streaming_response.update(
script_name="this-is_my_script-01",
account_id="023e105f4ecef8ad9ca31a8372d0c353",
metadata={},
) as response:
assert not response.is_closed
assert response.http_request.headers.get("X-Stainless-Lang") == "python"
content = response.parse()
assert_matches_type(Script, content, path=["response"])
assert cast(Any, response.is_closed) is True
@pytest.mark.skip(reason="TODO: investigate broken test")
@parametrize
def test_path_params_update(self, client: Cloudflare) -> None:
with pytest.raises(ValueError, match=r"Expected a non-empty value for `account_id` but received ''"):
client.workers.scripts.content.with_raw_response.update(
script_name="this-is_my_script-01",
account_id="",
metadata={},
)
with pytest.raises(ValueError, match=r"Expected a non-empty value for `script_name` but received ''"):
client.workers.scripts.content.with_raw_response.update(
script_name="",
account_id="023e105f4ecef8ad9ca31a8372d0c353",
metadata={},
)
@parametrize
@pytest.mark.respx(base_url=base_url)
def test_method_get(self, client: Cloudflare, respx_mock: MockRouter) -> None:
respx_mock.get(
"/accounts/023e105f4ecef8ad9ca31a8372d0c353/workers/scripts/this-is_my_script-01/content/v2"
).mock(return_value=httpx.Response(200, json={"foo": "bar"}))
content = client.workers.scripts.content.get(
script_name="this-is_my_script-01",
account_id="023e105f4ecef8ad9ca31a8372d0c353",
)
assert content.is_closed
assert content.json() == {"foo": "bar"}
assert cast(Any, content.is_closed) is True
assert isinstance(content, BinaryAPIResponse)
@parametrize
@pytest.mark.respx(base_url=base_url)
def test_raw_response_get(self, client: Cloudflare, respx_mock: MockRouter) -> None:
respx_mock.get(
"/accounts/023e105f4ecef8ad9ca31a8372d0c353/workers/scripts/this-is_my_script-01/content/v2"
).mock(return_value=httpx.Response(200, json={"foo": "bar"}))
content = client.workers.scripts.content.with_raw_response.get(
script_name="this-is_my_script-01",
account_id="023e105f4ecef8ad9ca31a8372d0c353",
)
assert content.is_closed is True
assert content.http_request.headers.get("X-Stainless-Lang") == "python"
assert content.json() == {"foo": "bar"}
assert isinstance(content, BinaryAPIResponse)
@parametrize
@pytest.mark.respx(base_url=base_url)
def test_streaming_response_get(self, client: Cloudflare, respx_mock: MockRouter) -> None:
respx_mock.get(
"/accounts/023e105f4ecef8ad9ca31a8372d0c353/workers/scripts/this-is_my_script-01/content/v2"
).mock(return_value=httpx.Response(200, json={"foo": "bar"}))
with client.workers.scripts.content.with_streaming_response.get(
script_name="this-is_my_script-01",
account_id="023e105f4ecef8ad9ca31a8372d0c353",
) as content:
assert not content.is_closed
assert content.http_request.headers.get("X-Stainless-Lang") == "python"
assert content.json() == {"foo": "bar"}
assert cast(Any, content.is_closed) is True
assert isinstance(content, StreamedBinaryAPIResponse)
assert cast(Any, content.is_closed) is True
@parametrize
@pytest.mark.respx(base_url=base_url)
def test_path_params_get(self, client: Cloudflare) -> None:
with pytest.raises(ValueError, match=r"Expected a non-empty value for `account_id` but received ''"):
client.workers.scripts.content.with_raw_response.get(
script_name="this-is_my_script-01",
account_id="",
)
with pytest.raises(ValueError, match=r"Expected a non-empty value for `script_name` but received ''"):
client.workers.scripts.content.with_raw_response.get(
script_name="",
account_id="023e105f4ecef8ad9ca31a8372d0c353",
)
class TestAsyncContent:
parametrize = pytest.mark.parametrize("async_client", [False, True], indirect=True, ids=["loose", "strict"])
@pytest.mark.skip(reason="TODO: investigate broken test")
@parametrize
async def test_method_update(self, async_client: AsyncCloudflare) -> None:
content = await async_client.workers.scripts.content.update(
script_name="this-is_my_script-01",
account_id="023e105f4ecef8ad9ca31a8372d0c353",
metadata={},
)
assert_matches_type(Script, content, path=["response"])
@pytest.mark.skip(reason="TODO: investigate broken test")
@parametrize
async def test_method_update_with_all_params(self, async_client: AsyncCloudflare) -> None:
content = await async_client.workers.scripts.content.update(
script_name="this-is_my_script-01",
account_id="023e105f4ecef8ad9ca31a8372d0c353",
metadata={
"body_part": "worker.js",
"main_module": "worker.js",
},
cf_worker_body_part="CF-WORKER-BODY-PART",
cf_worker_main_module_part="CF-WORKER-MAIN-MODULE-PART",
)
assert_matches_type(Script, content, path=["response"])
@pytest.mark.skip(reason="TODO: investigate broken test")
@parametrize
async def test_raw_response_update(self, async_client: AsyncCloudflare) -> None:
response = await async_client.workers.scripts.content.with_raw_response.update(
script_name="this-is_my_script-01",
account_id="023e105f4ecef8ad9ca31a8372d0c353",
metadata={},
)
assert response.is_closed is True
assert response.http_request.headers.get("X-Stainless-Lang") == "python"
content = await response.parse()
assert_matches_type(Script, content, path=["response"])
@pytest.mark.skip(reason="TODO: investigate broken test")
@parametrize
async def test_streaming_response_update(self, async_client: AsyncCloudflare) -> None:
async with async_client.workers.scripts.content.with_streaming_response.update(
script_name="this-is_my_script-01",
account_id="023e105f4ecef8ad9ca31a8372d0c353",
metadata={},
) as response:
assert not response.is_closed
assert response.http_request.headers.get("X-Stainless-Lang") == "python"
content = await response.parse()
assert_matches_type(Script, content, path=["response"])
assert cast(Any, response.is_closed) is True
@pytest.mark.skip(reason="TODO: investigate broken test")
@parametrize
async def test_path_params_update(self, async_client: AsyncCloudflare) -> None:
with pytest.raises(ValueError, match=r"Expected a non-empty value for `account_id` but received ''"):
await async_client.workers.scripts.content.with_raw_response.update(
script_name="this-is_my_script-01",
account_id="",
metadata={},
)
with pytest.raises(ValueError, match=r"Expected a non-empty value for `script_name` but received ''"):
await async_client.workers.scripts.content.with_raw_response.update(
script_name="",
account_id="023e105f4ecef8ad9ca31a8372d0c353",
metadata={},
)
@parametrize
@pytest.mark.respx(base_url=base_url)
async def test_method_get(self, async_client: AsyncCloudflare, respx_mock: MockRouter) -> None:
respx_mock.get(
"/accounts/023e105f4ecef8ad9ca31a8372d0c353/workers/scripts/this-is_my_script-01/content/v2"
).mock(return_value=httpx.Response(200, json={"foo": "bar"}))
content = await async_client.workers.scripts.content.get(
script_name="this-is_my_script-01",
account_id="023e105f4ecef8ad9ca31a8372d0c353",
)
assert content.is_closed
assert await content.json() == {"foo": "bar"}
assert cast(Any, content.is_closed) is True
assert isinstance(content, AsyncBinaryAPIResponse)
@parametrize
@pytest.mark.respx(base_url=base_url)
async def test_raw_response_get(self, async_client: AsyncCloudflare, respx_mock: MockRouter) -> None:
respx_mock.get(
"/accounts/023e105f4ecef8ad9ca31a8372d0c353/workers/scripts/this-is_my_script-01/content/v2"
).mock(return_value=httpx.Response(200, json={"foo": "bar"}))
content = await async_client.workers.scripts.content.with_raw_response.get(
script_name="this-is_my_script-01",
account_id="023e105f4ecef8ad9ca31a8372d0c353",
)
assert content.is_closed is True
assert content.http_request.headers.get("X-Stainless-Lang") == "python"
assert await content.json() == {"foo": "bar"}
assert isinstance(content, AsyncBinaryAPIResponse)
@parametrize
@pytest.mark.respx(base_url=base_url)
async def test_streaming_response_get(self, async_client: AsyncCloudflare, respx_mock: MockRouter) -> None:
respx_mock.get(
"/accounts/023e105f4ecef8ad9ca31a8372d0c353/workers/scripts/this-is_my_script-01/content/v2"
).mock(return_value=httpx.Response(200, json={"foo": "bar"}))
async with async_client.workers.scripts.content.with_streaming_response.get(
script_name="this-is_my_script-01",
account_id="023e105f4ecef8ad9ca31a8372d0c353",
) as content:
assert not content.is_closed
assert content.http_request.headers.get("X-Stainless-Lang") == "python"
assert await content.json() == {"foo": "bar"}
assert cast(Any, content.is_closed) is True
assert isinstance(content, AsyncStreamedBinaryAPIResponse)
assert cast(Any, content.is_closed) is True
@parametrize
@pytest.mark.respx(base_url=base_url)
async def test_path_params_get(self, async_client: AsyncCloudflare) -> None:
with pytest.raises(ValueError, match=r"Expected a non-empty value for `account_id` but received ''"):
await async_client.workers.scripts.content.with_raw_response.get(
script_name="this-is_my_script-01",
account_id="",
)
with pytest.raises(ValueError, match=r"Expected a non-empty value for `script_name` but received ''"):
await async_client.workers.scripts.content.with_raw_response.get(
script_name="",
account_id="023e105f4ecef8ad9ca31a8372d0c353",
)