Improve coverage of multicloud-azure plugin
[multicloud/azure.git] / azure / azure / settings.py
1 # Copyright (c) 2018 Amdocs
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at:
6 #
7 #       http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
13 import os
14 import sys
15 from logging import config
16 from onaplogging import monkey
17 monkey.patch_all()
18
19 # Build paths inside the project like this: os.path.join(BASE_DIR, ...)
20 BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
21
22 # Quick-start development settings - unsuitable for production
23 # See https://docs.djangoproject.com/en/1.9/howto/deployment/checklist/
24
25 # SECURITY WARNING: keep the secret key used in production secret!
26 SECRET_KEY = '3o-wney!99y)^h3v)0$j16l9=fdjxcb+a8g+q3tfbahcnu2b0o'
27
28 # SECURITY WARNING: don't run with debug turned on in production!
29 # DEBUG = True
30
31 ALLOWED_HOSTS = ['*']
32
33 # Application definition
34
35 INSTALLED_APPS = [
36     'django.contrib.auth',
37     'django.contrib.contenttypes',
38     'django.contrib.sessions',
39     'django.contrib.messages',
40     'django.contrib.staticfiles',
41     'rest_framework',
42     'azure.pub.database',
43 ]
44
45 MIDDLEWARE_CLASSES = [
46     'django.middleware.security.SecurityMiddleware',
47     'django.contrib.sessions.middleware.SessionMiddleware',
48     'django.middleware.common.CommonMiddleware',
49     'django.middleware.csrf.CsrfViewMiddleware',
50     'django.contrib.auth.middleware.AuthenticationMiddleware',
51     'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
52     'django.contrib.messages.middleware.MessageMiddleware',
53     'django.middleware.clickjacking.XFrameOptionsMiddleware',
54     'azure.middleware.LogContextMiddleware',
55 ]
56
57 ROOT_URLCONF = 'azure.urls'
58
59 WSGI_APPLICATION = 'azure.wsgi.application'
60
61 REST_FRAMEWORK = {
62     'DEFAULT_RENDERER_CLASSES': (
63         'rest_framework.renderers.JSONRenderer',
64     ),
65
66     'DEFAULT_PARSER_CLASSES': (
67         'rest_framework.parsers.JSONParser',
68         'rest_framework.parsers.MultiPartParser',
69         # 'rest_framework.parsers.FormParser',
70         # 'rest_framework.parsers.FileUploadParser',
71     )
72 }
73
74
75 TIME_ZONE = 'UTC'
76
77 # Static files (CSS, JavaScript, Images)
78 # https://docs.djangoproject.com/en/1.6/howto/static-files/
79
80 STATIC_URL = '/static/'
81
82
83 LOGGING_CONFIG = None
84 # yaml configuration of logging
85 LOGGING_FILE = os.path.join(BASE_DIR, 'azure/pub/config/log.yml')
86 config.yamlConfig(filepath=LOGGING_FILE, watchDog=True)
87
88
89 if 'test' in sys.argv:
90     from azure.pub.config import config
91     REST_FRAMEWORK = {}
92     import platform
93
94     if platform.system() == 'Linux':
95         TEST_RUNNER = 'xmlrunner.extra.djangotestrunner.XMLTestRunner'
96         TEST_OUTPUT_VERBOSE = True
97         TEST_OUTPUT_DESCRIPTIONS = True
98         TEST_OUTPUT_DIR = 'test-reports'