
Allows listing, showing and deleting of user messages. Change-Id: I5ffb840a271c518f62ee1accfd8e20a97f45594d Partially-implements: blueprint user-messages Depends-On: Ia0cc524e0bfb2ca5e495e575e17e9911c746690b
72 lines
2.7 KiB
Python
72 lines
2.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.
|
|
|
|
import ddt
|
|
|
|
from manilaclient.tests.functional import base
|
|
|
|
|
|
@ddt.ddt
|
|
class MessagesReadOnlyTest(base.BaseTestCase):
|
|
|
|
@ddt.data(
|
|
("admin", "2.37"),
|
|
("user", "2.37"),
|
|
)
|
|
@ddt.unpack
|
|
def test_message_list(self, role, microversion):
|
|
self.skip_if_microversion_not_supported(microversion)
|
|
self.clients[role].manila("message-list", microversion=microversion)
|
|
|
|
|
|
@ddt.ddt
|
|
class MessagesReadWriteTest(base.BaseTestCase):
|
|
|
|
@classmethod
|
|
def setUpClass(cls):
|
|
super(MessagesReadWriteTest, cls).setUpClass()
|
|
cls.message = cls.create_message(cleanup_in_class=True)
|
|
|
|
def test_list_messages(self):
|
|
self.skip_if_microversion_not_supported('2.37')
|
|
messages = self.admin_client.list_messages()
|
|
self.assertTrue(any(m['ID'] is not None for m in messages))
|
|
self.assertTrue(any(m['User Message'] is not None for m in messages))
|
|
self.assertTrue(any(m['Resource ID'] is not None for m in messages))
|
|
self.assertTrue(any(m['Action ID'] is not None for m in messages))
|
|
self.assertTrue(any(m['Detail ID'] is not None for m in messages))
|
|
self.assertTrue(any(m['Resource Type'] is not None for m in messages))
|
|
|
|
@ddt.data(
|
|
'id', 'action_id', 'resource_id', 'action_id', 'detail_id',
|
|
'resource_type', 'created_at', 'action_id,detail_id,resource_id',
|
|
)
|
|
def test_list_share_type_select_column(self, columns):
|
|
self.skip_if_microversion_not_supported('2.37')
|
|
self.admin_client.list_messages(columns=columns)
|
|
|
|
def test_get_message(self):
|
|
self.skip_if_microversion_not_supported('2.37')
|
|
message = self.admin_client.get_message(self.message['ID'])
|
|
expected_keys = (
|
|
'id', 'action_id', 'resource_id', 'action_id', 'detail_id',
|
|
'resource_type', 'created_at', 'created_at',
|
|
)
|
|
for key in expected_keys:
|
|
self.assertIn(key, message)
|
|
|
|
def test_delete_message(self):
|
|
self.skip_if_microversion_not_supported('2.37')
|
|
message = self.create_message(cleanup_in_class=False)
|
|
self.admin_client.delete_message(message['ID'])
|
|
self.admin_client.wait_for_message_deletion(message['ID'])
|