Merge "Move test test_list_agents_non_admin to non-admin dir"
This commit is contained in:
@@ -48,11 +48,6 @@ class AgentManagementTestJSON(base.BaseAdminNetworkTest):
|
||||
agent.pop('configurations', None)
|
||||
self.assertIn(self.agent, agents)
|
||||
|
||||
@decorators.idempotent_id('e335be47-b9a1-46fd-be30-0874c0b751e6')
|
||||
def test_list_agents_non_admin(self):
|
||||
body = self.agents_client.list_agents()
|
||||
self.assertEmpty(body["agents"])
|
||||
|
||||
@decorators.idempotent_id('869bc8e8-0fda-4a30-9b71-f8a7cf58ca9f')
|
||||
def test_show_agent(self):
|
||||
body = self.admin_agents_client.show_agent(self.agent['id'])
|
||||
@@ -95,4 +90,4 @@ class AgentManagementTestJSON(base.BaseAdminNetworkTest):
|
||||
non_existent_id = data_utils.rand_uuid()
|
||||
self.assertRaises(
|
||||
lib_exc.NotFound,
|
||||
self.agents_client.delete_agent, non_existent_id)
|
||||
self.admin_agents_client.delete_agent, non_existent_id)
|
||||
|
||||
@@ -0,0 +1,28 @@
|
||||
# Copyright 2018 OpenStack Foundation
|
||||
# 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.network import base
|
||||
from tempest.lib import decorators
|
||||
|
||||
|
||||
class AgentManagementNegativeTest(base.BaseNetworkTest):
|
||||
|
||||
@decorators.idempotent_id('e335be47-b9a1-46fd-be30-0874c0b751e6')
|
||||
@decorators.attr(type=['negative'])
|
||||
def test_list_agents_non_admin(self):
|
||||
"""Validate that non-admin user cannot list agents."""
|
||||
# Listing agents requires admin_only permissions.
|
||||
body = self.agents_client.list_agents()
|
||||
self.assertEmpty(body["agents"])
|
||||
Reference in New Issue
Block a user