2fc87a1494
User can specify md5sum for the package when creating function that Qinling could check. User can also check by herself when downloading function package. Change-Id: Ib3d37cd92bd2ed7018f5a4825a5323b2652948c9 Implements: blueprint qinling-function-package-md5
176 lines
5.8 KiB
Python
176 lines
5.8 KiB
Python
# Copyright 2017 Catalyst IT Ltd
|
|
#
|
|
# 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 pkg_resources
|
|
import tempfile
|
|
import zipfile
|
|
|
|
from tempest import config
|
|
from tempest.lib.common.utils import data_utils
|
|
from tempest import test
|
|
import tenacity
|
|
|
|
from qinling_tempest_plugin.tests import utils
|
|
|
|
CONF = config.CONF
|
|
|
|
|
|
class BaseQinlingTest(test.BaseTestCase):
|
|
credentials = ('admin', 'primary', 'alt')
|
|
create_runtime = True
|
|
image = 'openstackqinling/python-runtime'
|
|
|
|
@classmethod
|
|
def skip_checks(cls):
|
|
super(BaseQinlingTest, cls).skip_checks()
|
|
|
|
if not CONF.service_available.qinling:
|
|
raise cls.skipException("Qinling service is not available.")
|
|
|
|
@classmethod
|
|
def setup_clients(cls):
|
|
super(BaseQinlingTest, cls).setup_clients()
|
|
|
|
cls.client = cls.os_primary.qinling.QinlingClient()
|
|
cls.alt_client = cls.os_alt.qinling.QinlingClient()
|
|
cls.admin_client = cls.os_admin.qinling.QinlingClient()
|
|
|
|
# Initilize k8s client
|
|
clients = utils.get_k8s_clients(CONF)
|
|
cls.k8s_v1 = clients['v1']
|
|
cls.k8s_v1extention = clients['v1extention']
|
|
cls.namespace = 'qinling'
|
|
|
|
@classmethod
|
|
def resource_setup(cls):
|
|
super(BaseQinlingTest, cls).resource_setup()
|
|
|
|
if cls.create_runtime:
|
|
cls.runtime_id = None
|
|
name = data_utils.rand_name('runtime', prefix=cls.name_prefix)
|
|
_, body = cls.admin_client.create_runtime(cls.image, name)
|
|
cls.runtime_id = body['id']
|
|
|
|
@classmethod
|
|
def resource_cleanup(cls):
|
|
if cls.create_runtime and cls.runtime_id:
|
|
cls.admin_client.delete_resource(
|
|
'runtimes', cls.runtime_id,
|
|
ignore_notfound=True
|
|
)
|
|
|
|
super(BaseQinlingTest, cls).resource_cleanup()
|
|
|
|
@tenacity.retry(
|
|
wait=tenacity.wait_fixed(3),
|
|
stop=tenacity.stop_after_attempt(10),
|
|
retry=tenacity.retry_if_exception_type(AssertionError)
|
|
)
|
|
def await_runtime_available(self, id):
|
|
resp, body = self.client.get_resource('runtimes', id)
|
|
|
|
self.assertEqual(200, resp.status)
|
|
self.assertEqual('available', body['status'])
|
|
|
|
@tenacity.retry(
|
|
wait=tenacity.wait_fixed(3),
|
|
stop=tenacity.stop_after_attempt(10),
|
|
retry=tenacity.retry_if_exception_type(AssertionError)
|
|
)
|
|
def await_execution_success(self, id):
|
|
resp, body = self.client.get_resource('executions', id)
|
|
|
|
self.assertEqual(200, resp.status)
|
|
self.assertEqual('success', body['status'])
|
|
|
|
def create_package(self, name="python_test.py"):
|
|
python_file_path = pkg_resources.resource_filename(
|
|
'qinling_tempest_plugin',
|
|
"functions/%s" % name
|
|
)
|
|
base_name, _ = os.path.splitext(python_file_path)
|
|
module_name = os.path.basename(base_name)
|
|
python_zip_file = os.path.join(
|
|
tempfile.gettempdir(),
|
|
'%s.zip' % module_name
|
|
)
|
|
|
|
if not os.path.isfile(python_zip_file):
|
|
zf = zipfile.PyZipFile(python_zip_file, mode='w')
|
|
try:
|
|
zf.writepy(python_file_path)
|
|
finally:
|
|
zf.close()
|
|
|
|
self.addCleanup(os.remove, python_zip_file)
|
|
return python_zip_file
|
|
|
|
def create_function(self, package_path=None, image=False, md5sum=None):
|
|
function_name = data_utils.rand_name(
|
|
'function',
|
|
prefix=self.name_prefix
|
|
)
|
|
|
|
if not image:
|
|
if not package_path:
|
|
package_path = self.create_package()
|
|
|
|
code = {"source": "package"}
|
|
if md5sum:
|
|
code.update({"md5sum": md5sum})
|
|
base_name, _ = os.path.splitext(package_path)
|
|
module_name = os.path.basename(base_name)
|
|
with open(package_path, 'rb') as package_data:
|
|
resp, body = self.client.create_function(
|
|
code,
|
|
self.runtime_id,
|
|
name=function_name,
|
|
package_data=package_data,
|
|
entry='%s.main' % module_name
|
|
)
|
|
else:
|
|
resp, body = self.client.create_function(
|
|
{"source": "image", "image": "openstackqinling/alpine-test"},
|
|
None,
|
|
name=function_name,
|
|
)
|
|
|
|
self.assertEqual(201, resp.status_code)
|
|
function_id = body['id']
|
|
self.addCleanup(self.client.delete_resource, 'functions',
|
|
function_id, ignore_notfound=True)
|
|
|
|
return function_id
|
|
|
|
def create_webhook(self):
|
|
resp, body = self.client.create_webhook(self.function_id)
|
|
self.assertEqual(201, resp.status)
|
|
webhook_id = body['id']
|
|
self.addCleanup(self.client.delete_resource, 'webhooks',
|
|
webhook_id, ignore_notfound=True)
|
|
|
|
return webhook_id, body['webhook_url']
|
|
|
|
def create_job(self, function_id=None):
|
|
if not function_id:
|
|
function_id = self.create_function()
|
|
resp, body = self.client.create_job(function_id)
|
|
self.assertEqual(201, resp.status)
|
|
job_id = body['id']
|
|
|
|
self.addCleanup(self.client.delete_resource, 'jobs',
|
|
job_id, ignore_notfound=True)
|
|
|
|
return job_id
|