X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=lcm%2Flcm%2Fsettings.py;h=4c235c3368d230b012118d12f1fa0ec394ea1a86;hb=2fe83c7216d716bf0ce303b3f2e1ff9e570fc24f;hp=e72e256c63f9c6c62bd3f69415967eed664278ef;hpb=39f51ccb11f131cb51c9b94e4b99b5410906b26d;p=vfc%2Fgvnfm%2Fvnflcm.git diff --git a/lcm/lcm/settings.py b/lcm/lcm/settings.py index e72e256c..4c235c33 100644 --- a/lcm/lcm/settings.py +++ b/lcm/lcm/settings.py @@ -14,6 +14,7 @@ import os import sys +import platform import redisco @@ -45,9 +46,11 @@ INSTALLED_APPS = [ 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.staticfiles', + 'django.contrib.admin', 'rest_framework', 'lcm.pub.database', 'lcm.samples', + 'lcm.swagger', 'drf_yasg', ] @@ -122,40 +125,41 @@ TIME_ZONE = 'UTC' # https://docs.djangoproject.com/en/1.6/howto/static-files/ STATIC_URL = '/static/' -# -# LOGGING = { -# 'version': 1, -# 'disable_existing_loggers': True, -# 'formatters': { -# 'standard': { -# 'format': '%(asctime)s:[%(name)s]:[%(filename)s]-[%(lineno)d] [%(levelname)s]:%(message)s', -# }, -# }, -# 'filters': { -# }, -# 'handlers': { -# 'lcm_handler': { -# 'level': 'DEBUG', -# 'class': 'logging.handlers.RotatingFileHandler', -# 'filename': os.path.join(BASE_DIR, 'logs/runtime_lcm.log'), -# 'formatter': 'standard', -# 'maxBytes': 1024 * 1024 * 50, -# 'backupCount': 5, -# }, -# }, -# -# 'loggers': { -# 'lcm': { -# 'handlers': ['lcm_handler'], -# 'level': 'DEBUG', -# 'propagate': False -# }, -# } -# } -LOGGING_CONFIG = None -# yaml configuration of logging -LOGGING_FILE = os.path.join(BASE_DIR, 'lcm/log.yml') -config.yamlConfig(filepath=LOGGING_FILE, watchDog=True) + +if platform.system() == 'Windows' or 'test' in sys.argv: + LOGGING = { + 'version': 1, + 'disable_existing_loggers': True, + 'formatters': { + 'standard': { + 'format': '%(asctime)s:[%(name)s]:[%(filename)s]-[%(lineno)d] [%(levelname)s]:%(message)s', + }, + }, + 'filters': { + }, + 'handlers': { + 'lcm_handler': { + 'level': 'DEBUG', + 'class': 'logging.handlers.RotatingFileHandler', + 'filename': os.path.join(BASE_DIR, 'logs/runtime_lcm.log'), + 'formatter': 'standard', + 'maxBytes': 1024 * 1024 * 50, + 'backupCount': 5, + }, + }, + + 'loggers': { + 'lcm': { + 'handlers': ['lcm_handler'], + 'level': 'DEBUG', + 'propagate': False + }, + } + } +else: + LOGGING_CONFIG = None + LOGGING_FILE = os.path.join(BASE_DIR, 'lcm/log.yml') + config.yamlConfig(filepath=LOGGING_FILE, watchDog=True) if 'test' in sys.argv: @@ -175,3 +179,8 @@ if 'test' in sys.argv: TEST_OUTPUT_VERBOSE = True TEST_OUTPUT_DESCRIPTIONS = True TEST_OUTPUT_DIR = 'test-reports' + + import mock + from lcm.pub.utils import idutil + idutil.get_auto_id = mock.Mock() + idutil.get_auto_id.return_value = 1