-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into feature/manifest-unread-counter-link
- Loading branch information
Showing
4 changed files
with
179 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
from typing import Literal, Optional | ||
from uuid import UUID | ||
|
||
from pybotx.client.authorized_botx_method import AuthorizedBotXMethod | ||
from pybotx.models.api_base import UnverifiedPayloadBaseModel, VerifiedPayloadBaseModel | ||
|
||
|
||
class BotXAPISmartAppUnreadCounterRequestPayload(UnverifiedPayloadBaseModel): | ||
group_chat_id: UUID | ||
counter: int | ||
|
||
@classmethod | ||
def from_domain( | ||
cls, | ||
group_chat_id: UUID, | ||
counter: int, | ||
) -> "BotXAPISmartAppUnreadCounterRequestPayload": | ||
return cls( | ||
group_chat_id=group_chat_id, | ||
counter=counter, | ||
) | ||
|
||
|
||
class BotXAPISyncIdResult(VerifiedPayloadBaseModel): | ||
sync_id: UUID | ||
|
||
|
||
class BotXAPISmartAppUnreadCounterResponsePayload(VerifiedPayloadBaseModel): | ||
status: Literal["ok"] | ||
result: BotXAPISyncIdResult | ||
|
||
def to_domain(self) -> UUID: | ||
return self.result.sync_id | ||
|
||
|
||
class SmartAppUnreadCounterMethod(AuthorizedBotXMethod): | ||
error_callback_handlers = { | ||
**AuthorizedBotXMethod.error_callback_handlers, | ||
} | ||
|
||
async def execute( | ||
self, | ||
payload: BotXAPISmartAppUnreadCounterRequestPayload, | ||
wait_callback: bool, | ||
callback_timeout: Optional[float], | ||
default_callback_timeout: float, | ||
) -> BotXAPISmartAppUnreadCounterResponsePayload: | ||
path = "/api/v4/botx/smartapps/unread_counter" | ||
|
||
response = await self._botx_method_call( | ||
"POST", | ||
self._build_url(path), | ||
json=payload.jsonable_dict(), | ||
) | ||
|
||
api_model = self._verify_and_extract_api_model( | ||
BotXAPISmartAppUnreadCounterResponsePayload, | ||
response, | ||
) | ||
|
||
await self._process_callback( | ||
api_model.result.sync_id, | ||
wait_callback, | ||
callback_timeout, | ||
default_callback_timeout, | ||
) | ||
|
||
return api_model |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,6 @@ authors = [ | |
"Arseniy Zhiltsov <[email protected]>" | ||
] | ||
readme = "README.md" | ||
documentation = "https://expressapp.github.io/pybotx" | ||
repository = "https://github.com/ExpressApp/pybotx" | ||
|
||
|
||
|
66 changes: 66 additions & 0 deletions
66
tests/client/smartapps_api/test_smartapp_unread_counter.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
import asyncio | ||
from http import HTTPStatus | ||
from uuid import UUID | ||
|
||
import httpx | ||
import pytest | ||
from respx.router import MockRouter | ||
|
||
from pybotx import Bot, BotAccountWithSecret, HandlerCollector, lifespan_wrapper | ||
|
||
pytestmark = [ | ||
pytest.mark.asyncio, | ||
pytest.mark.mock_authorization, | ||
pytest.mark.usefixtures("respx_mock"), | ||
] | ||
|
||
|
||
async def test__send_smartapp_unread_counter__succeed( | ||
respx_mock: MockRouter, | ||
host: str, | ||
bot_id: UUID, | ||
bot_account: BotAccountWithSecret, | ||
) -> None: | ||
# - Arrange - | ||
endpoint = respx_mock.post( | ||
f"https://{host}/api/v4/botx/smartapps/unread_counter", | ||
headers={"Authorization": "Bearer token", "Content-Type": "application/json"}, | ||
json={ | ||
"group_chat_id": "705df263-6bfd-536a-9d51-13524afaab5c", | ||
"counter": 45, | ||
}, | ||
).mock( | ||
return_value=httpx.Response( | ||
HTTPStatus.ACCEPTED, | ||
json={ | ||
"status": "ok", | ||
"result": {"sync_id": "21a9ec9e-f21f-4406-ac44-1a78d2ccf9e3"}, | ||
}, | ||
), | ||
) | ||
|
||
built_bot = Bot(collectors=[HandlerCollector()], bot_accounts=[bot_account]) | ||
|
||
# - Act - | ||
async with lifespan_wrapper(built_bot) as bot: | ||
task = asyncio.create_task( | ||
bot.send_smartapp_unread_counter( | ||
bot_id=bot_id, | ||
group_chat_id=UUID("705df263-6bfd-536a-9d51-13524afaab5c"), | ||
counter=45, | ||
), | ||
) | ||
await asyncio.sleep(0) # Return control to event loop | ||
|
||
await bot.set_raw_botx_method_result( | ||
{ | ||
"status": "ok", | ||
"sync_id": "21a9ec9e-f21f-4406-ac44-1a78d2ccf9e3", | ||
"result": {}, | ||
}, | ||
verify_request=False, | ||
) | ||
|
||
# - Assert - | ||
assert await task == UUID("21a9ec9e-f21f-4406-ac44-1a78d2ccf9e3") | ||
assert endpoint.called |