Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
djangoldp
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Fay Arnold
djangoldp
Commits
f711cda5
Commit
f711cda5
authored
4 years ago
by
plup
Browse files
Options
Downloads
Patches
Plain Diff
test: added djangoldp package settings
parent
0d266032
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
djangoldp/tests/djangoldp_settings.py
+1
-0
1 addition, 0 deletions
djangoldp/tests/djangoldp_settings.py
djangoldp/tests/runner.py
+1
-4
1 addition, 4 deletions
djangoldp/tests/runner.py
djangoldp/tests/tests_settings.py
+18
-20
18 additions, 20 deletions
djangoldp/tests/tests_settings.py
with
20 additions
and
24 deletions
djangoldp/tests/djangoldp_settings.py
0 → 100644
+
1
−
0
View file @
f711cda5
MYPACKAGEVAR
=
'
ok
'
This diff is collapsed.
Click to expand it.
djangoldp/tests/runner.py
+
1
−
4
View file @
f711cda5
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
djangoldp/tests/tests_settings.py
+
18
−
20
View file @
f711cda5
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']
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment