e03f8a115d
Current tests do not have good test coverage of existing policies. Either tests for policies do not exist or if they exist then they do not cover the actual negative and positive testing. For Example, if any policy with default rule as admin only then test should verify: - policy check pass with context having admin or server owner - policy check fail with context having non-admin and not server owner As discussed in policy-defaults-refresh, to change the policies with new default roles and scope_type, we need to have the enough testing coverage of existing policy behavior. When we will add the scope_type in policies or new default roles, then these test coverage will be extended to adopt the new changes and also make sure we do not break the existing behavior. This commit covers the testing coverage of existing pause server policies. Partial implement blueprint policy-defaults-refresh Change-Id: I9eb4d7f348481425992713bd5a0351d710d43669
54 lines
2.2 KiB
Python
54 lines
2.2 KiB
Python
# Copyright 2011 OpenStack Foundation
|
|
# Copyright 2013 IBM Corp.
|
|
#
|
|
# 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 nova.api.openstack.compute import pause_server as \
|
|
pause_server_v21
|
|
from nova.tests.unit.api.openstack.compute import admin_only_action_common
|
|
|
|
|
|
class PauseServerTestsV21(admin_only_action_common.CommonTests):
|
|
pause_server = pause_server_v21
|
|
controller_name = 'PauseServerController'
|
|
_api_version = '2.1'
|
|
|
|
def setUp(self):
|
|
super(PauseServerTestsV21, self).setUp()
|
|
self.controller = getattr(self.pause_server, self.controller_name)()
|
|
self.compute_api = self.controller.compute_api
|
|
self.stub_out('nova.api.openstack.compute.pause_server.'
|
|
'PauseServerController',
|
|
lambda *a, **kw: self.controller)
|
|
|
|
def test_pause_unpause(self):
|
|
self._test_actions(['_pause', '_unpause'])
|
|
|
|
def test_actions_raise_on_not_implemented(self):
|
|
for action in ['_pause', '_unpause']:
|
|
self._test_not_implemented_state(action)
|
|
|
|
def test_pause_unpause_with_non_existed_instance(self):
|
|
self._test_actions_with_non_existed_instance(['_pause', '_unpause'])
|
|
|
|
def test_pause_unpause_with_non_existed_instance_in_compute_api(self):
|
|
self._test_actions_instance_not_found_in_compute_api(['_pause',
|
|
'_unpause'])
|
|
|
|
def test_pause_unpause_raise_conflict_on_invalid_state(self):
|
|
self._test_actions_raise_conflict_on_invalid_state(['_pause',
|
|
'_unpause'])
|
|
|
|
def test_actions_with_locked_instance(self):
|
|
self._test_actions_with_locked_instance(['_pause', '_unpause'])
|