Fix log directory problem when exec UT
[vfc/nfvo/catalog.git] / catalog / settings.py
1 # Copyright 2017 ZTE Corporation.
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 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 import os
16 import sys
17
18 import redisco
19
20 from catalog.pub.config.config import REDIS_HOST, REDIS_PORT, REDIS_PASSWD
21 from catalog.pub.config.config import DB_NAME, DB_IP, DB_USER, DB_PASSWD, DB_PORT
22 from catalog.pub.config import config as pub_config
23 from logging import config as log_config
24 from onaplogging import monkey
25 monkey.patch_all()
26
27 # Build paths inside the project like this: os.path.join(BASE_DIR, ...)
28 BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
29
30 # Quick-start development settings - unsuitable for production
31 # See https://docs.djangoproject.com/en/1.9/howto/deployment/checklist/
32
33 # SECURITY WARNING: keep the secret key used in production secret!
34 SECRET_KEY = '3o-wney!99y)^h3v)0$j16l9=fdjxcb+a8g+q3tfbahcnu2b0o'
35
36 # SECURITY WARNING: don't run with debug turned on in production!
37 DEBUG = True
38
39 ALLOWED_HOSTS = ['*']
40
41 # Application definition
42
43 INSTALLED_APPS = [
44     'django.contrib.auth',
45     'django.contrib.contenttypes',
46     'django.contrib.sessions',
47     'django.contrib.messages',
48     'django.contrib.staticfiles',
49     'rest_framework',
50     'catalog.pub.database',
51     'catalog.samples',
52     'catalog.swagger',
53     'drf_yasg',
54 ]
55
56 # drf-yasg
57 SWAGGER_SETTINGS = {
58     'LOGIN_URL': '/admin/login',
59     'LOGOUT_URL': '/admin/logout',
60     'DEFAULT_INFO': 'catalog.swagger.urls.swagger_info'
61 }
62
63 TEMPLATES = [
64     {
65         'BACKEND': 'django.template.backends.django.DjangoTemplates',
66         'DIRS': [],
67         'APP_DIRS': True,
68         'OPTIONS': {
69             'context_processors': [
70                 'django.template.context_processors.debug',
71                 'django.template.context_processors.request',
72                 'django.contrib.auth.context_processors.auth',
73                 'django.contrib.messages.context_processors.messages',
74             ],
75         },
76     },
77 ]
78
79 MIDDLEWARE_CLASSES = [
80     'django.middleware.security.SecurityMiddleware',
81     'django.contrib.sessions.middleware.SessionMiddleware',
82     'django.middleware.common.CommonMiddleware',
83     'django.middleware.csrf.CsrfViewMiddleware',
84     'django.contrib.auth.middleware.AuthenticationMiddleware',
85     'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
86     'django.contrib.messages.middleware.MessageMiddleware',
87     'django.middleware.clickjacking.XFrameOptionsMiddleware',
88     'catalog.middleware.LogContextMiddleware',
89 ]
90
91 ROOT_URLCONF = 'catalog.urls'
92
93 WSGI_APPLICATION = 'catalog.wsgi.application'
94
95 REST_FRAMEWORK = {
96     'DEFAULT_RENDERER_CLASSES': (
97         'rest_framework.renderers.JSONRenderer',
98     ),
99
100     'DEFAULT_PARSER_CLASSES': (
101         'rest_framework.parsers.JSONParser',
102         'rest_framework.parsers.MultiPartParser',
103     )
104 }
105
106 DATABASES = {
107     'default': {
108         'ENGINE': 'django.db.backends.mysql',
109         'NAME': DB_NAME,
110         'HOST': DB_IP,
111         'PORT': DB_PORT,
112         'USER': DB_USER,
113         'PASSWORD': DB_PASSWD,
114     },
115 }
116
117 redisco.connection_setup(host=REDIS_HOST, port=REDIS_PORT, password=REDIS_PASSWD, db=0)
118 # CACHE_BACKEND = 'redis_cache.cache://%s@%s:%s' % (REDIS_PASSWD, REDIS_HOST, REDIS_PORT)
119
120 TIME_ZONE = 'UTC'
121
122 # Static files (CSS, JavaScript, Images)
123 # https://docs.djangoproject.com/en/1.6/howto/static-files/
124
125 STATIC_URL = '/static/'
126
127 STATICFILES_DIRS = [
128     os.path.join(BASE_DIR, "static")
129 ]
130
131 pub_config.CATALOG_ROOT_PATH = os.path.join(STATICFILES_DIRS[0], "catalog")
132 pub_config.CATALOG_URL_PATH = "static/catalog"
133 pub_config.SDC_BASE_URL = "http://%s:%s/api" % (pub_config.MSB_SERVICE_IP, pub_config.MSB_SERVICE_PORT)
134 #
135 # LOGGING = {
136 #     'version': 1,
137 #     'disable_existing_loggers': True,
138 #     'formatters': {
139 #         'standard': {
140 #             'format': '%(asctime)s:[%(name)s]:[%(filename)s]-[%(lineno)d] [%(levelname)s]:%(message)s',
141 #         },
142 #     },
143 #     'filters': {
144 #     },
145 #     'handlers': {
146 #         'catalog_handler': {
147 #             'level': 'DEBUG',
148 #             'class': 'logging.handlers.RotatingFileHandler',
149 #             'filename': os.path.join(BASE_DIR, 'logs/runtime_catalog.log'),
150 #             'formatter': 'standard',
151 #             'maxBytes': 1024 * 1024 * 50,
152 #             'backupCount': 5,
153 #         },
154 #     },
155 #
156 #     'loggers': {
157 #         'catalog': {
158 #             'handlers': ['catalog_handler'],
159 #             'level': 'DEBUG',
160 #             'propagate': False
161 #         },
162 #     }
163 # }
164
165 LOGGING_CONFIG = None
166 # yaml configuration of logging
167 LOGGING_FILE = os.path.join(BASE_DIR, 'catalog/log.yml')
168 if 'test' in sys.argv:
169     os.system('sed -i "s|/var/log/onap/vfc/catalog|/tmp|" %s' % LOGGING_FILE)
170 log_config.yamlConfig(filepath=LOGGING_FILE, watchDog=True)
171
172 if 'test' in sys.argv:
173     os.system('sed -i "s|/tmp|/var/log/onap/vfc/catalog|" %s' % LOGGING_FILE)
174
175     pub_config.REG_TO_MSB_WHEN_START = False
176
177     DATABASES = {}
178     DATABASES['default'] = {
179         'ENGINE': 'django.db.backends.sqlite3',
180         'NAME': ':memory:',
181     }
182     REST_FRAMEWORK = {}
183
184     import platform
185     if platform.system() == 'Linux':
186         TEST_RUNNER = 'xmlrunner.extra.djangotestrunner.XMLTestRunner'
187         TEST_OUTPUT_VERBOSE = True
188         TEST_OUTPUT_DESCRIPTIONS = True
189         TEST_OUTPUT_DIR = 'test-reports'
190
191     import mock
192     from catalog.pub.utils import idutil
193     idutil.get_auto_id = mock.Mock()
194     idutil.get_auto_id.return_value = 1