
* Added versioned pythonclient lib Partially implements blueprint mistral-client-2.0 TODO: * Add ActionManager * Clarify endpoints * Clarify workbook upload operation * Add unit tests Change-Id: Ic9488e3c819da9f647e9a3407ba0657ef87eafee
76 lines
2.4 KiB
Python
76 lines
2.4 KiB
Python
import os
|
|
import testtools
|
|
|
|
from tempest import clients
|
|
from tempest.common import rest_client
|
|
|
|
from mistralclient.api import base
|
|
from mistralclient.api.v1 import client as mclient
|
|
|
|
|
|
class ClientAuth(rest_client.RestClient):
|
|
def __init__(self, auth_provider):
|
|
super(ClientAuth, self).__init__(auth_provider)
|
|
|
|
self.mistral_client = mclient.Client(
|
|
auth_token=self.auth_provider.get_token())
|
|
|
|
|
|
class MistralBase(testtools.TestCase):
|
|
|
|
@classmethod
|
|
def setUpClass(cls):
|
|
super(MistralBase, cls).setUpClass()
|
|
|
|
mgr = clients.Manager()
|
|
cls.mistral_client = ClientAuth(mgr.auth_provider).mistral_client
|
|
|
|
cls.definition = open(os.path.relpath(
|
|
'functionaltests/hello.yaml', os.getcwd()), 'rb').read()
|
|
|
|
cls.wb = cls.mistral_client.workbooks.create(
|
|
"wb", "Description", ["tags"])
|
|
|
|
@classmethod
|
|
def tearDownClass(cls):
|
|
super(MistralBase, cls).tearDownClass()
|
|
|
|
for wb in cls.mistral_client.workbooks.list():
|
|
cls.mistral_client.workbooks.delete(wb.name)
|
|
|
|
def tearDown(self):
|
|
super(MistralBase, self).tearDown()
|
|
for ex in self.mistral_client.executions.list(None):
|
|
# TODO(akuznetsova): remove try/except after
|
|
# https://bugs.launchpad.net/mistral/+bug/1353306
|
|
# will be fixed
|
|
""" try/except construction was added because of problem
|
|
with concurrent transactions in sqlite and appropriate
|
|
error: APIException: (OperationalError) database is locked.
|
|
This isn't a tests problem, so they are considered passed.
|
|
"""
|
|
try:
|
|
self.mistral_client.executions.delete(None, ex.id)
|
|
except base.APIException:
|
|
pass
|
|
|
|
def create_execution(self):
|
|
self.mistral_client.workbooks.upload_definition("wb", self.definition)
|
|
execution = self.mistral_client.executions.create("wb", "hello")
|
|
return execution
|
|
|
|
def assert_item_in_list(self, items, **props):
|
|
def _matches(item, **props):
|
|
for prop_name, prop_val in props.iteritems():
|
|
v = item[prop_name] if isinstance(item, dict) \
|
|
else getattr(item, prop_name)
|
|
|
|
if v != prop_val:
|
|
return False
|
|
|
|
return True
|
|
|
|
filtered_items = filter(lambda item: _matches(item, **props), items)
|
|
|
|
return len(filtered_items) != 0
|