mirror of
https://github.com/PaiGramTeam/SIMNet.git
synced 2024-11-22 14:28:08 +00:00
30 lines
775 B
Python
30 lines
775 B
Python
|
from typing import TYPE_CHECKING
|
||
|
|
||
|
import pytest
|
||
|
import pytest_asyncio
|
||
|
|
||
|
from simnet.client.components.lab import LabClient
|
||
|
from simnet.utils.enum_ import Region
|
||
|
|
||
|
if TYPE_CHECKING:
|
||
|
from simnet.client.cookies import Cookies
|
||
|
|
||
|
|
||
|
@pytest_asyncio.fixture
|
||
|
async def client_instance(account_id: int, cookies: "Cookies"):
|
||
|
async with LabClient(
|
||
|
cookies=cookies,
|
||
|
account_id=account_id,
|
||
|
region=Region.CHINESE,
|
||
|
) as client_instance:
|
||
|
yield client_instance
|
||
|
|
||
|
|
||
|
@pytest.mark.asyncio
|
||
|
class TestStarRailClient:
|
||
|
@staticmethod
|
||
|
async def test_get_user_info(account_id: int, client_instance: "LabClient"):
|
||
|
user_info = await client_instance.get_user_info()
|
||
|
assert user_info.nickname
|
||
|
assert user_info.accident_id == account_id
|