mirror of
https://github.com/prowler-cloud/prowler.git
synced 2026-07-04 19:21:51 +00:00
46 lines
1.8 KiB
Python
46 lines
1.8 KiB
Python
from config.django.base import * # noqa
|
|
from config.env import env
|
|
|
|
DEBUG = env.bool("DJANGO_DEBUG", default=False)
|
|
ALLOWED_HOSTS = env.list("DJANGO_ALLOWED_HOSTS", default=["localhost", "127.0.0.1"])
|
|
|
|
|
|
DATABASES = {
|
|
"default": {
|
|
"ENGINE": "psqlextra.backend",
|
|
"NAME": "prowler_db_test",
|
|
"USER": env("POSTGRES_USER", default="prowler_admin"),
|
|
"PASSWORD": env("POSTGRES_PASSWORD", default="postgres"),
|
|
"HOST": env("POSTGRES_HOST", default="localhost"),
|
|
"PORT": env("POSTGRES_PORT", default="5432"),
|
|
},
|
|
}
|
|
|
|
DATABASE_ROUTERS = []
|
|
TESTING = True
|
|
# Override page size for testing to a value only slightly above the current fixture count.
|
|
# We explicitly set PAGE_SIZE to 15 (round number just above fixture) to avoid masking pagination bugs, while not setting it excessively high.
|
|
# If you add more providers to the fixture, please review that the total value is below the current one and update this value if needed.
|
|
REST_FRAMEWORK["PAGE_SIZE"] = 15 # noqa: F405
|
|
SECRETS_ENCRYPTION_KEY = "ZMiYVo7m4Fbe2eXXPyrwxdJss2WSalXSv3xHBcJkPl0="
|
|
|
|
# DRF Simple API Key settings
|
|
DRF_API_KEY = {
|
|
"FERNET_SECRET": SECRETS_ENCRYPTION_KEY,
|
|
"API_KEY_LIFETIME": 365,
|
|
"AUTHENTICATION_KEYWORD_HEADER": "Api-Key",
|
|
}
|
|
|
|
# JWT
|
|
|
|
SIMPLE_JWT["ALGORITHM"] = "HS256" # noqa: F405
|
|
# pyjwt >= 2.13.0 rejects an empty HMAC signing key, so HS256 tests need a real
|
|
# key (>= 32 bytes also avoids the InsecureKeyLengthWarning). Production uses RS256.
|
|
SIMPLE_JWT["SIGNING_KEY"] = env.str( # noqa: F405
|
|
"DJANGO_TOKEN_SIGNING_KEY", "insecure-testing-jwt-signing-key-do-not-use-in-prod"
|
|
)
|
|
|
|
# Tests don't need secure password hashing; PBKDF2 (~hundreds of ms per call)
|
|
# dominates fixture setup time across every create_user()/check_password().
|
|
PASSWORD_HASHERS = ["django.contrib.auth.hashers.MD5PasswordHasher"]
|