
As per the community goal of migrating the policy file the format from JSON to YAML[1], we need to do two things: 1. Change the default value of '[oslo_policy] policy_file'' config option from 'policy.json' to 'policy.yaml' with upgrade checks. 2. Deprecate the JSON formatted policy file on the project side via warning in doc and releasenotes. Also replace policy.json to policy.yaml ref from doc and tests. [1]https://governance.openstack.org/tc/goals/selected/wallaby/migrate-policy-format-from-json-to-yaml.html Change-Id: Ibfb162f88cb04c0b2af3fbf41cfcd96bc7e351be
39 lines
1.3 KiB
Python
39 lines
1.3 KiB
Python
# Copyright (c) 2018 NEC, Corp.
|
|
# Copyright (c) 2018 SUSE LLC
|
|
#
|
|
# 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 unittest
|
|
|
|
from oslo_config import cfg
|
|
from oslo_upgradecheck.upgradecheck import Code
|
|
|
|
from monasca_api.cmd import status
|
|
|
|
|
|
class TestUpgradeChecks(unittest.TestCase):
|
|
|
|
def setUp(self):
|
|
super(TestUpgradeChecks, self).setUp()
|
|
self.cmd = status.Checks()
|
|
cfg.CONF(args=[], project='magnum')
|
|
|
|
def test_checks(self):
|
|
for name, func in self.cmd._upgrade_checks:
|
|
if isinstance(func, tuple):
|
|
func_name, kwargs = func
|
|
result = func_name(self, **kwargs)
|
|
else:
|
|
result = func(self)
|
|
self.assertEqual(Code.SUCCESS, result.code)
|