
This patch moves the current behaviour from CloudConfigPlugin.process to another function, process_non_multipart, which handles data in the yaml format. Also, the 'process' function obtains the payload of the parameter and passes it to the process_non_multipart function. Change-Id: I49e214771a17090e842f90f1ad34ca9e37c3021d Closes-Bug: #1409268
72 lines
2.5 KiB
Python
72 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.windows.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.windows.'
|
|
'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)
|