Currently compute limits and migration client returns Response by removing top key from Response. For example- return service_client.ResponseBody(resp, body['limits']) As service clients are in direction to move to Tempest-lib, all service clients should return Response without any truncation. One good example is Resource pagination links which are lost with current way of return value. Resource pagination links are present in parallel (not inside) to top key of Response. This patch makes compute limits and migration client to return complete Response body. Change-Id: Ice3665e91ff34409f6f105303213303d1fca1816 Implements: blueprint method-return-value-and-move-service-clients-to-lib
67 lines
2.8 KiB
Python
67 lines
2.8 KiB
Python
# Copyright 2012 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.
|
|
|
|
import base64
|
|
from tempest_lib import exceptions as lib_exc
|
|
|
|
from tempest.api.compute import base
|
|
from tempest import test
|
|
|
|
|
|
class ServerPersonalityTestJSON(base.BaseV2ComputeTest):
|
|
|
|
@classmethod
|
|
def setup_clients(cls):
|
|
super(ServerPersonalityTestJSON, cls).setup_clients()
|
|
cls.client = cls.servers_client
|
|
cls.user_client = cls.limits_client
|
|
|
|
@test.idempotent_id('176cd8c9-b9e8-48ee-a480-180beab292bf')
|
|
def test_personality_files_exceed_limit(self):
|
|
# Server creation should fail if greater than the maximum allowed
|
|
# number of files are injected into the server.
|
|
file_contents = 'This is a test file.'
|
|
personality = []
|
|
limits = self.user_client.show_limits()['limits']
|
|
max_file_limit = limits['absolute']['maxPersonality']
|
|
if max_file_limit == -1:
|
|
raise self.skipException("No limit for personality files")
|
|
for i in range(0, int(max_file_limit) + 1):
|
|
path = 'etc/test' + str(i) + '.txt'
|
|
personality.append({'path': path,
|
|
'contents': base64.b64encode(file_contents)})
|
|
# A 403 Forbidden or 413 Overlimit (old behaviour) exception
|
|
# will be raised when out of quota
|
|
self.assertRaises((lib_exc.Forbidden, lib_exc.OverLimit),
|
|
self.create_test_server, personality=personality)
|
|
|
|
@test.idempotent_id('52f12ee8-5180-40cc-b417-31572ea3d555')
|
|
def test_can_create_server_with_max_number_personality_files(self):
|
|
# Server should be created successfully if maximum allowed number of
|
|
# files is injected into the server during creation.
|
|
file_contents = 'This is a test file.'
|
|
limits = self.user_client.show_limits()['limits']
|
|
max_file_limit = limits['absolute']['maxPersonality']
|
|
if max_file_limit == -1:
|
|
raise self.skipException("No limit for personality files")
|
|
person = []
|
|
for i in range(0, int(max_file_limit)):
|
|
path = 'etc/test' + str(i) + '.txt'
|
|
person.append({
|
|
'path': path,
|
|
'contents': base64.b64encode(file_contents),
|
|
})
|
|
self.create_test_server(personality=person)
|