d2f4e9717d
Move all modules under the next structure: - rally_openstack.common - rally_openstack.enviromnet - rally_openstack.task - rally_openstack.verification Change-Id: I41702d017cd49b117da3b8e12b19c7327229ae32
119 lines
4.1 KiB
Python
119 lines
4.1 KiB
Python
# Copyright 2015: Mirantis Inc.
|
|
# 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 unittest import mock
|
|
|
|
from rally_openstack.task.contexts.murano import murano_packages
|
|
from tests.unit import test
|
|
|
|
CTX = "rally_openstack.task.contexts.murano.murano_packages"
|
|
|
|
|
|
class MuranoPackageGeneratorTestCase(test.TestCase):
|
|
|
|
def setUp(self):
|
|
super(MuranoPackageGeneratorTestCase, self).setUp()
|
|
|
|
@staticmethod
|
|
def _get_context():
|
|
return {
|
|
"config": {
|
|
"users": {
|
|
"tenants": 2,
|
|
"users_per_tenant": 1,
|
|
"concurrent": 1,
|
|
},
|
|
"murano_packages": {
|
|
"app_package": (
|
|
"rally-jobs/extra/murano/"
|
|
"applications/HelloReporter/"
|
|
"io.murano.apps.HelloReporter.zip")
|
|
}
|
|
},
|
|
"admin": {
|
|
"credential": mock.MagicMock()
|
|
},
|
|
"task": mock.MagicMock(),
|
|
"owner_id": "foo_uuid",
|
|
"users": [
|
|
{
|
|
"id": "user_0",
|
|
"tenant_id": "tenant_0",
|
|
"credential": "credential"
|
|
},
|
|
{
|
|
"id": "user_1",
|
|
"tenant_id": "tenant_1",
|
|
"credential": "credential"
|
|
}
|
|
],
|
|
"tenants": {
|
|
"tenant_0": {"name": "tenant_0_name"},
|
|
"tenant_1": {"name": "tenant_1_name"}
|
|
}
|
|
}
|
|
|
|
@mock.patch("%s.osclients" % CTX)
|
|
def test_setup(self, mock_osclients):
|
|
mock_app = mock.MagicMock(id="fake_app_id")
|
|
(mock_osclients.Clients().murano().
|
|
packages.create.return_value) = mock_app
|
|
|
|
murano_ctx = murano_packages.PackageGenerator(self._get_context())
|
|
murano_ctx.setup()
|
|
|
|
self.assertEqual(2, len(murano_ctx.context["tenants"]))
|
|
tenant_id = murano_ctx.context["users"][0]["tenant_id"]
|
|
self.assertEqual([mock_app],
|
|
murano_ctx.context["tenants"][tenant_id]["packages"])
|
|
|
|
@mock.patch("%s.osclients" % CTX)
|
|
@mock.patch("%s.resource_manager.cleanup" % CTX)
|
|
def test_cleanup_with_zip(self, mock_cleanup, mock_osclients):
|
|
mock_app = mock.Mock(id="fake_app_id")
|
|
(mock_osclients.Clients().murano().
|
|
packages.create.return_value) = mock_app
|
|
|
|
murano_ctx = murano_packages.PackageGenerator(self._get_context())
|
|
murano_ctx.setup()
|
|
murano_ctx.cleanup()
|
|
|
|
mock_cleanup.assert_called_once_with(
|
|
names=["murano.packages"],
|
|
users=murano_ctx.context["users"],
|
|
superclass=murano_packages.PackageGenerator,
|
|
task_id="foo_uuid")
|
|
|
|
@mock.patch("%s.osclients" % CTX)
|
|
@mock.patch("%s.resource_manager.cleanup" % CTX)
|
|
def test_cleanup_with_dir(self, mock_cleanup, mock_osclients):
|
|
mock_app = mock.Mock(id="fake_app_id")
|
|
(mock_osclients.Clients().murano().
|
|
packages.create.return_value) = mock_app
|
|
ctx_dict = self._get_context()
|
|
app_dir = ("rally-jobs/extra/murano/applications/"
|
|
"HelloReporter/io.murano.apps.HelloReporter/")
|
|
ctx_dict["config"]["murano_packages"]["app_package"] = app_dir
|
|
|
|
murano_ctx = murano_packages.PackageGenerator(ctx_dict)
|
|
murano_ctx.setup()
|
|
murano_ctx.cleanup()
|
|
|
|
mock_cleanup.assert_called_once_with(
|
|
names=["murano.packages"],
|
|
users=murano_ctx.context["users"],
|
|
superclass=murano_packages.PackageGenerator,
|
|
task_id="foo_uuid")
|