
Most of the Windows-specific plugins were able to work on other platforms as well, as long as osutils provides the relevant functionalities. This restructuring is an effort for helping future additions of other platforms. Change-Id: I21a35eb6eb8e2439cfdf861c59afc51c3618a779
73 lines
2.5 KiB
Python
73 lines
2.5 KiB
Python
# Copyright 2015 Cloudbase Solutions Srl
|
|
#
|
|
# 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
|
|
|
|
try:
|
|
import unittest.mock as mock
|
|
except ImportError:
|
|
import mock
|
|
|
|
from oslo.config import cfg
|
|
|
|
from cloudbaseinit.plugins.common.userdataplugins import cloudconfig
|
|
from cloudbaseinit.tests import testutils
|
|
|
|
CONF = cfg.CONF
|
|
|
|
|
|
class CloudConfigPluginTests(unittest.TestCase):
|
|
@classmethod
|
|
def setUpClass(cls):
|
|
cls.plugin = cloudconfig.CloudConfigPlugin()
|
|
|
|
def test_priority(self):
|
|
orig = CONF.cloud_config_plugins
|
|
CONF.cloud_config_plugins = ['write_file', 'dummy', 'dummy1']
|
|
expected = [
|
|
('write_file', 0),
|
|
('dummy', 1),
|
|
('dummy1', 2),
|
|
('invalid', 3),
|
|
]
|
|
|
|
try:
|
|
executor = cloudconfig.CloudConfigPluginExecutor(
|
|
dummy=1,
|
|
dummy1=2,
|
|
invalid=3,
|
|
write_file=0)
|
|
self.assertEqual(expected, executor._expected_plugins)
|
|
finally:
|
|
CONF.cloud_config_plugins = orig
|
|
|
|
def test_executor_from_yaml(self):
|
|
for invalid in (mock.sentinel.yaml, None, 1, int):
|
|
with self.assertRaises(cloudconfig.CloudConfigError) as cm:
|
|
cloudconfig.CloudConfigPluginExecutor.from_yaml(invalid)
|
|
self.assertEqual("Invalid yaml stream provided.",
|
|
str(cm.exception))
|
|
|
|
executor = cloudconfig.CloudConfigPluginExecutor.from_yaml('{}')
|
|
self.assertIsInstance(executor, cloudconfig.CloudConfigPluginExecutor)
|
|
|
|
def test_invalid_type(self):
|
|
with testutils.LogSnatcher('cloudbaseinit.plugins.common.'
|
|
'userdataplugins.cloudconfig') as snatcher:
|
|
self.plugin.process_non_multipart({'unsupported'})
|
|
|
|
expected = ["Invalid yaml stream provided.",
|
|
"Could not process the type %r" % set]
|
|
self.assertEqual(expected, snatcher.output)
|