mirror of
https://github.com/bohd4nx/FragmentAPI.git
synced 2026-07-25 06:14:29 +00:00
228fbfcd1c
- Moved account-related functions and classes from `pyfragment.domains.tonapi.account` to `pyfragment.services.tonapi.account`. - Moved transaction-related functions and classes from `pyfragment.domains.tonapi.transaction` to `pyfragment.services.tonapi.transaction`. - Updated imports across the codebase to reflect the new structure. - Removed unused `tonapi` module files and cleaned up related code. - Introduced `ApiProvider` enum to manage API provider types. - Added validation functions for cookies and wallet versions in a new `validation.py` module.
33 lines
1004 B
Python
33 lines
1004 B
Python
"""Shared pytest fixtures for Fragment client tests."""
|
|
|
|
import json
|
|
import os
|
|
from typing import cast
|
|
|
|
import pytest
|
|
|
|
import pyfragment.domains.ads.recharge # noqa: F401
|
|
import pyfragment.domains.ads.tonup # noqa: F401
|
|
import pyfragment.domains.giveaways.giveaway # noqa: F401
|
|
import pyfragment.domains.purchases.purchase # noqa: F401
|
|
import pyfragment.services.tonapi.account # noqa: F401
|
|
import pyfragment.services.tonapi.transaction # noqa: F401
|
|
from pyfragment import FragmentClient
|
|
from tests.shared import VALID_API_KEY, VALID_COOKIES, VALID_SEED
|
|
|
|
|
|
@pytest.fixture
|
|
def cookies() -> dict[str, str]:
|
|
raw = os.environ.get("COOKIES_JSON")
|
|
if not raw:
|
|
pytest.skip("COOKIES_JSON env var not set")
|
|
try:
|
|
return cast(dict[str, str], json.loads(raw))
|
|
except Exception as exc:
|
|
pytest.skip(f"Cookies unavailable — {exc}")
|
|
|
|
|
|
@pytest.fixture
|
|
def client() -> FragmentClient:
|
|
return FragmentClient(seed=VALID_SEED, api_key=VALID_API_KEY, cookies=VALID_COOKIES)
|