
This is the start of a python monasca-common package. Initially it has a common python logging config, common oslo opts, and mysql common code. Change-Id: I15c32b72fc42a8c5ce9eeedf20ca3a11907bf29f
53 lines
1.9 KiB
Python
53 lines
1.9 KiB
Python
# (C) Copyright 2015 HP Development Company, L.P.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
# implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
import os
|
|
import tempfile
|
|
import unittest
|
|
|
|
from oslo_config import cfg
|
|
|
|
from monasca_common.logging import dict_config
|
|
|
|
|
|
class CommonTests(unittest.TestCase):
|
|
|
|
def test_logging_config(self):
|
|
logging_opts = [
|
|
cfg.StrOpt('level', default='INFO'),
|
|
cfg.StrOpt('file', default='/var/log/monasca/monasca.log'),
|
|
cfg.StrOpt('size', default=10485760),
|
|
cfg.StrOpt('backup', default=5),
|
|
cfg.StrOpt('kazoo', default="WARN"),
|
|
cfg.StrOpt('kafka', default="WARN"),
|
|
cfg.StrOpt('iso8601', default="WARN"),
|
|
cfg.StrOpt('statsd', default="WARN")]
|
|
logging_group = cfg.OptGroup(name='logging', title='logging')
|
|
cfg.CONF.register_group(logging_group)
|
|
cfg.CONF.register_opts(logging_opts, logging_group)
|
|
|
|
tempfile_path = tempfile.mkstemp()[1]
|
|
try:
|
|
outfile = open(tempfile_path, 'w')
|
|
outfile.writelines(
|
|
['[logging]\n', 'level = DEBUG\n', 'backup = 3\n'])
|
|
outfile.close()
|
|
|
|
cfg.CONF(args=[], project='test',
|
|
default_config_files=[tempfile_path])
|
|
log_config = dict_config.get_config(cfg.CONF)
|
|
finally:
|
|
os.remove(tempfile_path)
|
|
self.assertEqual(log_config['handlers']['file']['backupCount'], str(3))
|