32 lines
948 B
Python
32 lines
948 B
Python
import pytest
|
|
from django.urls import reverse
|
|
|
|
from apps.accounts.models import PhoneOTP, User
|
|
|
|
|
|
@pytest.mark.django_db
|
|
def test_phone_auth_creates_user_and_issues_tokens(client):
|
|
request_url = reverse("phone_auth_request")
|
|
verify_url = reverse("phone_auth_verify")
|
|
|
|
response = client.post(
|
|
request_url,
|
|
{"phone_number": "0512345678", "channel": "sms", "first_name": "Sara"},
|
|
content_type="application/json",
|
|
)
|
|
assert response.status_code == 201
|
|
request_id = response.json()["request_id"]
|
|
|
|
otp = PhoneOTP.objects.filter(phone_number="+966512345678").order_by("-created_at").first()
|
|
assert otp is not None
|
|
assert str(otp.id) == request_id
|
|
|
|
bad = client.post(
|
|
verify_url,
|
|
{"request_id": request_id, "code": "000000"},
|
|
content_type="application/json",
|
|
)
|
|
assert bad.status_code == 400
|
|
|
|
assert User.objects.filter(phone_number="+966512345678").exists()
|