a4a60b1328
Code from manila/openstack/common/policy.py duplicates code from oslo_policy, so we remove this module and use oslo_policy instead. Implements bp use-oslo-policy-lib Change-Id: I289221a1e96f6c705deef4070be113d69c57f6e0
52 lines
2.0 KiB
Python
52 lines
2.0 KiB
Python
# Copyright 2010 United States Government as represented by the
|
|
# Administrator of the National Aeronautics and Space Administration.
|
|
# All Rights Reserved.
|
|
#
|
|
# 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
|
|
|
|
from oslo_policy import opts
|
|
|
|
from manila.common import config
|
|
|
|
CONF = config.CONF
|
|
|
|
|
|
def set_defaults(conf):
|
|
_safe_set_of_opts(conf, 'verbose', True)
|
|
_safe_set_of_opts(conf, 'state_path', os.path.abspath(
|
|
os.path.join(os.path.dirname(__file__),
|
|
'..',
|
|
'..')))
|
|
_safe_set_of_opts(conf, 'connection', "sqlite://", group='database')
|
|
_safe_set_of_opts(conf, 'sqlite_synchronous', False)
|
|
_POLICY_PATH = os.path.abspath(os.path.join(CONF.state_path,
|
|
'manila/tests/policy.json'))
|
|
opts.set_defaults(conf, policy_file=_POLICY_PATH)
|
|
_safe_set_of_opts(conf, 'service_instance_user', 'fake_user')
|
|
_API_PASTE_PATH = os.path.abspath(os.path.join(CONF.state_path,
|
|
'etc/manila/api-paste.ini'))
|
|
_safe_set_of_opts(conf, 'api_paste_config', _API_PASTE_PATH)
|
|
_safe_set_of_opts(conf, 'share_driver',
|
|
'manila.tests.fake_driver.FakeShareDriver')
|
|
_safe_set_of_opts(conf, 'auth_strategy', 'noauth')
|
|
|
|
|
|
def _safe_set_of_opts(conf, *args, **kwargs):
|
|
try:
|
|
conf.set_default(*args, **kwargs)
|
|
except config.cfg.NoSuchOptError:
|
|
# Assumed that opt is not imported and not used
|
|
pass
|