SIMNet/tests/test_genshin_diary_client.py

32 lines
961 B
Python
Raw Permalink Normal View History

2023-06-09 03:48:56 +00:00
from typing import TYPE_CHECKING
import pytest
import pytest_asyncio
from simnet.client.components.diary.genshin import GenshinDiaryClient
if TYPE_CHECKING:
from simnet.client.cookies import Cookies
2023-12-27 07:09:24 +00:00
from simnet.utils.enums import Region
2023-06-09 03:48:56 +00:00
@pytest_asyncio.fixture
async def diary_client(genshin_player_id: int, account_id: int, region: "Region", cookies: "Cookies"):
if genshin_player_id is None:
pytest.skip("Test case test_genshin_diary_client skipped: No genshin player id set.")
async with GenshinDiaryClient(
player_id=genshin_player_id,
cookies=cookies,
account_id=account_id,
region=region,
) as client_instance:
yield client_instance
@pytest.mark.asyncio
class TestGenshinDiaryClient:
@staticmethod
async def test_get_genshin_diary(diary_client: "GenshinDiaryClient"):
genshin_diary = await diary_client.get_genshin_diary()
assert genshin_diary is not None