Skipping tests for location 'add', 'replace' on 'queued' images

Two of test cases added for the changes [1] and [2]
have been failing, throwing a webob.exc.HTTPBadRequest due to the
fake store url "http://storeurl.com/container/fake_location_1"
being used by both the failing test cases.
The faking in these tests seem to override the usage of
FakseStoreApi and instead call glance_store.

Since, the 2 tests that are failing are caused due to issues
with the faking and not due to the changes [1] and [2] itself,
for which they were added, this patch proposes to skip the
2 failing tests until they are resolved inorder to prevent
other changes from getting blocked.

[1] https://review.openstack.org/#/c/366995/
[2] https://review.openstack.org/#/c/324012/

Refrence Bug: #1649300

Change-Id: Ib70ce08528ef92d5fb488e4deb5fe82a7f74a634
This commit is contained in:
Dharini Chandrasekar 2016-12-12 18:13:56 +00:00
parent 62ea036a4a
commit 18053e254a
1 changed files with 4 additions and 0 deletions

View File

@ -1570,6 +1570,8 @@ class TestImagesController(base.IsolatedUnitTest):
self.assertEqual(new_location, output.locations[1])
def test_replace_location_possible_on_queued(self):
self.skipTest('This test is intermittently failing at the gate. '
'See bug #1649300')
self.config(show_multiple_locations=True)
self.images = [
_db_fixture('1', owner=TENANT1, checksum=CHKSUM,
@ -1590,6 +1592,8 @@ class TestImagesController(base.IsolatedUnitTest):
self.assertEqual(new_location, output.locations[0])
def test_add_location_possible_on_queued(self):
self.skipTest('This test is intermittently failing at the gate. '
'See bug #1649300')
self.config(show_multiple_locations=True)
self.images = [
_db_fixture('1', owner=TENANT1, checksum=CHKSUM,