2023-05-01 12:50:48 +00:00
|
|
|
from typing import TYPE_CHECKING
|
|
|
|
|
|
|
|
import pytest
|
2023-05-08 01:21:32 +00:00
|
|
|
import pytest_asyncio
|
|
|
|
|
|
|
|
from simnet.client.starrail import StarRailClient
|
|
|
|
from simnet.utils.enum_ import Region, Game
|
2023-05-01 12:50:48 +00:00
|
|
|
|
|
|
|
if TYPE_CHECKING:
|
2023-05-08 01:21:32 +00:00
|
|
|
from simnet.client.cookies import Cookies
|
2023-05-01 12:50:48 +00:00
|
|
|
|
|
|
|
|
2023-05-08 01:21:32 +00:00
|
|
|
@pytest_asyncio.fixture
|
|
|
|
async def starrail_client(
|
|
|
|
starrail_player_id: int, account_id: int, cookies: "Cookies"
|
|
|
|
): # skipcq: PY-D0003 # skipcq: PYL-W0621
|
|
|
|
async with StarRailClient(
|
|
|
|
player_id=starrail_player_id,
|
|
|
|
cookies=cookies,
|
|
|
|
account_id=account_id,
|
|
|
|
region=Region.CHINESE,
|
|
|
|
) as client_instance:
|
|
|
|
yield client_instance
|
2023-05-01 12:50:48 +00:00
|
|
|
|
|
|
|
|
2023-05-08 01:21:32 +00:00
|
|
|
@pytest.mark.asyncio
|
|
|
|
class TestStarRailClient:
|
2023-05-01 12:50:48 +00:00
|
|
|
@staticmethod
|
2023-05-08 01:21:32 +00:00
|
|
|
async def test_game(starrail_client: "StarRailClient"):
|
|
|
|
assert starrail_client.game == Game.STARRAIL
|