# File generated from our OpenAPI spec by Stainless.
from __future__ import annotations
import os
from typing import Any, cast
import pytest
from openai import OpenAI, AsyncOpenAI
from tests.utils import assert_matches_type
from openai.pagination import SyncCursorPage, AsyncCursorPage
from openai.types.beta.threads.messages import MessageFile
base_url = os.environ.get("TEST_API_BASE_URL", "http://127.0.0.1:4010")
class TestFiles:
parametrize = pytest.mark.parametrize("client", [False, True], indirect=True, ids=["loose", "strict"])
@parametrize
def test_method_retrieve(self, client: OpenAI) -> None:
file = client.beta.threads.messages.files.retrieve(
"file-abc123",
thread_id="thread_abc123",
message_id="msg_abc123",
)
assert_matches_type(MessageFile, file, path=["response"])
@parametrize
def test_raw_response_retrieve(self, client: OpenAI) -> None:
response = client.beta.threads.messages.files.with_raw_response.retrieve(
"file-abc123",
thread_id="thread_abc123",
message_id="msg_abc123",
)
assert response.is_closed is True
assert response.http_request.headers.get("X-Stainless-Lang") == "python"
file = response.parse()
assert_matches_type(MessageFile, file, path=["response"])
@parametrize
def test_streaming_response_retrieve(self, client: OpenAI) -> None:
with client.beta.threads.messages.files.with_streaming_response.retrieve(
"file-abc123",
thread_id="thread_abc123",
message_id="msg_abc123",
) as response:
assert not response.is_closed
assert response.http_request.headers.get("X-Stainless-Lang") == "python"
file = response.parse()
assert_matches_type(MessageFile, file, path=["response"])
assert cast(Any, response.is_closed) is True
@parametrize
def test_path_params_retrieve(self, client: OpenAI) -> None:
with pytest.raises(ValueError, match=r"Expected a non-empty value for `thread_id` but received ''"):
client.beta.threads.messages.files.with_raw_response.retrieve(
"file-abc123",
thread_id="",
message_id="msg_abc123",
)
with pytest.raises(ValueError, match=r"Expected a non-empty value for `message_id` but received ''"):
client.beta.threads.messages.files.with_raw_response.retrieve(
"file-abc123",
thread_id="thread_abc123",
message_id="",
)
with pytest.raises(ValueError, match=r"Expected a non-empty value for `file_id` but received ''"):
client.beta.threads.messages.files.with_raw_response.retrieve(
"",
thread_id="thread_abc123",
message_id="msg_abc123",
)
@parametrize
def test_method_list(self, client: OpenAI) -> None:
file = client.beta.threads.messages.files.list(
"string",
thread_id="string",
)
assert_matches_type(SyncCursorPage[MessageFile], file, path=["response"])
@parametrize
def test_method_list_with_all_params(self, client: OpenAI) -> None:
file = client.beta.threads.messages.files.list(
"string",
thread_id="string",
after="string",
before="string",
limit=0,
order="asc",
)
assert_matches_type(SyncCursorPage[MessageFile], file, path=["response"])
@parametrize
def test_raw_response_list(self, client: OpenAI) -> None:
response = client.beta.threads.messages.files.with_raw_response.list(
"string",
thread_id="string",
)
assert response.is_closed is True
assert response.http_request.headers.get("X-Stainless-Lang") == "python"
file = response.parse()
assert_matches_type(SyncCursorPage[MessageFile], file, path=["response"])
@parametrize
def test_streaming_response_list(self, client: OpenAI) -> None:
with client.beta.threads.messages.files.with_streaming_response.list(
"string",
thread_id="string",
) as response:
assert not response.is_closed
assert response.http_request.headers.get("X-Stainless-Lang") == "python"
file = response.parse()
assert_matches_type(SyncCursorPage[MessageFile], file, path=["response"])
assert cast(Any, response.is_closed) is True
@parametrize
def test_path_params_list(self, client: OpenAI) -> None:
with pytest.raises(ValueError, match=r"Expected a non-empty value for `thread_id` but received ''"):
client.beta.threads.messages.files.with_raw_response.list(
"string",
thread_id="",
)
with pytest.raises(ValueError, match=r"Expected a non-empty value for `message_id` but received ''"):
client.beta.threads.messages.files.with_raw_response.list(
"",
thread_id="string",
)
class TestAsyncFiles:
parametrize = pytest.mark.parametrize("async_client", [False, True], indirect=True, ids=["loose", "strict"])
@parametrize
async def test_method_retrieve(self, async_client: AsyncOpenAI) -> None:
file = await async_client.beta.threads.messages.files.retrieve(
"file-abc123",
thread_id="thread_abc123",
message_id="msg_abc123",
)
assert_matches_type(MessageFile, file, path=["response"])
@parametrize
async def test_raw_response_retrieve(self, async_client: AsyncOpenAI) -> None:
response = await async_client.beta.threads.messages.files.with_raw_response.retrieve(
"file-abc123",
thread_id="thread_abc123",
message_id="msg_abc123",
)
assert response.is_closed is True
assert response.http_request.headers.get("X-Stainless-Lang") == "python"
file = response.parse()
assert_matches_type(MessageFile, file, path=["response"])
@parametrize
async def test_streaming_response_retrieve(self, async_client: AsyncOpenAI) -> None:
async with async_client.beta.threads.messages.files.with_streaming_response.retrieve(
"file-abc123",
thread_id="thread_abc123",
message_id="msg_abc123",
) as response:
assert not response.is_closed
assert response.http_request.headers.get("X-Stainless-Lang") == "python"
file = await response.parse()
assert_matches_type(MessageFile, file, path=["response"])
assert cast(Any, response.is_closed) is True
@parametrize
async def test_path_params_retrieve(self, async_client: AsyncOpenAI) -> None:
with pytest.raises(ValueError, match=r"Expected a non-empty value for `thread_id` but received ''"):
await async_client.beta.threads.messages.files.with_raw_response.retrieve(
"file-abc123",
thread_id="",
message_id="msg_abc123",
)
with pytest.raises(ValueError, match=r"Expected a non-empty value for `message_id` but received ''"):
await async_client.beta.threads.messages.files.with_raw_response.retrieve(
"file-abc123",
thread_id="thread_abc123",
message_id="",
)
with pytest.raises(ValueError, match=r"Expected a non-empty value for `file_id` but received ''"):
await async_client.beta.threads.messages.files.with_raw_response.retrieve(
"",
thread_id="thread_abc123",
message_id="msg_abc123",
)
@parametrize
async def test_method_list(self, async_client: AsyncOpenAI) -> None:
file = await async_client.beta.threads.messages.files.list(
"string",
thread_id="string",
)
assert_matches_type(AsyncCursorPage[MessageFile], file, path=["response"])
@parametrize
async def test_method_list_with_all_params(self, async_client: AsyncOpenAI) -> None:
file = await async_client.beta.threads.messages.files.list(
"string",
thread_id="string",
after="string",
before="string",
limit=0,
order="asc",
)
assert_matches_type(AsyncCursorPage[MessageFile], file, path=["response"])
@parametrize
async def test_raw_response_list(self, async_client: AsyncOpenAI) -> None:
response = await async_client.beta.threads.messages.files.with_raw_response.list(
"string",
thread_id="string",
)
assert response.is_closed is True
assert response.http_request.headers.get("X-Stainless-Lang") == "python"
file = response.parse()
assert_matches_type(AsyncCursorPage[MessageFile], file, path=["response"])
@parametrize
async def test_streaming_response_list(self, async_client: AsyncOpenAI) -> None:
async with async_client.beta.threads.messages.files.with_streaming_response.list(
"string",
thread_id="string",
) as response:
assert not response.is_closed
assert response.http_request.headers.get("X-Stainless-Lang") == "python"
file = await response.parse()
assert_matches_type(AsyncCursorPage[MessageFile], file, path=["response"])
assert cast(Any, response.is_closed) is True
@parametrize
async def test_path_params_list(self, async_client: AsyncOpenAI) -> None:
with pytest.raises(ValueError, match=r"Expected a non-empty value for `thread_id` but received ''"):
await async_client.beta.threads.messages.files.with_raw_response.list(
"string",
thread_id="",
)
with pytest.raises(ValueError, match=r"Expected a non-empty value for `message_id` but received ''"):
await async_client.beta.threads.messages.files.with_raw_response.list(
"",
thread_id="string",
)openai/openai-python
Publicmirrored from https://github.com/openai/openai-pythonAvailable
tests/api_resources/beta/threads/messages/test_files.py
263lines · modepreview