# 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, has_item, equal_to, has_entry from base_api_testcase import BaseApiTestCase class ApiAlmanachTest(BaseApiTestCase): def test_the_info_page(self): response = self.almanachHelper.get(url="{url}/info") self.assertEqual(response.status_code, 200) def test_list_entities_unauthorized(self): list_query = "{url}/project/{project}/instances?start={start}&end={end}" response = self.almanachHelper.get(url=list_query, headers={'Accept': 'application/json'}, project="e455d65807cb4796bd72abecdc8a76ba", start="2014-02-28 18:50:00.000", end="2014-03-21 22:00:00.000") assert_that(response.status_code, equal_to(401)) def test_instance_create_missing_type_name_param(self): volume_type_query = "{url}/volume_type" volume_type_id = str(uuid4()) data = dict( type_id=volume_type_id ) response = self.almanachHelper.post(url=volume_type_query, data=data) assert_that(response.status_code, equal_to(400)) assert_that(response.json(), has_entry( "error", "The 'type_name' param is mandatory for the request you have made." )) def test_instance_create(self): instance_create_query = "{url}/project/{project}/instance" project_id = "my_test_project_id" instance_id = str(uuid4()) 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=data, project=project_id) assert_that(response.status_code, equal_to(201)) list_query = "{url}/project/{project}/instances?start={start}&end={end}" response = self.almanachHelper.get(url=list_query, project=project_id, start="2016-01-01 18:29:00.000", end="2016-01-01 18:31:00.000") assert_that(response.status_code, equal_to(200)) assert_that(response.json(), has_item({'entity_id': instance_id, 'end': None, 'entity_type': 'instance', 'flavor': data['flavor'], 'last_event': '2016-01-01 18:30:00+00:00', 'name': data['name'], 'os': { 'distro': data['os_distro'], 'os_type': data['os_type'], 'version': data['os_version'] }, 'project_id': project_id, 'start': '2016-01-01 18:30:00+00:00', 'metadata': {}})) def test_instance_create_bad_date_format(self): instance_create_query = "{url}/project/{project}/instance" project_id = "my_test_project_id" instance_id = str(uuid4()) data = {'id': instance_id, 'created_at': 'A_BAD_DATE_FORMAT', '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=data, project=project_id) 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_instance_create_missing_flavor_param(self): instance_create_query = "{url}/project/{project}/instance" project_id = "my_test_project_id" instance_id = str(uuid4()) data = {'id': instance_id, 'created_at': '2016-01-01T18:30:00Z', 'name': 'integration_test_instance_FlavorA', 'os_type': 'Linux', 'os_distro': 'Ubuntu', 'os_version': '14.04'} response = self.almanachHelper.post(url=instance_create_query, data=data, project=project_id) assert_that(response.status_code, equal_to(400)) assert_that(response.json(), has_entry( "error", "The 'flavor' param is mandatory for the request you have made." )) def test_instance_delete(self): instance_create_query = "{url}/project/{project}/instance" project_id = "my_test_project_id" instance_id = str(uuid4()) create_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=create_data, project=project_id) assert_that(response.status_code, equal_to(201)) instance_delete_query = "{url}/instance/{instance_id}" delete_data = {'date': '2016-01-01T18:50:00Z'} response = self.almanachHelper.delete(url=instance_delete_query, data=delete_data, instance_id=instance_id) assert_that(response.status_code, equal_to(202)) list_query = "{url}/project/{project}/instances?start={start}&end={end}" response = self.almanachHelper.get(url=list_query, project=project_id, start="2016-01-01 18:49:00.000", end="2016-01-01 18:51:00.000") assert_that(response.status_code, equal_to(200)) assert_that(response.json(), has_item({'entity_id': instance_id, 'end': '2016-01-01 18:50:00+00:00', 'entity_type': 'instance', 'flavor': create_data['flavor'], 'last_event': '2016-01-01 18:50:00+00:00', 'name': create_data['name'], 'os': { 'distro': create_data['os_distro'], 'os_type': create_data['os_type'], 'version': create_data['os_version'] }, 'project_id': project_id, 'start': '2016-01-01 18:30:00+00:00', 'metadata': {}})) def test_instance_delete_bad_date_format(self): instance_create_query = "{url}/project/{project}/instance" project_id = str(uuid4()) instance_id = str(uuid4()) 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=data, project=project_id) assert_that(response.status_code, equal_to(201)) instance_delete_query = "{url}/instance/{instance_id}" delete_data = {'date': 'A_BAD_DATE'} response = self.almanachHelper.delete(url=instance_delete_query, data=delete_data, instance_id=instance_id) 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_instance_delete_missing_param(self): instance_delete_query = "{url}/instance/{instance_id}" response = self.almanachHelper.delete(url=instance_delete_query, data=dict(), instance_id="my_instance_id") 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." )) def test_instance_resize(self): instance_create_query = "{url}/project/{project}/instance" project_id = "my_test_project_id" instance_id = str(uuid4()) create_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=create_data, project=project_id) assert_that(response.status_code, equal_to(201)) instance_resize_query = "{url}/instance/{instance_id}/resize" resize_data = {'date': '2016-01-01T18:40:00Z', 'flavor': 'FlavorC'} response = self.almanachHelper.put(url=instance_resize_query, data=resize_data, instance_id=instance_id) assert_that(response.status_code, equal_to(200)) list_query = "{url}/project/{project}/instances?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': instance_id, 'end': None, 'entity_type': 'instance', 'flavor': resize_data['flavor'], 'last_event': '2016-01-01 18:40:00+00:00', 'name': create_data['name'], 'os': { 'distro': create_data['os_distro'], 'os_type': create_data['os_type'], 'version': create_data['os_version'] }, 'project_id': project_id, 'start': '2016-01-01 18:40:00+00:00', 'metadata': {}})) def test_instance_resize_bad_date_format(self): instance_resize_query = "{url}/instance/{instance_id}/resize" resize_data = {'date': 'A_BAD_DATE', 'flavor': 'FlavorC'} response = self.almanachHelper.put(url=instance_resize_query, data=resize_data, instance_id="my_instance_id") 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_instance_resize_missing_param(self): instance_resize_query = "{url}/instance/{instance_id}/resize" resize_data = {'flavor': 'FlavorC'} response = self.almanachHelper.put(url=instance_resize_query, data=resize_data, instance_id="my_instance_id") 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." )) def test_instance_rebuild(self): instance_create_query = "{url}/project/{project}/instance" project_id = "my_test_project_id" instance_id = str(uuid4()) create_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': '12.04'} response = self.almanachHelper.post(url=instance_create_query, data=create_data, project=project_id) assert_that(response.status_code, equal_to(201)) update_instance_rebuild_query = "{url}/instance/{instance_id}/rebuild" rebuild_data = { 'distro': 'Ubuntu', 'version': '14.04', 'os_type': 'Linux', 'rebuild_date': '2016-01-01T18:40:00Z' } response = self.almanachHelper.put(url=update_instance_rebuild_query, data=rebuild_data, instance_id=instance_id) assert_that(response.status_code, equal_to(200)) list_query = "{url}/project/{project}/instances?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': instance_id, 'end': None, 'entity_type': 'instance', 'flavor': create_data['flavor'], 'last_event': '2016-01-01 18:40:00+00:00', 'name': create_data['name'], 'os': { 'distro': create_data['os_distro'], 'os_type': create_data['os_type'], 'version': rebuild_data['version'] }, 'project_id': project_id, 'start': '2016-01-01 18:40:00+00:00', 'metadata': {}})) def test_instance_rebuild_bad_date_format(self): update_instance_rebuild_query = "{url}/instance/{instance_id}/rebuild" instance_id = str(uuid4()) rebuild_data = { 'distro': 'Ubuntu', 'version': '14.04', 'os_type': 'Linux', 'rebuild_date': 'A_BAD_DATE' } response = self.almanachHelper.put(url=update_instance_rebuild_query, data=rebuild_data, instance_id=instance_id) 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_instance_rebuild_missing_param(self): update_instance_rebuild_query = "{url}/instance/{instance_id}/rebuild" instance_id = str(uuid4()) rebuild_data = { 'distro': 'Ubuntu', 'os_type': 'Linux', 'rebuild_date': 'A_BAD_DATE' } response = self.almanachHelper.put(url=update_instance_rebuild_query, data=rebuild_data, instance_id=instance_id) assert_that(response.status_code, equal_to(400)) assert_that(response.json(), has_entry( "error", "The 'version' param is mandatory for the request you have made." ))