mirror of
https://github.com/cloudflare/cloudflare-python.git
synced 2026-01-16 23:01:03 +00:00
576 lines
24 KiB
Python
576 lines
24 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 pytest
|
|
|
|
from cloudflare import Cloudflare, AsyncCloudflare
|
|
from tests.utils import assert_matches_type
|
|
from cloudflare.pagination import SyncSinglePage, AsyncSinglePage
|
|
from cloudflare.types.workers import (
|
|
Script,
|
|
ScriptUpdateResponse,
|
|
)
|
|
|
|
base_url = os.environ.get("TEST_API_BASE_URL", "http://127.0.0.1:4010")
|
|
|
|
|
|
class TestScripts:
|
|
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:
|
|
script = client.workers.scripts.update(
|
|
script_name="this-is_my_script-01",
|
|
account_id="023e105f4ecef8ad9ca31a8372d0c353",
|
|
metadata={},
|
|
)
|
|
assert_matches_type(ScriptUpdateResponse, script, path=["response"])
|
|
|
|
@pytest.mark.skip(reason="TODO: investigate broken test")
|
|
@parametrize
|
|
def test_method_update_with_all_params(self, client: Cloudflare) -> None:
|
|
script = client.workers.scripts.update(
|
|
script_name="this-is_my_script-01",
|
|
account_id="023e105f4ecef8ad9ca31a8372d0c353",
|
|
metadata={
|
|
"assets": {
|
|
"config": {
|
|
"_headers": "/dashboard/*\nX-Frame-Options: DENY\n\n/static/*\nAccess-Control-Allow-Origin: *",
|
|
"_redirects": "/foo /bar 301\n/news/* /blog/:splat",
|
|
"html_handling": "auto-trailing-slash",
|
|
"not_found_handling": "404-page",
|
|
"run_worker_first": False,
|
|
"serve_directly": True,
|
|
},
|
|
"jwt": "jwt",
|
|
},
|
|
"bindings": [
|
|
{
|
|
"name": "MY_ENV_VAR",
|
|
"text": "my_data",
|
|
"type": "plain_text",
|
|
}
|
|
],
|
|
"body_part": "worker.js",
|
|
"compatibility_date": "2021-01-01",
|
|
"compatibility_flags": ["nodejs_compat"],
|
|
"keep_assets": False,
|
|
"keep_bindings": ["string"],
|
|
"logpush": False,
|
|
"main_module": "worker.js",
|
|
"migrations": {
|
|
"deleted_classes": ["string"],
|
|
"new_classes": ["string"],
|
|
"new_sqlite_classes": ["string"],
|
|
"new_tag": "v2",
|
|
"old_tag": "v1",
|
|
"renamed_classes": [
|
|
{
|
|
"from": "from",
|
|
"to": "to",
|
|
}
|
|
],
|
|
"transferred_classes": [
|
|
{
|
|
"from": "from",
|
|
"from_script": "from_script",
|
|
"to": "to",
|
|
}
|
|
],
|
|
},
|
|
"observability": {
|
|
"enabled": True,
|
|
"head_sampling_rate": 0.1,
|
|
"logs": {
|
|
"enabled": True,
|
|
"invocation_logs": True,
|
|
"head_sampling_rate": 0.1,
|
|
},
|
|
},
|
|
"placement": {"mode": "smart"},
|
|
"tags": ["string"],
|
|
"tail_consumers": [
|
|
{
|
|
"service": "my-log-consumer",
|
|
"environment": "production",
|
|
"namespace": "my-namespace",
|
|
}
|
|
],
|
|
"usage_model": "standard",
|
|
},
|
|
)
|
|
assert_matches_type(ScriptUpdateResponse, script, path=["response"])
|
|
|
|
@pytest.mark.skip(reason="TODO: investigate broken test")
|
|
@parametrize
|
|
def test_raw_response_update(self, client: Cloudflare) -> None:
|
|
response = client.workers.scripts.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"
|
|
script = response.parse()
|
|
assert_matches_type(ScriptUpdateResponse, script, path=["response"])
|
|
|
|
@pytest.mark.skip(reason="TODO: investigate broken test")
|
|
@parametrize
|
|
def test_streaming_response_update(self, client: Cloudflare) -> None:
|
|
with client.workers.scripts.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"
|
|
|
|
script = response.parse()
|
|
assert_matches_type(ScriptUpdateResponse, script, 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.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.with_raw_response.update(
|
|
script_name="",
|
|
account_id="023e105f4ecef8ad9ca31a8372d0c353",
|
|
metadata={},
|
|
)
|
|
|
|
@parametrize
|
|
def test_method_list(self, client: Cloudflare) -> None:
|
|
script = client.workers.scripts.list(
|
|
account_id="023e105f4ecef8ad9ca31a8372d0c353",
|
|
)
|
|
assert_matches_type(SyncSinglePage[Script], script, path=["response"])
|
|
|
|
@parametrize
|
|
def test_raw_response_list(self, client: Cloudflare) -> None:
|
|
response = client.workers.scripts.with_raw_response.list(
|
|
account_id="023e105f4ecef8ad9ca31a8372d0c353",
|
|
)
|
|
|
|
assert response.is_closed is True
|
|
assert response.http_request.headers.get("X-Stainless-Lang") == "python"
|
|
script = response.parse()
|
|
assert_matches_type(SyncSinglePage[Script], script, path=["response"])
|
|
|
|
@parametrize
|
|
def test_streaming_response_list(self, client: Cloudflare) -> None:
|
|
with client.workers.scripts.with_streaming_response.list(
|
|
account_id="023e105f4ecef8ad9ca31a8372d0c353",
|
|
) as response:
|
|
assert not response.is_closed
|
|
assert response.http_request.headers.get("X-Stainless-Lang") == "python"
|
|
|
|
script = response.parse()
|
|
assert_matches_type(SyncSinglePage[Script], script, path=["response"])
|
|
|
|
assert cast(Any, response.is_closed) is True
|
|
|
|
@parametrize
|
|
def test_path_params_list(self, client: Cloudflare) -> None:
|
|
with pytest.raises(ValueError, match=r"Expected a non-empty value for `account_id` but received ''"):
|
|
client.workers.scripts.with_raw_response.list(
|
|
account_id="",
|
|
)
|
|
|
|
@parametrize
|
|
def test_method_delete(self, client: Cloudflare) -> None:
|
|
script = client.workers.scripts.delete(
|
|
script_name="this-is_my_script-01",
|
|
account_id="023e105f4ecef8ad9ca31a8372d0c353",
|
|
)
|
|
assert_matches_type(object, script, path=["response"])
|
|
|
|
@parametrize
|
|
def test_method_delete_with_all_params(self, client: Cloudflare) -> None:
|
|
script = client.workers.scripts.delete(
|
|
script_name="this-is_my_script-01",
|
|
account_id="023e105f4ecef8ad9ca31a8372d0c353",
|
|
force=True,
|
|
)
|
|
assert_matches_type(object, script, path=["response"])
|
|
|
|
@parametrize
|
|
def test_raw_response_delete(self, client: Cloudflare) -> None:
|
|
response = client.workers.scripts.with_raw_response.delete(
|
|
script_name="this-is_my_script-01",
|
|
account_id="023e105f4ecef8ad9ca31a8372d0c353",
|
|
)
|
|
|
|
assert response.is_closed is True
|
|
assert response.http_request.headers.get("X-Stainless-Lang") == "python"
|
|
script = response.parse()
|
|
assert_matches_type(object, script, path=["response"])
|
|
|
|
@parametrize
|
|
def test_streaming_response_delete(self, client: Cloudflare) -> None:
|
|
with client.workers.scripts.with_streaming_response.delete(
|
|
script_name="this-is_my_script-01",
|
|
account_id="023e105f4ecef8ad9ca31a8372d0c353",
|
|
) as response:
|
|
assert not response.is_closed
|
|
assert response.http_request.headers.get("X-Stainless-Lang") == "python"
|
|
|
|
script = response.parse()
|
|
assert_matches_type(object, script, path=["response"])
|
|
|
|
assert cast(Any, response.is_closed) is True
|
|
|
|
@parametrize
|
|
def test_path_params_delete(self, client: Cloudflare) -> None:
|
|
with pytest.raises(ValueError, match=r"Expected a non-empty value for `account_id` but received ''"):
|
|
client.workers.scripts.with_raw_response.delete(
|
|
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.with_raw_response.delete(
|
|
script_name="",
|
|
account_id="023e105f4ecef8ad9ca31a8372d0c353",
|
|
)
|
|
|
|
@parametrize
|
|
def test_method_get(self, client: Cloudflare) -> None:
|
|
script = client.workers.scripts.get(
|
|
script_name="this-is_my_script-01",
|
|
account_id="023e105f4ecef8ad9ca31a8372d0c353",
|
|
)
|
|
assert_matches_type(str, script, path=["response"])
|
|
|
|
@parametrize
|
|
def test_raw_response_get(self, client: Cloudflare) -> None:
|
|
response = client.workers.scripts.with_raw_response.get(
|
|
script_name="this-is_my_script-01",
|
|
account_id="023e105f4ecef8ad9ca31a8372d0c353",
|
|
)
|
|
|
|
assert response.is_closed is True
|
|
assert response.http_request.headers.get("X-Stainless-Lang") == "python"
|
|
script = response.parse()
|
|
assert_matches_type(str, script, path=["response"])
|
|
|
|
@parametrize
|
|
def test_streaming_response_get(self, client: Cloudflare) -> None:
|
|
with client.workers.scripts.with_streaming_response.get(
|
|
script_name="this-is_my_script-01",
|
|
account_id="023e105f4ecef8ad9ca31a8372d0c353",
|
|
) as response:
|
|
assert not response.is_closed
|
|
assert response.http_request.headers.get("X-Stainless-Lang") == "python"
|
|
|
|
script = response.parse()
|
|
assert_matches_type(str, script, path=["response"])
|
|
|
|
assert cast(Any, response.is_closed) is True
|
|
|
|
@parametrize
|
|
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.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.with_raw_response.get(
|
|
script_name="",
|
|
account_id="023e105f4ecef8ad9ca31a8372d0c353",
|
|
)
|
|
|
|
|
|
class TestAsyncScripts:
|
|
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:
|
|
script = await async_client.workers.scripts.update(
|
|
script_name="this-is_my_script-01",
|
|
account_id="023e105f4ecef8ad9ca31a8372d0c353",
|
|
metadata={},
|
|
)
|
|
assert_matches_type(ScriptUpdateResponse, script, path=["response"])
|
|
|
|
@pytest.mark.skip(reason="TODO: investigate broken test")
|
|
@parametrize
|
|
async def test_method_update_with_all_params(self, async_client: AsyncCloudflare) -> None:
|
|
script = await async_client.workers.scripts.update(
|
|
script_name="this-is_my_script-01",
|
|
account_id="023e105f4ecef8ad9ca31a8372d0c353",
|
|
metadata={
|
|
"assets": {
|
|
"config": {
|
|
"_headers": "/dashboard/*\nX-Frame-Options: DENY\n\n/static/*\nAccess-Control-Allow-Origin: *",
|
|
"_redirects": "/foo /bar 301\n/news/* /blog/:splat",
|
|
"html_handling": "auto-trailing-slash",
|
|
"not_found_handling": "404-page",
|
|
"run_worker_first": False,
|
|
"serve_directly": True,
|
|
},
|
|
"jwt": "jwt",
|
|
},
|
|
"bindings": [
|
|
{
|
|
"name": "MY_ENV_VAR",
|
|
"text": "my_data",
|
|
"type": "plain_text",
|
|
}
|
|
],
|
|
"body_part": "worker.js",
|
|
"compatibility_date": "2021-01-01",
|
|
"compatibility_flags": ["nodejs_compat"],
|
|
"keep_assets": False,
|
|
"keep_bindings": ["string"],
|
|
"logpush": False,
|
|
"main_module": "worker.js",
|
|
"migrations": {
|
|
"deleted_classes": ["string"],
|
|
"new_classes": ["string"],
|
|
"new_sqlite_classes": ["string"],
|
|
"new_tag": "v2",
|
|
"old_tag": "v1",
|
|
"renamed_classes": [
|
|
{
|
|
"from": "from",
|
|
"to": "to",
|
|
}
|
|
],
|
|
"transferred_classes": [
|
|
{
|
|
"from": "from",
|
|
"from_script": "from_script",
|
|
"to": "to",
|
|
}
|
|
],
|
|
},
|
|
"observability": {
|
|
"enabled": True,
|
|
"head_sampling_rate": 0.1,
|
|
"logs": {
|
|
"enabled": True,
|
|
"invocation_logs": True,
|
|
"head_sampling_rate": 0.1,
|
|
},
|
|
},
|
|
"placement": {"mode": "smart"},
|
|
"tags": ["string"],
|
|
"tail_consumers": [
|
|
{
|
|
"service": "my-log-consumer",
|
|
"environment": "production",
|
|
"namespace": "my-namespace",
|
|
}
|
|
],
|
|
"usage_model": "standard",
|
|
},
|
|
)
|
|
assert_matches_type(ScriptUpdateResponse, script, 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.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"
|
|
script = await response.parse()
|
|
assert_matches_type(ScriptUpdateResponse, script, 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.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"
|
|
|
|
script = await response.parse()
|
|
assert_matches_type(ScriptUpdateResponse, script, 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.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.with_raw_response.update(
|
|
script_name="",
|
|
account_id="023e105f4ecef8ad9ca31a8372d0c353",
|
|
metadata={},
|
|
)
|
|
|
|
@parametrize
|
|
async def test_method_list(self, async_client: AsyncCloudflare) -> None:
|
|
script = await async_client.workers.scripts.list(
|
|
account_id="023e105f4ecef8ad9ca31a8372d0c353",
|
|
)
|
|
assert_matches_type(AsyncSinglePage[Script], script, path=["response"])
|
|
|
|
@parametrize
|
|
async def test_raw_response_list(self, async_client: AsyncCloudflare) -> None:
|
|
response = await async_client.workers.scripts.with_raw_response.list(
|
|
account_id="023e105f4ecef8ad9ca31a8372d0c353",
|
|
)
|
|
|
|
assert response.is_closed is True
|
|
assert response.http_request.headers.get("X-Stainless-Lang") == "python"
|
|
script = await response.parse()
|
|
assert_matches_type(AsyncSinglePage[Script], script, path=["response"])
|
|
|
|
@parametrize
|
|
async def test_streaming_response_list(self, async_client: AsyncCloudflare) -> None:
|
|
async with async_client.workers.scripts.with_streaming_response.list(
|
|
account_id="023e105f4ecef8ad9ca31a8372d0c353",
|
|
) as response:
|
|
assert not response.is_closed
|
|
assert response.http_request.headers.get("X-Stainless-Lang") == "python"
|
|
|
|
script = await response.parse()
|
|
assert_matches_type(AsyncSinglePage[Script], script, path=["response"])
|
|
|
|
assert cast(Any, response.is_closed) is True
|
|
|
|
@parametrize
|
|
async def test_path_params_list(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.with_raw_response.list(
|
|
account_id="",
|
|
)
|
|
|
|
@parametrize
|
|
async def test_method_delete(self, async_client: AsyncCloudflare) -> None:
|
|
script = await async_client.workers.scripts.delete(
|
|
script_name="this-is_my_script-01",
|
|
account_id="023e105f4ecef8ad9ca31a8372d0c353",
|
|
)
|
|
assert_matches_type(object, script, path=["response"])
|
|
|
|
@parametrize
|
|
async def test_method_delete_with_all_params(self, async_client: AsyncCloudflare) -> None:
|
|
script = await async_client.workers.scripts.delete(
|
|
script_name="this-is_my_script-01",
|
|
account_id="023e105f4ecef8ad9ca31a8372d0c353",
|
|
force=True,
|
|
)
|
|
assert_matches_type(object, script, path=["response"])
|
|
|
|
@parametrize
|
|
async def test_raw_response_delete(self, async_client: AsyncCloudflare) -> None:
|
|
response = await async_client.workers.scripts.with_raw_response.delete(
|
|
script_name="this-is_my_script-01",
|
|
account_id="023e105f4ecef8ad9ca31a8372d0c353",
|
|
)
|
|
|
|
assert response.is_closed is True
|
|
assert response.http_request.headers.get("X-Stainless-Lang") == "python"
|
|
script = await response.parse()
|
|
assert_matches_type(object, script, path=["response"])
|
|
|
|
@parametrize
|
|
async def test_streaming_response_delete(self, async_client: AsyncCloudflare) -> None:
|
|
async with async_client.workers.scripts.with_streaming_response.delete(
|
|
script_name="this-is_my_script-01",
|
|
account_id="023e105f4ecef8ad9ca31a8372d0c353",
|
|
) as response:
|
|
assert not response.is_closed
|
|
assert response.http_request.headers.get("X-Stainless-Lang") == "python"
|
|
|
|
script = await response.parse()
|
|
assert_matches_type(object, script, path=["response"])
|
|
|
|
assert cast(Any, response.is_closed) is True
|
|
|
|
@parametrize
|
|
async def test_path_params_delete(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.with_raw_response.delete(
|
|
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.with_raw_response.delete(
|
|
script_name="",
|
|
account_id="023e105f4ecef8ad9ca31a8372d0c353",
|
|
)
|
|
|
|
@parametrize
|
|
async def test_method_get(self, async_client: AsyncCloudflare) -> None:
|
|
script = await async_client.workers.scripts.get(
|
|
script_name="this-is_my_script-01",
|
|
account_id="023e105f4ecef8ad9ca31a8372d0c353",
|
|
)
|
|
assert_matches_type(str, script, path=["response"])
|
|
|
|
@parametrize
|
|
async def test_raw_response_get(self, async_client: AsyncCloudflare) -> None:
|
|
response = await async_client.workers.scripts.with_raw_response.get(
|
|
script_name="this-is_my_script-01",
|
|
account_id="023e105f4ecef8ad9ca31a8372d0c353",
|
|
)
|
|
|
|
assert response.is_closed is True
|
|
assert response.http_request.headers.get("X-Stainless-Lang") == "python"
|
|
script = await response.parse()
|
|
assert_matches_type(str, script, path=["response"])
|
|
|
|
@parametrize
|
|
async def test_streaming_response_get(self, async_client: AsyncCloudflare) -> None:
|
|
async with async_client.workers.scripts.with_streaming_response.get(
|
|
script_name="this-is_my_script-01",
|
|
account_id="023e105f4ecef8ad9ca31a8372d0c353",
|
|
) as response:
|
|
assert not response.is_closed
|
|
assert response.http_request.headers.get("X-Stainless-Lang") == "python"
|
|
|
|
script = await response.parse()
|
|
assert_matches_type(str, script, path=["response"])
|
|
|
|
assert cast(Any, response.is_closed) is True
|
|
|
|
@parametrize
|
|
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.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.with_raw_response.get(
|
|
script_name="",
|
|
account_id="023e105f4ecef8ad9ca31a8372d0c353",
|
|
)
|