Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mocking input for verification code #68

Merged
merged 2 commits into from
Jun 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions routers/auth.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import json
from unittest.mock import patch
from typing import Optional, Dict
from fastapi import APIRouter, Depends, Form
from dependencies import ClientStorage, get_clients
Expand Down Expand Up @@ -30,11 +31,10 @@ async def auth_login(username: str = Form(...),
if timezone != "":
cl.set_timezone_offset(timezone)

result = cl.login(
username,
password,
verification_code=verification_code
)
# We're mocking the input
with patch('builtins.input', return_value=verification_code):
result = cl.login(username, password)

if result:
clients.set(cl)
return cl.sessionid
Expand Down