2023-05-08 01:21:32 +00:00
|
|
|
from typing import TYPE_CHECKING
|
|
|
|
|
|
|
|
import pytest
|
|
|
|
import pytest_asyncio
|
|
|
|
|
|
|
|
from simnet.client.genshin import GenshinClient
|
2023-05-12 03:01:53 +00:00
|
|
|
from simnet.utils.enum_ import Game
|
2023-05-08 01:21:32 +00:00
|
|
|
|
|
|
|
if TYPE_CHECKING:
|
|
|
|
from simnet.client.cookies import Cookies
|
2023-05-12 03:01:53 +00:00
|
|
|
from simnet.utils.enum_ import Region
|
2023-05-08 01:21:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
@pytest_asyncio.fixture
|
2023-05-12 03:01:53 +00:00
|
|
|
async def genshin_client(genshin_player_id: int, account_id: int, region: "Region", cookies: "Cookies"):
|
2023-05-12 03:36:03 +00:00
|
|
|
if genshin_player_id is None:
|
2023-05-12 03:53:07 +00:00
|
|
|
pytest.skip("Test case test_genshin skipped: No genshin player id set.")
|
2023-05-08 01:21:32 +00:00
|
|
|
async with GenshinClient(
|
|
|
|
player_id=genshin_player_id,
|
|
|
|
cookies=cookies,
|
|
|
|
account_id=account_id,
|
2023-05-12 03:01:53 +00:00
|
|
|
region=region,
|
2023-05-08 01:21:32 +00:00
|
|
|
) as client_instance:
|
|
|
|
yield client_instance
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
|
|
class TestGenshinClient:
|
|
|
|
@staticmethod
|
|
|
|
async def test_game(genshin_client: "GenshinClient"):
|
|
|
|
assert genshin_client.game == Game.GENSHIN
|