deb-glare/glare/tests/unit/test_multistore.py

39 lines
1.4 KiB
Python

# Copyright 2017 OpenStack Foundation.
# 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.
from glare.objects.meta import registry
from glare.tests.unit import base
class TestMultistore(base.BaseTestCase):
def test_multistore(self):
types = {'images': 'swift',
'heat_templates': 'rbd', 'heat_environments': '',
'tosca_templates': 'sheepdog',
'murano_packages': 'vmware_store',
'sample_artifact': 'database',
'hooks_artifact': 'database'}
self.config(
enabled_artifact_types=[":".join(_) for _ in types.items()])
registry.ArtifactRegistry.register_all_artifacts()
for t in registry.ArtifactRegistry.obj_classes().values():
name = t[0].get_type_name()
if name == 'all':
continue
self.assertEqual(t[0].get_default_store(), types[name])