From 65aca3d6919a3d31fa360afa01baee5ebff1fe22 Mon Sep 17 00:00:00 2001 From: Linda Wang Date: Thu, 22 Mar 2018 11:51:49 +0000 Subject: Remove test_create_volume_bad_zone JIRA: FUEL-356 Fuel/MCP has set allow_availability_zone_fallback option to True. If the requested Cinder availability zone is unavailable, fall back to the value of default_availability_zone, then storage_availability_zone, instead of failing. Change-Id: I04f45f8435dbdf1113ac6b2c50bf913c1f29cd20 Signed-off-by: Linda Wang --- docs/how-to-use/IntegrationTests.rst | 3 --- snaps/openstack/tests/create_volume_tests.py | 15 --------------- 2 files changed, 18 deletions(-) diff --git a/docs/how-to-use/IntegrationTests.rst b/docs/how-to-use/IntegrationTests.rst index 0cf4fc0..82c2f90 100644 --- a/docs/how-to-use/IntegrationTests.rst +++ b/docs/how-to-use/IntegrationTests.rst @@ -409,9 +409,6 @@ create_volume_tests.py - CreateSimpleVolumeFailureTests | test_create_volume_bad_image | 2 & 3 | Tests to ensure that attempting to create a volume with an| | | | image that does not exist raises a BadRequest exception | +----------------------------------------+---------------+-----------------------------------------------------------+ -| test_create_volume_bad_zone | 2 & 3 | Tests to ensure that attempting to create a volume with an| -| | | invalid availability zone raises a BadRequest exception | -+----------------------------------------+---------------+-----------------------------------------------------------+ create_volume_tests.py - CreateVolumeWithTypeTests -------------------------------------------------- diff --git a/snaps/openstack/tests/create_volume_tests.py b/snaps/openstack/tests/create_volume_tests.py index 4392245..3c9a346 100644 --- a/snaps/openstack/tests/create_volume_tests.py +++ b/snaps/openstack/tests/create_volume_tests.py @@ -282,21 +282,6 @@ class CreateSimpleVolumeFailureTests(OSIntegrationTestCase): with self.assertRaises(BadRequest): self.volume_creator.create(block=True) - def test_create_volume_bad_zone(self): - """ - Tests the creation of an OpenStack volume with an availability zone - that does not exist to ensure it raises a BadRequest exception. - """ - volume_settings = VolumeConfig( - name=self.__class__.__name__ + '-' + str(self.guid), - availability_zone='foo') - - # Create Volume - self.volume_creator = OpenStackVolume(self.os_creds, volume_settings) - - with self.assertRaises(BadRequest): - self.volume_creator.create(block=True) - class CreateVolumeWithTypeTests(OSIntegrationTestCase): """ -- cgit 1.2.3-korg