Skip to content
Snippets Groups Projects
Commit f711cda5 authored by plup's avatar plup
Browse files

test: added djangoldp package settings

parent 0d266032
No related branches found
No related tags found
No related merge requests found
MYPACKAGEVAR = 'ok'
......@@ -13,12 +13,8 @@ ldppackages:
- djangoldp.tests
server:
DEBUG: false
ALLOWED_HOSTS:
- '*'
DATABASES:
default:
ENGINE: django.db.backends.sqlite3
LDP_RDF_CONTEXT:
"@context":
"@vocab": "http://happy-dev.fr/owl/#"
......@@ -44,6 +40,7 @@ server:
"delete": "acl:Delete"
"control": "acl:Control"
AUTH_USER_MODEL: 'tests.User'
EMAIL_HOST: somewhere
ANONYMOUS_USER_NAME: None
AUTHENTICATION_BACKENDS:
- django.contrib.auth.backends.ModelBackend
......
from django.conf import settings
from django.conf import settings, global_settings
from django.test import TestCase
YAML = """
DEBUG: true
ALLOWED_HOSTS:
- '*'
SECRET_KEY: 'thetestingsecretkey'
DATABASES:
default:
ENGINE: django.db.backends.sqlite3
NAME: db.sqlite3
STATIC_ROOT: static
MEDIA_ROOT: media
LDP_RDF_CONTEXT: https://cdn.happy-dev.fr/owl/hdcontext.jsonld
ROOT_URLCONF: server.urls
USE_ETAGS: true
DEFAULT_CONTENT_TYPE: text/html
FILE_CHARSET: utf-8
"""
class TestSettings(TestCase):
def test_settings(self):
def test_only_in_user_config(self):
"""Asserts load from YAML file."""
assert settings.LDP_PACKAGES == ['djangoldp.tests']
def test_only_in_core_config(self):
"""Asserts values defined only in core config."""
assert settings.DEBUG == False
def test_overrided_by_user_config(self):
"""Asserts values overrided from user configuration."""
assert settings.EMAIL_HOST == 'somewhere'
def test_only_in_package(self):
"""Asserts default settings defined in the package."""
assert settings.MYPACKAGEVAR == "ok"
def test_add_middleware(self):
"""Asserts middlewares added in packages are added to the settings."""
#assert settings.MIDDLEWARE == global_settings.MIDDLEWARE + ['MYMIDDLEWARE']
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment