# 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 opencode_ai import Opencode, AsyncOpencode from tests.utils import assert_matches_type from opencode_ai.types import Project, ProjectListResponse base_url = os.environ.get("TEST_API_BASE_URL", "http://127.0.0.1:4010") class TestProject: parametrize = pytest.mark.parametrize("client", [False, True], indirect=True, ids=["loose", "strict"]) @pytest.mark.skip(reason="Prism tests are disabled") @parametrize def test_method_list(self, client: Opencode) -> None: project = client.project.list() assert_matches_type(ProjectListResponse, project, path=["response"]) @pytest.mark.skip(reason="Prism tests are disabled") @parametrize def test_method_list_with_all_params(self, client: Opencode) -> None: project = client.project.list( directory="directory", ) assert_matches_type(ProjectListResponse, project, path=["response"]) @pytest.mark.skip(reason="Prism tests are disabled") @parametrize def test_raw_response_list(self, client: Opencode) -> None: response = client.project.with_raw_response.list() assert response.is_closed is True assert response.http_request.headers.get("X-Stainless-Lang") == "python" project = response.parse() assert_matches_type(ProjectListResponse, project, path=["response"]) @pytest.mark.skip(reason="Prism tests are disabled") @parametrize def test_streaming_response_list(self, client: Opencode) -> None: with client.project.with_streaming_response.list() as response: assert not response.is_closed assert response.http_request.headers.get("X-Stainless-Lang") == "python" project = response.parse() assert_matches_type(ProjectListResponse, project, path=["response"]) assert cast(Any, response.is_closed) is True @pytest.mark.skip(reason="Prism tests are disabled") @parametrize def test_method_current(self, client: Opencode) -> None: project = client.project.current() assert_matches_type(Project, project, path=["response"]) @pytest.mark.skip(reason="Prism tests are disabled") @parametrize def test_method_current_with_all_params(self, client: Opencode) -> None: project = client.project.current( directory="directory", ) assert_matches_type(Project, project, path=["response"]) @pytest.mark.skip(reason="Prism tests are disabled") @parametrize def test_raw_response_current(self, client: Opencode) -> None: response = client.project.with_raw_response.current() assert response.is_closed is True assert response.http_request.headers.get("X-Stainless-Lang") == "python" project = response.parse() assert_matches_type(Project, project, path=["response"]) @pytest.mark.skip(reason="Prism tests are disabled") @parametrize def test_streaming_response_current(self, client: Opencode) -> None: with client.project.with_streaming_response.current() as response: assert not response.is_closed assert response.http_request.headers.get("X-Stainless-Lang") == "python" project = response.parse() assert_matches_type(Project, project, path=["response"]) assert cast(Any, response.is_closed) is True class TestAsyncProject: parametrize = pytest.mark.parametrize( "async_client", [False, True, {"http_client": "aiohttp"}], indirect=True, ids=["loose", "strict", "aiohttp"] ) @pytest.mark.skip(reason="Prism tests are disabled") @parametrize async def test_method_list(self, async_client: AsyncOpencode) -> None: project = await async_client.project.list() assert_matches_type(ProjectListResponse, project, path=["response"]) @pytest.mark.skip(reason="Prism tests are disabled") @parametrize async def test_method_list_with_all_params(self, async_client: AsyncOpencode) -> None: project = await async_client.project.list( directory="directory", ) assert_matches_type(ProjectListResponse, project, path=["response"]) @pytest.mark.skip(reason="Prism tests are disabled") @parametrize async def test_raw_response_list(self, async_client: AsyncOpencode) -> None: response = await async_client.project.with_raw_response.list() assert response.is_closed is True assert response.http_request.headers.get("X-Stainless-Lang") == "python" project = await response.parse() assert_matches_type(ProjectListResponse, project, path=["response"]) @pytest.mark.skip(reason="Prism tests are disabled") @parametrize async def test_streaming_response_list(self, async_client: AsyncOpencode) -> None: async with async_client.project.with_streaming_response.list() as response: assert not response.is_closed assert response.http_request.headers.get("X-Stainless-Lang") == "python" project = await response.parse() assert_matches_type(ProjectListResponse, project, path=["response"]) assert cast(Any, response.is_closed) is True @pytest.mark.skip(reason="Prism tests are disabled") @parametrize async def test_method_current(self, async_client: AsyncOpencode) -> None: project = await async_client.project.current() assert_matches_type(Project, project, path=["response"]) @pytest.mark.skip(reason="Prism tests are disabled") @parametrize async def test_method_current_with_all_params(self, async_client: AsyncOpencode) -> None: project = await async_client.project.current( directory="directory", ) assert_matches_type(Project, project, path=["response"]) @pytest.mark.skip(reason="Prism tests are disabled") @parametrize async def test_raw_response_current(self, async_client: AsyncOpencode) -> None: response = await async_client.project.with_raw_response.current() assert response.is_closed is True assert response.http_request.headers.get("X-Stainless-Lang") == "python" project = await response.parse() assert_matches_type(Project, project, path=["response"]) @pytest.mark.skip(reason="Prism tests are disabled") @parametrize async def test_streaming_response_current(self, async_client: AsyncOpencode) -> None: async with async_client.project.with_streaming_response.current() as response: assert not response.is_closed assert response.http_request.headers.get("X-Stainless-Lang") == "python" project = await response.parse() assert_matches_type(Project, project, path=["response"]) assert cast(Any, response.is_closed) is True