
- Fix wrong inheritance in basa.py - Added action_v2.yaml with simple action definition that describe two actions - Added positive tests which cover all CLI action commands - Added negative tests Change-Id: I075868aaff5f218718933c40bb99b4415ca80821
349 lines
13 KiB
Python
349 lines
13 KiB
Python
# Copyright (c) 2014 Mirantis, Inc.
|
|
#
|
|
# 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
|
|
|
|
from tempest_lib import exceptions
|
|
|
|
from mistralclient.tests.functional.cli import base
|
|
|
|
|
|
MISTRAL_URL = "http://localhost:8989/v1"
|
|
|
|
|
|
class SimpleMistralCLITests(base.MistralCLIAuth):
|
|
"""Basic tests, check '-list', '-help' commands."""
|
|
|
|
_mistral_url = MISTRAL_URL
|
|
|
|
@classmethod
|
|
def setUpClass(cls):
|
|
super(SimpleMistralCLITests, cls).setUpClass()
|
|
|
|
def test_workbooks_list(self):
|
|
workbooks = self.parser.listing(self.mistral('workbook-list'))
|
|
self.assertTableStruct(workbooks,
|
|
['Name', 'Description', 'Tags'])
|
|
|
|
def test_executions_list(self):
|
|
executions = self.parser.listing(
|
|
self.mistral('execution-list', params='""'))
|
|
self.assertTableStruct(executions,
|
|
['ID', 'Workbook', 'Task', 'State'])
|
|
|
|
def test_tasks_list(self):
|
|
tasks = self.parser.listing(
|
|
self.mistral('task-list', params='"", ""'))
|
|
self.assertTableStruct(tasks,
|
|
['ID', 'Workbook', 'Execution', 'Name',
|
|
'Description', 'State', 'Tags'])
|
|
|
|
|
|
class ClientTestBase(base.MistralCLIAuth):
|
|
|
|
_mistral_url = MISTRAL_URL
|
|
|
|
@classmethod
|
|
def setUpClass(cls):
|
|
super(ClientTestBase, cls).setUpClass()
|
|
|
|
cls.wb_def = os.path.relpath(
|
|
'functionaltests/resources/v1/wb_v1.yaml', os.getcwd())
|
|
|
|
def tearDown(self):
|
|
super(ClientTestBase, self).tearDown()
|
|
|
|
for wb in self.parser.listing(self.mistral('workbook-list')):
|
|
if wb['Name'] != "<none>":
|
|
execs = self.parser.listing(self.mistral(
|
|
'execution-list', params='{0}'.format(wb['Name'])))
|
|
ids = [ex['ID'] for ex in execs]
|
|
for id in ids:
|
|
if id != "<none>":
|
|
self.parser.listing(self.mistral(
|
|
'execution-delete',
|
|
params='"{0}" "{1}"'.format(wb['Name'], id)))
|
|
|
|
self.parser.listing(self.mistral(
|
|
'workbook-delete', params=wb['Name']))
|
|
|
|
def get_value_of_field(self, obj, field):
|
|
return [o['Value'] for o in obj
|
|
if o['Field'] == "{0}".format(field)][0]
|
|
|
|
|
|
class WorkbookCLITests(ClientTestBase):
|
|
"""Test suite checks commands to work with workbooks."""
|
|
|
|
@classmethod
|
|
def setUpClass(cls):
|
|
super(WorkbookCLITests, cls).setUpClass()
|
|
|
|
def test_workbook_create_delete(self):
|
|
wb = self.parser.listing(self.mistral('workbook-create', params='wb'))
|
|
self.assertTableStruct(wb, ['Field', 'Value'])
|
|
|
|
name = self.get_value_of_field(wb, "Name")
|
|
self.assertEqual('wb', name)
|
|
|
|
wbs = self.parser.listing(self.mistral('workbook-list'))
|
|
self.assertIn('wb', [workbook['Name'] for workbook in wbs])
|
|
|
|
self.parser.listing(self.mistral('workbook-delete', params='wb'))
|
|
|
|
wbs = self.parser.listing(self.mistral('workbook-list'))
|
|
self.assertNotIn('wb', [workbook['Name'] for workbook in wbs])
|
|
|
|
def test_workbook_update(self):
|
|
self.parser.listing(self.mistral('workbook-create', params='wb'))
|
|
|
|
wb = self.parser.listing(self.mistral(
|
|
'workbook-update', params='"wb" "Test Description" "tag"'))
|
|
self.assertTableStruct(wb, ['Field', 'Value'])
|
|
|
|
name = self.get_value_of_field(wb, "Name")
|
|
description = self.get_value_of_field(wb, "Description")
|
|
tags = self.get_value_of_field(wb, "Tags")
|
|
|
|
self.assertEqual('wb', name)
|
|
self.assertIn('Test Description', description)
|
|
self.assertIn('tag', tags)
|
|
|
|
def test_workbook_upload_get_definition(self):
|
|
self.parser.listing(self.mistral('workbook-create', params='wb'))
|
|
|
|
self.parser.listing(self.mistral(
|
|
'workbook-upload-definition',
|
|
params='"wb" "{0}"'.format(self.wb_def)))
|
|
|
|
definition = self.mistral('workbook-get-definition', params='wb')
|
|
self.assertNotIn('404 Not Found', definition)
|
|
|
|
|
|
class ExecutionCLITests(ClientTestBase):
|
|
"""Test suite checks commands to work with executions."""
|
|
|
|
def setUp(self):
|
|
super(ExecutionCLITests, self).setUp()
|
|
|
|
self.mistral('workbook-create', params='wb')
|
|
self.mistral('workbook-upload-definition',
|
|
params='"wb" "{0}"'.format(self.wb_def))
|
|
|
|
def tearDown(self):
|
|
super(ExecutionCLITests, self).tearDown()
|
|
|
|
def test_execution_create_delete(self):
|
|
execution = self.parser.listing(self.mistral(
|
|
'execution-create', params='"wb" "hello" "{}"'))
|
|
|
|
self.assertTableStruct(execution, ['Field', 'Value'])
|
|
|
|
exec_id = self.get_value_of_field(execution, 'ID')
|
|
wb = self.get_value_of_field(execution, 'Workbook')
|
|
task = self.get_value_of_field(execution, 'Task')
|
|
status = self.get_value_of_field(execution, 'State')
|
|
|
|
self.assertEqual('wb', wb)
|
|
self.assertEqual('hello', task)
|
|
self.assertEqual('RUNNING', status)
|
|
|
|
execs = self.parser.listing(
|
|
self.mistral('execution-list', params='wb'))
|
|
self.assertIn(exec_id, [ex['ID'] for ex in execs])
|
|
self.assertIn(wb, [ex['Workbook'] for ex in execs])
|
|
self.assertIn(task, [ex['Task'] for ex in execs])
|
|
self.assertIn('SUCCESS', [ex['State'] for ex in execs])
|
|
|
|
self.parser.listing(self.mistral(
|
|
'execution-delete', params='"wb" "{0}"'.format(exec_id)))
|
|
|
|
execs = self.parser.listing(
|
|
self.mistral('execution-list', params='wb'))
|
|
self.assertNotIn(exec_id, [ex['ID'] for ex in execs])
|
|
|
|
def test_update_execution(self):
|
|
execution = self.parser.listing(self.mistral(
|
|
'execution-create', params='"wb" "hello" "{}"'))
|
|
|
|
self.assertTableStruct(execution, ['Field', 'Value'])
|
|
|
|
exec_id = self.get_value_of_field(execution, 'ID')
|
|
status = self.get_value_of_field(execution, 'State')
|
|
|
|
self.assertEqual('RUNNING', status)
|
|
|
|
execution = self.parser.listing(self.mistral(
|
|
'execution-update', params='"wb" "{0}" "STOPPED"'.format(exec_id)))
|
|
|
|
self.assertTableStruct(execution, ['Field', 'Value'])
|
|
|
|
updated_exec_id = self.get_value_of_field(execution, 'ID')
|
|
status = self.get_value_of_field(execution, 'State')
|
|
|
|
self.assertEqual(exec_id, updated_exec_id)
|
|
self.assertEqual('STOPPED', status)
|
|
|
|
def test_get_execution(self):
|
|
execution = self.parser.listing(self.mistral(
|
|
'execution-create', params='"wb" "hello" "{}"'))
|
|
|
|
exec_id = self.get_value_of_field(execution, 'ID')
|
|
|
|
execution = self.parser.listing(self.mistral(
|
|
'execution-get', params='"wb" "{0}"'.format(exec_id)))
|
|
|
|
gotten_id = self.get_value_of_field(execution, 'ID')
|
|
wb = self.get_value_of_field(execution, 'Workbook')
|
|
task = self.get_value_of_field(execution, 'Task')
|
|
|
|
self.assertEqual(exec_id, gotten_id)
|
|
self.assertEqual('wb', wb)
|
|
self.assertEqual('hello', task)
|
|
|
|
|
|
class TaskCLITests(ClientTestBase):
|
|
"""Test suite checks commands to work with tasks."""
|
|
|
|
def test_get_task(self):
|
|
self.mistral('workbook-create', params='wb')
|
|
self.mistral('workbook-upload-definition',
|
|
params='"wb" "{0}"'.format(self.wb_def))
|
|
|
|
execution = self.parser.listing(self.mistral(
|
|
'execution-create', params='"wb" "hello" "{}"'))
|
|
exec_id = self.get_value_of_field(execution, 'ID')
|
|
|
|
tasks = self.parser.listing(
|
|
self.mistral('task-list', params='"wb" "{0}"'.format(exec_id)))
|
|
|
|
task_id = [task['ID'] for task in tasks][0]
|
|
|
|
task = self.parser.listing(self.mistral(
|
|
'task-get', params='"wb" "hello" "{0}"'.format(task_id)))
|
|
|
|
gotten_id = self.get_value_of_field(task, 'ID')
|
|
wb = self.get_value_of_field(task, 'Workbook')
|
|
|
|
self.assertEqual(task_id, gotten_id)
|
|
self.assertEqual('wb', wb)
|
|
|
|
|
|
class NegativeCLITests(ClientTestBase):
|
|
"""This class contains negative tests."""
|
|
|
|
def test_wb_list_extra_param(self):
|
|
self.assertRaises(exceptions.CommandFailed,
|
|
self.mistral, 'workbook-list', params='param')
|
|
|
|
def test_wb_get_unexist_wb(self):
|
|
self.assertRaises(exceptions.CommandFailed,
|
|
self.mistral, 'workbook-get', params='wb')
|
|
|
|
def test_wb_get_without_param(self):
|
|
self.assertRaises(exceptions.CommandFailed,
|
|
self.mistral, 'workbook-get')
|
|
|
|
def test_wb_create_same_name(self):
|
|
self.mistral('workbook-create', params='wb')
|
|
self.assertRaises(exceptions.CommandFailed,
|
|
self.mistral, 'workbook-create', params='wb')
|
|
|
|
def test_wb_create_with_wrong_path_to_definition(self):
|
|
self.assertRaises(exceptions.CommandFailed,
|
|
self.mistral,
|
|
'workbook-create', params='wb pam pam pam')
|
|
|
|
def test_wb_delete_unexist_wb(self):
|
|
self.assertRaises(exceptions.CommandFailed,
|
|
self.mistral, 'workbook-delete', params='wb')
|
|
|
|
def test_wb_update_unexist_wb(self):
|
|
self.assertRaises(exceptions.CommandFailed,
|
|
self.mistral, 'workbook-update', params='wb pam pam')
|
|
|
|
def test_wb_upload_definition_unexist_wb(self):
|
|
self.assertRaises(exceptions.CommandFailed,
|
|
self.mistral,
|
|
'workbook-upload-definition', params='wb')
|
|
|
|
def test_wb_upload_definition_using_wrong_path(self):
|
|
self.mistral('workbook-create', params='wb')
|
|
self.assertRaises(exceptions.CommandFailed,
|
|
self.mistral,
|
|
'workbook-upload-definition', params='wb param')
|
|
|
|
def test_wb_get_definition_wb_without_definition(self):
|
|
self.mistral('workbook-create', params='wb')
|
|
self.assertRaises(exceptions.CommandFailed,
|
|
self.mistral, 'workbook-get-definition', params='wb')
|
|
|
|
def test_ex_list_unexist_wb(self):
|
|
self.assertRaises(exceptions.CommandFailed,
|
|
self.mistral, 'execution-list', params='wb')
|
|
|
|
def test_ex_create_unexist_wb(self):
|
|
self.assertRaises(exceptions.CommandFailed,
|
|
self.mistral, 'execution-create', params='wb')
|
|
|
|
def test_ex_create_unexist_task(self):
|
|
self.mistral('workbook-create', params='wb')
|
|
self.assertRaises(exceptions.CommandFailed,
|
|
self.mistral,
|
|
'execution-create', params='wb param {}')
|
|
|
|
def test_ex_create_without_context(self):
|
|
self.mistral('workbook-create', params='wb')
|
|
self.assertRaises(exceptions.CommandFailed,
|
|
self.mistral, 'execution-create', params='wb param')
|
|
|
|
def test_ex_create_wrong_context_format(self):
|
|
self.mistral('workbook-create', params='wb')
|
|
self.assertRaises(exceptions.CommandFailed,
|
|
self.mistral,
|
|
'execution-create', params='wb param pam')
|
|
|
|
def test_ex_get_from_nonexist_wb(self):
|
|
self.assertRaises(exceptions.CommandFailed,
|
|
self.mistral, 'execution-get', params='wb id')
|
|
|
|
def test_ex_get_nonexist_execution(self):
|
|
self.mistral('workbook-create', params='wb')
|
|
self.assertRaises(exceptions.CommandFailed,
|
|
self.mistral, 'execution-get', params='wb id')
|
|
|
|
def test_ex_update_set_wrong_state(self):
|
|
self.mistral('workbook-create', params='wb')
|
|
self.mistral('workbook-upload-definition',
|
|
params='"wb" "{0}"'.format(self.wb_def))
|
|
|
|
execution = self.parser.listing(self.mistral(
|
|
'execution-create', params='"wb" "hello" "{}"'))
|
|
exec_id = self.get_value_of_field(execution, 'ID')
|
|
|
|
self.assertRaises(exceptions.CommandFailed,
|
|
self.mistral, 'execution-update',
|
|
params='"wb" "{0}" "OK"'.format(exec_id))
|
|
|
|
def test_task_get_nonexisting_task(self):
|
|
self.mistral('workbook-create', params='wb')
|
|
self.mistral('workbook-upload-definition',
|
|
params='"wb" "{0}"'.format(self.wb_def))
|
|
|
|
self.mistral('execution-create', params='"wb" "hello" "{}"')
|
|
|
|
self.assertRaises(exceptions.CommandFailed,
|
|
self.mistral, 'task-get',
|
|
params='"wb" "hello" "id"')
|