This change set moves the negative tests in tempest/api/compute/servers/test_instance_actions to a new file test_instance_actions_negative Also removes usage of modules directly. Note: HACKING.rst The second requirement is that all negative tests must be added to a negative test file. If such a file doesn't exist for the particular resource being tested a new test file should be added Change-Id: I6fd392e3fca84f7daeb3769ff59a8d5dadb900c3
51 lines
1.9 KiB
Python
51 lines
1.9 KiB
Python
# vim: tabstop=4 shiftwidth=4 softtabstop=4
|
|
|
|
# Copyright 2013 NEC Corporation
|
|
# 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.compute import base
|
|
from tempest.common.utils import data_utils
|
|
from tempest import exceptions
|
|
from tempest import test
|
|
|
|
|
|
class InstanceActionsNegativeTestJSON(base.BaseV2ComputeTest):
|
|
_interface = 'json'
|
|
|
|
@classmethod
|
|
def setUpClass(cls):
|
|
super(InstanceActionsNegativeTestJSON, cls).setUpClass()
|
|
cls.client = cls.servers_client
|
|
resp, server = cls.create_test_server(wait_until='ACTIVE')
|
|
cls.server_id = server['id']
|
|
|
|
@test.attr(type=['negative', 'gate'])
|
|
def test_list_instance_actions_non_existent_server(self):
|
|
# List actions of the non-existent server id
|
|
non_existent_server_id = data_utils.rand_uuid()
|
|
self.assertRaises(exceptions.NotFound,
|
|
self.client.list_instance_actions,
|
|
non_existent_server_id)
|
|
|
|
@test.attr(type=['negative', 'gate'])
|
|
def test_get_instance_action_invalid_request(self):
|
|
# Get the action details of the provided server with invalid request
|
|
self.assertRaises(exceptions.NotFound, self.client.get_instance_action,
|
|
self.server_id, '999')
|
|
|
|
|
|
class InstanceActionsNegativeTestXML(InstanceActionsNegativeTestJSON):
|
|
_interface = 'xml'
|