90bb67ffb6
In some part in the code we import objects. In the Openstack style guidelines they recommend to import only modules. http://docs.openstack.org/developer/hacking/#imports Change-Id: I58b2dab1a46128893648630edba615e2592040ac
103 lines
4.7 KiB
Python
103 lines
4.7 KiB
Python
# Copyright 2016 Internap.
|
|
#
|
|
# 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 uuid import uuid4
|
|
|
|
from hamcrest import assert_that
|
|
from hamcrest import equal_to
|
|
from hamcrest import has_entry
|
|
from hamcrest import has_item
|
|
|
|
from base_api_volume_testcase import BaseApiVolumeTestCase
|
|
from builders import messages
|
|
|
|
|
|
class ApiVolumeTest(BaseApiVolumeTestCase):
|
|
def test_volume_detach(self):
|
|
instance_create_query = "{url}/project/{project}/instance"
|
|
project_id = "my_test_project_id"
|
|
instance_id = str(uuid4())
|
|
instance_data = {'id': instance_id,
|
|
'created_at': '2016-01-01T18:30:00Z',
|
|
'name': 'integration_test_instance_FlavorA',
|
|
'flavor': 'FlavorA',
|
|
'os_type': 'Linux',
|
|
'os_distro': 'Ubuntu',
|
|
'os_version': '14.04'}
|
|
|
|
response = self.almanachHelper.post(url=instance_create_query, data=instance_data, project=project_id)
|
|
assert_that(response.status_code, equal_to(201))
|
|
|
|
volume_create_query = "{url}/project/{project}/volume"
|
|
project_id = "my_test_project_id"
|
|
volume_id = str(uuid4())
|
|
volume_data = {'volume_id': volume_id,
|
|
'attached_to': [instance_id],
|
|
'volume_name': messages.DEFAULT_VOLUME_NAME,
|
|
'volume_type': messages.DEFAULT_VOLUME_TYPE,
|
|
'start': '2016-01-01T18:30:30Z',
|
|
'size': 100}
|
|
|
|
response = self.almanachHelper.post(url=volume_create_query, data=volume_data, project=project_id)
|
|
assert_that(response.status_code, equal_to(201))
|
|
|
|
detach_data = {'date': '2016-01-01T18:40:00Z',
|
|
'attachments': []}
|
|
|
|
volume_detach_query = "{url}/volume/{volume_id}/detach"
|
|
response = self.almanachHelper.put(url=volume_detach_query, data=detach_data, volume_id=volume_id)
|
|
assert_that(response.status_code, equal_to(200))
|
|
|
|
list_query = "{url}/project/{project}/volumes?start={start}&end={end}"
|
|
response = self.almanachHelper.get(url=list_query,
|
|
project=project_id,
|
|
start="2016-01-01 18:39:00.000",
|
|
end="2016-01-01 18:41:00.000")
|
|
|
|
assert_that(response.status_code, equal_to(200))
|
|
assert_that(response.json(), has_item({'entity_id': volume_id,
|
|
'attached_to': detach_data['attachments'],
|
|
'end': None,
|
|
'name': volume_data['volume_name'],
|
|
'entity_type': 'volume',
|
|
'last_event': '2016-01-01 18:40:00+00:00',
|
|
'volume_type': messages.DEFAULT_VOLUME_TYPE,
|
|
'start': '2016-01-01 18:40:00+00:00',
|
|
'project_id': project_id,
|
|
'size': volume_data['size']}))
|
|
|
|
def test_volume_detach_bad_date_format(self):
|
|
volume_detach_query = "{url}/volume/my_test_volume_id/detach"
|
|
attach_data = {'date': 'A_BAD_DATE',
|
|
'attachments': ['AN_INSTANCE']}
|
|
|
|
response = self.almanachHelper.put(url=volume_detach_query, data=attach_data)
|
|
assert_that(response.status_code, equal_to(400))
|
|
assert_that(response.json(), has_entry(
|
|
'error',
|
|
'The provided date has an invalid format. Format should be of yyyy-mm-ddThh:mm:ss.msZ, '
|
|
'ex: 2015-01-31T18:24:34.1523Z'
|
|
))
|
|
|
|
def test_volume_detach_missing_param(self):
|
|
volume_detach_query = "{url}/volume/my_test_volume_id/detach"
|
|
attach_data = {'attachments': ['AN_INSTANCE']}
|
|
|
|
response = self.almanachHelper.put(url=volume_detach_query, data=attach_data)
|
|
assert_that(response.status_code, equal_to(400))
|
|
assert_that(response.json(), has_entry(
|
|
"error",
|
|
"The 'date' param is mandatory for the request you have made."
|
|
))
|