1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324
|
import json
import random
import time
import uuid
from contextlib import contextmanager
from unittest.mock import Mock, PropertyMock, patch
from django.contrib.auth import get_user_model
from django.contrib.messages.middleware import MessageMiddleware
from django.contrib.sessions.middleware import SessionMiddleware
import pytest
from allauth.account.models import EmailAddress
from allauth.account.utils import user_email, user_pk_to_url_str, user_username
from allauth.core import context
from allauth.socialaccount.internal import statekit
from allauth.socialaccount.providers.base.constants import AuthProcess
def pytest_collection_modifyitems(config, items):
if config.getoption("--ds") == "tests.headless_only.settings":
removed_items = []
for item in items:
if not item.location[0].startswith("allauth/headless"):
removed_items.append(item)
for item in removed_items:
items.remove(item)
@pytest.fixture
def user(user_factory):
return user_factory()
@pytest.fixture
def auth_client(client, user):
client.force_login(user)
return client
@pytest.fixture
def password_factory():
def f():
return str(uuid.uuid4())
return f
@pytest.fixture
def user_password(password_factory):
return password_factory()
@pytest.fixture
def email_verified():
return True
@pytest.fixture
def user_factory(email_factory, db, user_password, email_verified):
def factory(
email=None,
username=None,
commit=True,
with_email=True,
email_verified=email_verified,
password=None,
with_emailaddress=True,
with_totp=False,
):
if not username:
username = uuid.uuid4().hex
if not email and with_email:
email = email_factory(username=username)
User = get_user_model()
user = User()
if password == "!":
user.password = password
else:
user.set_password(user_password if password is None else password)
user_username(user, username)
user_email(user, email or "")
if commit:
user.save()
if email and with_emailaddress:
EmailAddress.objects.create(
user=user,
email=email.lower(),
verified=email_verified,
primary=True,
)
if with_totp:
from allauth.mfa.totp.internal import auth
auth.TOTP.activate(user, auth.generate_totp_secret())
return user
return factory
@pytest.fixture
def email_factory():
def factory(username=None, email=None, mixed_case=False):
if email is None:
if not username:
username = uuid.uuid4().hex
email = f"{username}@{uuid.uuid4().hex}.org"
if mixed_case:
email = "".join([random.choice([c.upper(), c.lower()]) for c in email])
else:
email = email.lower()
return email
return factory
@pytest.fixture
def reauthentication_bypass():
@contextmanager
def f():
with patch(
"allauth.account.internal.flows.reauthentication.did_recently_authenticate"
) as m:
m.return_value = True
yield
return f
@pytest.fixture
def webauthn_authentication_bypass():
@contextmanager
def f(authenticator):
from fido2.utils import websafe_encode
from allauth.mfa.adapter import get_adapter
with patch(
"allauth.mfa.webauthn.internal.auth.WebAuthn.authenticator_data",
new_callable=PropertyMock,
) as ad_m:
with patch("fido2.server.Fido2Server.authenticate_begin") as ab_m:
ab_m.return_value = ({}, {"state": "dummy"})
with patch("fido2.server.Fido2Server.authenticate_complete") as ac_m:
with patch(
"allauth.mfa.webauthn.internal.auth.parse_authentication_response"
) as m:
user_handle = (
get_adapter().get_public_key_credential_user_entity(
authenticator.user
)["id"]
)
authenticator_data = Mock()
authenticator_data.credential_data.credential_id = (
"credential_id"
)
ad_m.return_value = authenticator_data
m.return_value = Mock()
binding = Mock()
binding.credential_id = "credential_id"
ac_m.return_value = binding
yield json.dumps(
{"response": {"userHandle": websafe_encode(user_handle)}}
)
return f
@pytest.fixture
def webauthn_registration_bypass():
@contextmanager
def f(user, passwordless):
with patch("fido2.server.Fido2Server.register_complete") as rc_m:
with patch(
"allauth.mfa.webauthn.internal.auth.parse_registration_response"
) as m:
m.return_value = Mock()
class FakeAuthenticatorData(bytes):
def is_user_verified(self):
return passwordless
binding = FakeAuthenticatorData(b"binding")
rc_m.return_value = binding
yield json.dumps(
{
"authenticatorAttachment": "cross-platform",
"clientExtensionResults": {"credProps": {"rk": passwordless}},
"id": "123",
"rawId": "456",
"response": {
"attestationObject": "ao",
"clientDataJSON": "cdj",
"transports": ["usb"],
},
"type": "public-key",
}
)
return f
@pytest.fixture(autouse=True)
def clear_context_request():
context._request_var.set(None)
@pytest.fixture
def enable_cache(settings):
from django.core.cache import cache
settings.CACHES = {
"default": {
"BACKEND": "django.core.cache.backends.locmem.LocMemCache",
}
}
cache.clear()
yield
@pytest.fixture
def totp_validation_bypass():
@contextmanager
def f():
with patch("allauth.mfa.totp.internal.auth.validate_totp_code") as m:
m.return_value = True
yield
return f
@pytest.fixture
def provider_id():
return "unittest-server"
@pytest.fixture
def password_reset_key_generator():
def f(user):
from allauth.account import app_settings
token_generator = app_settings.PASSWORD_RESET_TOKEN_GENERATOR()
uid = user_pk_to_url_str(user)
temp_key = token_generator.make_token(user)
key = f"{uid}-{temp_key}"
return key
return f
@pytest.fixture
def google_provider_settings(settings):
gsettings = {"APPS": [{"client_id": "client_id", "secret": "secret"}]}
settings.SOCIALACCOUNT_PROVIDERS = {"google": gsettings}
return gsettings
@pytest.fixture
def user_with_totp(user):
from allauth.mfa.totp.internal import auth
auth.TOTP.activate(user, auth.generate_totp_secret())
return user
@pytest.fixture
def user_with_recovery_codes(user_with_totp):
from allauth.mfa.recovery_codes.internal import auth
auth.RecoveryCodes.activate(user_with_totp)
return user_with_totp
@pytest.fixture
def passkey(user):
from allauth.mfa.models import Authenticator
authenticator = Authenticator.objects.create(
user=user,
type=Authenticator.Type.WEBAUTHN,
data={
"name": "Test passkey",
"passwordless": True,
"credential": {},
},
)
return authenticator
@pytest.fixture
def user_with_passkey(user, passkey):
return user
@pytest.fixture
def sociallogin_setup_state():
def setup(client, process=None, next_url=None, **kwargs):
state_id = "123"
session = client.session
state = {"process": process or AuthProcess.LOGIN, **kwargs}
if next_url:
state["next"] = next_url
states = {}
states[state_id] = [state, time.time()]
session[statekit.STATES_SESSION_KEY] = states
session.save()
return state_id
return setup
@pytest.fixture
def request_factory(rf):
class RequestFactory:
def get(self, path):
request = rf.get(path)
SessionMiddleware(lambda request: None).process_request(request)
MessageMiddleware(lambda request: None).process_request(request)
return request
return RequestFactory()
|