Merge "policy: fix policy_file finding"

This commit is contained in:
Jenkins 2013-01-11 15:19:00 +00:00 committed by Gerrit Code Review
commit f24e09d76a
2 changed files with 57 additions and 0 deletions

View File

@ -17,6 +17,8 @@
"""Policy Engine For Ceilometer"""
import os
from ceilometer import utils
from ceilometer.openstack.common import cfg
from ceilometer.openstack.common import policy
@ -42,6 +44,10 @@ def init():
global _POLICY_CACHE
if not _POLICY_PATH:
_POLICY_PATH = cfg.CONF.policy_file
if not os.path.exists(_POLICY_PATH):
_POLICY_PATH = cfg.CONF.find_file(_POLICY_PATH)
if not _POLICY_PATH:
raise cfg.ConfigFilesNotFoundError([cfg.CONF.policy_file])
utils.read_cached_file(_POLICY_PATH, _POLICY_CACHE,
reload_func=_set_brain)

51
tests/test_policy.py Normal file
View File

@ -0,0 +1,51 @@
# -*- encoding: utf-8 -*-
#
# Copyright © 2013 Julien Danjou
#
# Author: Julien Danjou <julien@danjou.info>
#
# 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.
"""Tests for ceilometer.policy"""
import os
import tempfile
from ceilometer.tests import base
from ceilometer import policy
from ceilometer.openstack.common import cfg
class TestPolicy(base.TestCase):
def setUp(self):
super(TestPolicy, self).setUp()
# Clear cache
policy._POLICY_PATH = None
policy._POLICY_CACHE = {}
def tearDown(self):
try:
os.unlink(cfg.CONF.policy_file)
except OSError:
pass
def test_init(self):
cfg.CONF([])
cfg.CONF.policy_file = tempfile.mktemp()
with open(cfg.CONF.policy_file, "w") as f:
f.write("{}")
policy.init()
def test_init_file_not_found(self):
cfg.CONF([])
cfg.CONF.policy_file = 'foobar.json.does.not.exist'
self.assertRaises(cfg.ConfigFilesNotFoundError, policy.init)