mirror of
https://github.com/anomalyco/opencode-sdk-python.git
synced 2026-04-28 12:39:54 +00:00
feat(api): api update
This commit is contained in:
parent
f2d28d2990
commit
5f9e3cd004
10 changed files with 407 additions and 207 deletions
|
|
@ -361,6 +361,62 @@ class TestSession:
|
|||
"",
|
||||
)
|
||||
|
||||
@pytest.mark.skip()
|
||||
@parametrize
|
||||
def test_method_revert(self, client: Opencode) -> None:
|
||||
session = client.session.revert(
|
||||
id="id",
|
||||
message_id="msg",
|
||||
)
|
||||
assert_matches_type(Session, session, path=["response"])
|
||||
|
||||
@pytest.mark.skip()
|
||||
@parametrize
|
||||
def test_method_revert_with_all_params(self, client: Opencode) -> None:
|
||||
session = client.session.revert(
|
||||
id="id",
|
||||
message_id="msg",
|
||||
part_id="prt",
|
||||
)
|
||||
assert_matches_type(Session, session, path=["response"])
|
||||
|
||||
@pytest.mark.skip()
|
||||
@parametrize
|
||||
def test_raw_response_revert(self, client: Opencode) -> None:
|
||||
response = client.session.with_raw_response.revert(
|
||||
id="id",
|
||||
message_id="msg",
|
||||
)
|
||||
|
||||
assert response.is_closed is True
|
||||
assert response.http_request.headers.get("X-Stainless-Lang") == "python"
|
||||
session = response.parse()
|
||||
assert_matches_type(Session, session, path=["response"])
|
||||
|
||||
@pytest.mark.skip()
|
||||
@parametrize
|
||||
def test_streaming_response_revert(self, client: Opencode) -> None:
|
||||
with client.session.with_streaming_response.revert(
|
||||
id="id",
|
||||
message_id="msg",
|
||||
) as response:
|
||||
assert not response.is_closed
|
||||
assert response.http_request.headers.get("X-Stainless-Lang") == "python"
|
||||
|
||||
session = response.parse()
|
||||
assert_matches_type(Session, session, path=["response"])
|
||||
|
||||
assert cast(Any, response.is_closed) is True
|
||||
|
||||
@pytest.mark.skip()
|
||||
@parametrize
|
||||
def test_path_params_revert(self, client: Opencode) -> None:
|
||||
with pytest.raises(ValueError, match=r"Expected a non-empty value for `id` but received ''"):
|
||||
client.session.with_raw_response.revert(
|
||||
id="",
|
||||
message_id="msg",
|
||||
)
|
||||
|
||||
@pytest.mark.skip()
|
||||
@parametrize
|
||||
def test_method_share(self, client: Opencode) -> None:
|
||||
|
|
@ -453,6 +509,48 @@ class TestSession:
|
|||
provider_id="providerID",
|
||||
)
|
||||
|
||||
@pytest.mark.skip()
|
||||
@parametrize
|
||||
def test_method_unrevert(self, client: Opencode) -> None:
|
||||
session = client.session.unrevert(
|
||||
"id",
|
||||
)
|
||||
assert_matches_type(Session, session, path=["response"])
|
||||
|
||||
@pytest.mark.skip()
|
||||
@parametrize
|
||||
def test_raw_response_unrevert(self, client: Opencode) -> None:
|
||||
response = client.session.with_raw_response.unrevert(
|
||||
"id",
|
||||
)
|
||||
|
||||
assert response.is_closed is True
|
||||
assert response.http_request.headers.get("X-Stainless-Lang") == "python"
|
||||
session = response.parse()
|
||||
assert_matches_type(Session, session, path=["response"])
|
||||
|
||||
@pytest.mark.skip()
|
||||
@parametrize
|
||||
def test_streaming_response_unrevert(self, client: Opencode) -> None:
|
||||
with client.session.with_streaming_response.unrevert(
|
||||
"id",
|
||||
) as response:
|
||||
assert not response.is_closed
|
||||
assert response.http_request.headers.get("X-Stainless-Lang") == "python"
|
||||
|
||||
session = response.parse()
|
||||
assert_matches_type(Session, session, path=["response"])
|
||||
|
||||
assert cast(Any, response.is_closed) is True
|
||||
|
||||
@pytest.mark.skip()
|
||||
@parametrize
|
||||
def test_path_params_unrevert(self, client: Opencode) -> None:
|
||||
with pytest.raises(ValueError, match=r"Expected a non-empty value for `id` but received ''"):
|
||||
client.session.with_raw_response.unrevert(
|
||||
"",
|
||||
)
|
||||
|
||||
@pytest.mark.skip()
|
||||
@parametrize
|
||||
def test_method_unshare(self, client: Opencode) -> None:
|
||||
|
|
@ -836,6 +934,62 @@ class TestAsyncSession:
|
|||
"",
|
||||
)
|
||||
|
||||
@pytest.mark.skip()
|
||||
@parametrize
|
||||
async def test_method_revert(self, async_client: AsyncOpencode) -> None:
|
||||
session = await async_client.session.revert(
|
||||
id="id",
|
||||
message_id="msg",
|
||||
)
|
||||
assert_matches_type(Session, session, path=["response"])
|
||||
|
||||
@pytest.mark.skip()
|
||||
@parametrize
|
||||
async def test_method_revert_with_all_params(self, async_client: AsyncOpencode) -> None:
|
||||
session = await async_client.session.revert(
|
||||
id="id",
|
||||
message_id="msg",
|
||||
part_id="prt",
|
||||
)
|
||||
assert_matches_type(Session, session, path=["response"])
|
||||
|
||||
@pytest.mark.skip()
|
||||
@parametrize
|
||||
async def test_raw_response_revert(self, async_client: AsyncOpencode) -> None:
|
||||
response = await async_client.session.with_raw_response.revert(
|
||||
id="id",
|
||||
message_id="msg",
|
||||
)
|
||||
|
||||
assert response.is_closed is True
|
||||
assert response.http_request.headers.get("X-Stainless-Lang") == "python"
|
||||
session = await response.parse()
|
||||
assert_matches_type(Session, session, path=["response"])
|
||||
|
||||
@pytest.mark.skip()
|
||||
@parametrize
|
||||
async def test_streaming_response_revert(self, async_client: AsyncOpencode) -> None:
|
||||
async with async_client.session.with_streaming_response.revert(
|
||||
id="id",
|
||||
message_id="msg",
|
||||
) as response:
|
||||
assert not response.is_closed
|
||||
assert response.http_request.headers.get("X-Stainless-Lang") == "python"
|
||||
|
||||
session = await response.parse()
|
||||
assert_matches_type(Session, session, path=["response"])
|
||||
|
||||
assert cast(Any, response.is_closed) is True
|
||||
|
||||
@pytest.mark.skip()
|
||||
@parametrize
|
||||
async def test_path_params_revert(self, async_client: AsyncOpencode) -> None:
|
||||
with pytest.raises(ValueError, match=r"Expected a non-empty value for `id` but received ''"):
|
||||
await async_client.session.with_raw_response.revert(
|
||||
id="",
|
||||
message_id="msg",
|
||||
)
|
||||
|
||||
@pytest.mark.skip()
|
||||
@parametrize
|
||||
async def test_method_share(self, async_client: AsyncOpencode) -> None:
|
||||
|
|
@ -928,6 +1082,48 @@ class TestAsyncSession:
|
|||
provider_id="providerID",
|
||||
)
|
||||
|
||||
@pytest.mark.skip()
|
||||
@parametrize
|
||||
async def test_method_unrevert(self, async_client: AsyncOpencode) -> None:
|
||||
session = await async_client.session.unrevert(
|
||||
"id",
|
||||
)
|
||||
assert_matches_type(Session, session, path=["response"])
|
||||
|
||||
@pytest.mark.skip()
|
||||
@parametrize
|
||||
async def test_raw_response_unrevert(self, async_client: AsyncOpencode) -> None:
|
||||
response = await async_client.session.with_raw_response.unrevert(
|
||||
"id",
|
||||
)
|
||||
|
||||
assert response.is_closed is True
|
||||
assert response.http_request.headers.get("X-Stainless-Lang") == "python"
|
||||
session = await response.parse()
|
||||
assert_matches_type(Session, session, path=["response"])
|
||||
|
||||
@pytest.mark.skip()
|
||||
@parametrize
|
||||
async def test_streaming_response_unrevert(self, async_client: AsyncOpencode) -> None:
|
||||
async with async_client.session.with_streaming_response.unrevert(
|
||||
"id",
|
||||
) as response:
|
||||
assert not response.is_closed
|
||||
assert response.http_request.headers.get("X-Stainless-Lang") == "python"
|
||||
|
||||
session = await response.parse()
|
||||
assert_matches_type(Session, session, path=["response"])
|
||||
|
||||
assert cast(Any, response.is_closed) is True
|
||||
|
||||
@pytest.mark.skip()
|
||||
@parametrize
|
||||
async def test_path_params_unrevert(self, async_client: AsyncOpencode) -> None:
|
||||
with pytest.raises(ValueError, match=r"Expected a non-empty value for `id` but received ''"):
|
||||
await async_client.session.with_raw_response.unrevert(
|
||||
"",
|
||||
)
|
||||
|
||||
@pytest.mark.skip()
|
||||
@parametrize
|
||||
async def test_method_unshare(self, async_client: AsyncOpencode) -> None:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue