python3-anticaptcha/tests/test_core.py

67 lines
1.8 KiB
Python

from tenacity import AsyncRetrying
from urllib3.util.retry import Retry
from tests.conftest import BaseTest
from python3_anticaptcha.core.base import CaptchaParams
from python3_anticaptcha.core.enum import MyEnum
from python3_anticaptcha.core.const import RETRIES, ASYNC_RETRIES
from python3_anticaptcha.core.utils import attempts_generator
class TestCore(BaseTest):
"""
Success tests
"""
def test_retries(self):
assert isinstance(RETRIES, Retry)
def test_async_reties(self):
assert isinstance(ASYNC_RETRIES, AsyncRetrying)
def test_create_base(self):
CaptchaParams(
api_key=self.get_random_string(32),
sleep_time=self.sleep_time,
)
def test_aio_create_base(self):
CaptchaParams(
api_key=self.get_random_string(32),
sleep_time=self.sleep_time,
)
def test_create_base_context(self):
with CaptchaParams(
api_key=self.get_random_string(32),
sleep_time=self.sleep_time,
) as instance:
pass
async def test_aio_create_base_context(self):
async with CaptchaParams(
api_key=self.get_random_string(32),
sleep_time=self.sleep_time,
) as instance:
pass
class TestConfig(BaseTest):
def test_attempts_generator(self):
attempt = None
attempts = attempts_generator(amount=5)
for attempt in attempts:
assert isinstance(attempt, int)
assert attempt == 4
class TestEnum(BaseTest):
def test_enum_list(self):
assert isinstance(MyEnum.list(), list)
def test_enum_list_values(self):
assert isinstance(MyEnum.list_values(), list)
def test_enum_list_names(self):
assert isinstance(MyEnum.list_names(), list)