Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
leshchenko1979 committed Jul 22, 2024
1 parent ac47013 commit 0d89885
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions tests/test_auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,21 +22,25 @@ async def request_attempt(self, *args, **kwargs):
self.element_no += 1


@pytest.mark.skip(reason="TODO")
def test_first_request():
# нужно проверить, что вызывается функция запроса токена при первом запросе

raise AssertionError

@pytest.mark.skip(reason="TODO")
def test_auth_success():
# нужно проверить, что серверу передается токен, полученный от token_func

raise AssertionError

@pytest.mark.skip(reason="TODO")
def test_auth_failure():
# нужно проверить, что вызывается функция запроса токена, если сервер вернул ошибку токена

raise AssertionError

@pytest.mark.skip(reason="TODO")
def test_abort_on_multiple_failures():
# нужно проверить, что если token_func регулярно возвращает токен, который отвергается сервером,
# то запрос оборвется после MAX_RETRIES неудачных попыток
Expand Down
2 changes: 1 addition & 1 deletion tests/test_server_responses.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def __init__(self, response: Union[Dict, List[Dict]]):
self.response = response if isinstance(response, list) else [response]
self.element_no = -1

super().__init__("https://google.com/path", False, 50, 2, None)
super().__init__("https://google.com/path", None, False, 50, 2, None)

async def single_request(self, *args, **kwargs):
self.element_no += 1
Expand Down
2 changes: 1 addition & 1 deletion tests/test_srh.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ async def mock_post(url, json, ssl):
mock_session = AsyncMock()
mock_session.post = mock_post

handler = ServerRequestHandler('https://google.com/webhook', True, 50, 2, mock_session)
handler = ServerRequestHandler('https://google.com/webhook', None, True, 50, 2, mock_session)

# Call the method
result = await handler.request_attempt('method', {'param': 'value'})
Expand Down

0 comments on commit 0d89885

Please sign in to comment.