5d12c4acbe
Also, made some minor changes to imports orders to fit PEP8 Change-Id: I1596989cac61602a3f417c9d60774354f5650424
78 lines
2.9 KiB
Python
78 lines
2.9 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.
|
|
|
|
import os
|
|
import zipfile
|
|
|
|
from rally.common import fileutils
|
|
from rally.common import utils
|
|
from rally.common import validation
|
|
from rally import exceptions
|
|
from rally.task import context
|
|
|
|
from rally_openstack.cleanup import manager as resource_manager
|
|
from rally_openstack import consts
|
|
from rally_openstack import osclients
|
|
|
|
|
|
@validation.add("required_platform", platform="openstack", users=True)
|
|
@context.configure(name="murano_packages", platform="openstack", order=401)
|
|
class PackageGenerator(context.Context):
|
|
"""Context class for uploading applications for murano."""
|
|
|
|
CONFIG_SCHEMA = {
|
|
"type": "object",
|
|
"$schema": consts.JSON_SCHEMA,
|
|
"properties": {
|
|
"app_package": {
|
|
"type": "string",
|
|
}
|
|
},
|
|
"required": ["app_package"],
|
|
"additionalProperties": False
|
|
}
|
|
|
|
def setup(self):
|
|
is_config_app_dir = False
|
|
pckg_path = os.path.expanduser(self.config["app_package"])
|
|
if zipfile.is_zipfile(pckg_path):
|
|
zip_name = pckg_path
|
|
elif os.path.isdir(pckg_path):
|
|
is_config_app_dir = True
|
|
zip_name = fileutils.pack_dir(pckg_path)
|
|
else:
|
|
msg = "There is no zip archive or directory by this path: %s"
|
|
raise exceptions.ContextSetupFailure(msg=msg % pckg_path,
|
|
ctx_name=self.get_name())
|
|
|
|
for user, tenant_id in utils.iterate_per_tenants(
|
|
self.context["users"]):
|
|
clients = osclients.Clients(user["credential"])
|
|
self.context["tenants"][tenant_id]["packages"] = []
|
|
if is_config_app_dir:
|
|
self.context["tenants"][tenant_id]["murano_ctx"] = zip_name
|
|
# TODO(astudenov): use self.generate_random_name()
|
|
package = clients.murano().packages.create(
|
|
{"categories": ["Web"], "tags": ["tag"]},
|
|
{"file": open(zip_name)})
|
|
|
|
self.context["tenants"][tenant_id]["packages"].append(package)
|
|
|
|
def cleanup(self):
|
|
resource_manager.cleanup(names=["murano.packages"],
|
|
users=self.context.get("users", []),
|
|
superclass=self.__class__,
|
|
task_id=self.get_owner_id())
|