manila/contrib/tempest/tempest/api/share/admin/test_admin_actions.py

77 lines
3.5 KiB
Python

# Copyright 2014 Mirantis Inc.
# All Rights Reserved.
#
# 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.api.share import base
from tempest import test
class AdminActionsTest(base.BaseSharesAdminTest):
@classmethod
@test.safe_setup
def setUpClass(cls):
super(AdminActionsTest, cls).setUpClass()
cls.states = ["error", "available"]
cls.bad_status = "error_deleting"
__, cls.sh = cls.create_share()
__, cls.sn = cls.create_snapshot_wait_for_active(cls.sh["id"])
@test.attr(type=["gate", ])
def test_reset_share_state(self):
for status in self.states:
resp, __ = self.shares_client.reset_state(self.sh["id"],
status=status)
self.assertIn(int(resp["status"]), test.HTTP_SUCCESS)
self.shares_client.wait_for_share_status(self.sh["id"], status)
@test.attr(type=["gate", ])
def test_reset_snapshot_state_to_error(self):
for status in self.states:
resp, __ = self.shares_client.reset_state(self.sn["id"],
s_type="snapshots",
status=status)
self.assertIn(int(resp["status"]), test.HTTP_SUCCESS)
self.shares_client.wait_for_snapshot_status(self.sn["id"], status)
@test.attr(type=["gate", ])
def test_force_delete_share(self):
__, share = self.create_share()
# Change status from 'available' to 'error_deleting'
__, __ = self.shares_client.reset_state(share["id"],
status=self.bad_status)
# Check that status was changed
__, check_status = self.shares_client.get_share(share["id"])
self.assertEqual(check_status["status"], self.bad_status)
# Share with status 'error_deleting' should be deleted
resp, __ = self.shares_client.force_delete(share["id"])
self.assertIn(int(resp["status"]), test.HTTP_SUCCESS)
self.shares_client.wait_for_resource_deletion(share_id=share["id"])
@test.attr(type=["gate", ])
def test_force_delete_snapshot(self):
__, sn = self.create_snapshot_wait_for_active(self.sh["id"])
# Change status from 'available' to 'error_deleting'
__, __ = self.shares_client.reset_state(sn["id"],
s_type="snapshots",
status=self.bad_status)
# Check that status was changed
__, check_status = self.shares_client.get_snapshot(sn["id"])
self.assertEqual(check_status["status"], self.bad_status)
# Snapshot with status 'error_deleting' should be deleted
resp, __ = self.shares_client.force_delete(sn["id"],
s_type="snapshots")
self.assertIn(int(resp["status"]), test.HTTP_SUCCESS)
self.shares_client.wait_for_resource_deletion(snapshot_id=sn["id"])