Files
senlin-tempest-plugin/senlin_tempest_plugin/tests/api/events/test_event_show.py
Duc Truong 95d0f78e93 Fix senlin tempest plugin to work properly
* moved testfiles into tests subdirectory
* fix basepath for plugin
* fix entrypoint
* provide steps in README to install and use senlin-tempest-plugin
* add config option when creating clusters to test node naming
* removed test drivers
* fix various test cases
* Replace deprecated aliases 'os'/'os_adm' with 'os_primary'/'os_admin'

Change-Id: I7551783a4e9b2194559c3a400594227b2d9c26b9
2018-01-17 20:50:22 -08:00

44 lines
1.7 KiB
Python

# 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 tempest.lib import decorators
from senlin_tempest_plugin.common import utils
from senlin_tempest_plugin.tests.api import base
class TestEventShow(base.BaseSenlinAPITest):
def setUp(self):
super(TestEventShow, self).setUp()
profile_id = utils.create_a_profile(self)
self.addCleanup(utils.delete_a_profile, self, profile_id)
self.cluster_id = utils.create_a_cluster(self, profile_id)
self.addCleanup(utils.delete_a_cluster, self, self.cluster_id)
@decorators.idempotent_id('b23490a7-0ae2-44be-a1f9-9f2d82dfe6aa')
def test_event_show(self):
# Get cluster events
events = self.client.list_objs('events',
{'oid': self.cluster_id})['body']
res = self.client.get_obj('events', events[0]['id'])
# Verify resp of event list API
self.assertEqual(200, res['status'])
self.assertIsNone(res['location'])
self.assertIsNotNone(res['body'])
event = res['body']
for key in ['action', 'cluster_id', 'id', 'level', 'oid',
'oname', 'otype', 'project', 'status',
'status_reason', 'timestamp', 'user']:
self.assertIn(key, event)