Normalize skip bug format.
This commit changes all the bug formats in skip decorators to conform to a single format: Bug #\d+ Change-Id: Ifd1927837d433401c9b8cb80ca341f2e8d1f31d8
This commit is contained in:
parent
5284e257bf
commit
770e5a44b4
cli/simple_read_only
tempest/tests
compute
identity/admin
object_storage
@ -73,7 +73,7 @@ class SimpleReadOnlyNovaClientTest(cli.ClientTestBase):
|
||||
def test_admin_dns_domains(self):
|
||||
self.nova('dns-domains')
|
||||
|
||||
@testtools.skip("Test needs parameters, Bug: 1157349")
|
||||
@testtools.skip("Test needs parameters, Bug #1157349")
|
||||
def test_admin_dns_list(self):
|
||||
self.nova('dns-list')
|
||||
|
||||
@ -111,7 +111,7 @@ class SimpleReadOnlyNovaClientTest(cli.ClientTestBase):
|
||||
def test_admin_image_list(self):
|
||||
self.nova('image-list')
|
||||
|
||||
@testtools.skip("Test needs parameters, Bug: 1157349")
|
||||
@testtools.skip("Test needs parameters, Bug #1157349")
|
||||
def test_admin_interface_list(self):
|
||||
self.nova('interface-list')
|
||||
|
||||
@ -136,7 +136,7 @@ class SimpleReadOnlyNovaClientTest(cli.ClientTestBase):
|
||||
def test_admin_secgroup_list(self):
|
||||
self.nova('secgroup-list')
|
||||
|
||||
@testtools.skip("Test needs parameters, Bug: 1157349")
|
||||
@testtools.skip("Test needs parameters, Bug #1157349")
|
||||
def test_admin_secgroup_list_rules(self):
|
||||
self.nova('secgroup-list-rules')
|
||||
|
||||
|
@ -108,7 +108,7 @@ class ImagesTestJSON(base.BaseComputeTest):
|
||||
self.assertRaises(exceptions.Duplicate, self.client.create_image,
|
||||
server['id'], snapshot_name)
|
||||
|
||||
@testtools.skip("Until Bug 1039739 is fixed")
|
||||
@testtools.skip("Until Bug #1039739 is fixed")
|
||||
@attr(type='negative')
|
||||
def test_create_image_when_server_is_rebooting(self):
|
||||
# Return error when creating an image of server that is rebooting
|
||||
|
@ -58,7 +58,7 @@ class ImagesOneServerTestJSON(base.BaseComputeTest):
|
||||
cls.alt_client = cls.alt_manager.images_client
|
||||
|
||||
@attr(type='negative')
|
||||
@testtools.skip("Until Bug 1006725 is fixed")
|
||||
@testtools.skip("Until Bug #1006725 is fixed")
|
||||
def test_create_image_specify_multibyte_character_image_name(self):
|
||||
# Return an error if the image name has multi-byte characters
|
||||
snapshot_name = rand_name('\xef\xbb\xbf')
|
||||
@ -67,7 +67,7 @@ class ImagesOneServerTestJSON(base.BaseComputeTest):
|
||||
snapshot_name)
|
||||
|
||||
@attr(type='negative')
|
||||
@testtools.skip("Until Bug 1005423 is fixed")
|
||||
@testtools.skip("Until Bug #1005423 is fixed")
|
||||
def test_create_image_specify_invalid_metadata(self):
|
||||
# Return an error when creating image with invalid metadata
|
||||
snapshot_name = rand_name('test-snap-')
|
||||
@ -76,7 +76,7 @@ class ImagesOneServerTestJSON(base.BaseComputeTest):
|
||||
self.server['id'], snapshot_name, meta)
|
||||
|
||||
@attr(type='negative')
|
||||
@testtools.skip("Until Bug 1005423 is fixed")
|
||||
@testtools.skip("Until Bug #1005423 is fixed")
|
||||
def test_create_image_specify_metadata_over_limits(self):
|
||||
# Return an error when creating image with meta data over 256 chars
|
||||
snapshot_name = rand_name('test-snap-')
|
||||
|
@ -87,7 +87,7 @@ class ServerActionsTestJSON(base.BaseComputeTest):
|
||||
self.assertGreater(new_boot_time, boot_time)
|
||||
|
||||
@attr(type='smoke')
|
||||
@testtools.skip('Until bug 1014647 is dealt with.')
|
||||
@testtools.skip('Until Bug #1014647 is dealt with.')
|
||||
def test_reboot_server_soft(self):
|
||||
# The server should be signaled to reboot gracefully
|
||||
if self.run_ssh:
|
||||
@ -239,7 +239,7 @@ class ServerActionsTestJSON(base.BaseComputeTest):
|
||||
'!@#$%^&*()', 10)
|
||||
|
||||
@attr(type='positive')
|
||||
@testtools.skip('Until tempest bug 1014683 is fixed.')
|
||||
@testtools.skip('Until tempest Bug #1014683 is fixed.')
|
||||
def test_get_console_output_server_id_in_reboot_status(self):
|
||||
# Positive test:Should be able to GET the console output
|
||||
# for a given server_id in reboot status
|
||||
|
@ -123,7 +123,7 @@ class ServerRescueTestJSON(base.BaseComputeTest):
|
||||
self.servers_client.wait_for_server_status(self.server_id, 'ACTIVE')
|
||||
|
||||
@attr(type='negative')
|
||||
@testtools.skip("Skipped until Bug:1126163 is resolved")
|
||||
@testtools.skip("Skipped until Bug #1126163 is resolved")
|
||||
def test_rescued_vm_reboot(self):
|
||||
self.assertRaises(exceptions.BadRequest, self.servers_client.reboot,
|
||||
self.rescue_id, 'HARD')
|
||||
@ -136,7 +136,7 @@ class ServerRescueTestJSON(base.BaseComputeTest):
|
||||
self.image_ref_alt)
|
||||
|
||||
@attr(type='positive')
|
||||
@testtools.skip("Skipped due to Bug:1126187")
|
||||
@testtools.skip("Skipped due to Bug #1126187")
|
||||
def test_rescued_vm_attach_volume(self):
|
||||
client = self.volumes_extensions_client
|
||||
|
||||
@ -165,7 +165,7 @@ class ServerRescueTestJSON(base.BaseComputeTest):
|
||||
self.servers_client.wait_for_server_status(self.server_id, 'ACTIVE')
|
||||
|
||||
@attr(type='positive')
|
||||
@testtools.skip("Skipped until Bug:1126187 is resolved")
|
||||
@testtools.skip("Skipped until Bug #1126187 is resolved")
|
||||
def test_rescued_vm_detach_volume(self):
|
||||
# Attach the volume to the server
|
||||
self.servers_client.attach_volume(self.server_id,
|
||||
@ -217,7 +217,7 @@ class ServerRescueTestJSON(base.BaseComputeTest):
|
||||
self.servers_client.wait_for_server_status(self.server_id, 'ACTIVE')
|
||||
|
||||
@attr(type='positive')
|
||||
@testtools.skip("Skipped until Bug: 1126257 is resolved")
|
||||
@testtools.skip("Skipped until Bug #1126257 is resolved")
|
||||
def test_rescued_vm_add_remove_security_group(self):
|
||||
#Add Security group
|
||||
resp, body = self.servers_client.add_security_group(self.server_id,
|
||||
|
@ -77,7 +77,7 @@ class UsersTestJSON(base.BaseIdentityAdminTest):
|
||||
self.data.tenant['id'], self.data.test_email)
|
||||
|
||||
@attr(type='negative')
|
||||
@testtools.skip("Until Bug 999084 is fixed")
|
||||
@testtools.skip("Until Bug #999084 is fixed")
|
||||
def test_create_user_with_empty_password(self):
|
||||
# User with an empty password should not be created
|
||||
self.data.setup_test_tenant()
|
||||
@ -86,7 +86,7 @@ class UsersTestJSON(base.BaseIdentityAdminTest):
|
||||
self.alt_email)
|
||||
|
||||
@attr(type='nagative')
|
||||
@testtools.skip("Until Bug 999084 is fixed")
|
||||
@testtools.skip("Until Bug #999084 is fixed")
|
||||
def test_create_user_with_long_password(self):
|
||||
# User having password exceeding max length should not be created
|
||||
self.data.setup_test_tenant()
|
||||
@ -95,7 +95,7 @@ class UsersTestJSON(base.BaseIdentityAdminTest):
|
||||
self.alt_email)
|
||||
|
||||
@attr(type='negative')
|
||||
@testtools.skip("Until Bug 999084 is fixed")
|
||||
@testtools.skip("Until Bug #999084 is fixed")
|
||||
def test_create_user_with_invalid_email_format(self):
|
||||
# Email format should be validated while creating a user
|
||||
self.data.setup_test_tenant()
|
||||
|
@ -61,7 +61,7 @@ class ContainerSyncTest(base.BaseObjectTest):
|
||||
#Attempt to delete the container
|
||||
resp, _ = client[0].delete_container(cont_name)
|
||||
|
||||
@testtools.skip('Until Bug 1093743 is resolved.')
|
||||
@testtools.skip('Until Bug #1093743 is resolved.')
|
||||
@attr(type='positive')
|
||||
def test_container_synchronization(self):
|
||||
#Container to container synchronization
|
||||
|
@ -55,7 +55,7 @@ class ObjectExpiryTest(base.BaseObjectTest):
|
||||
#Attempt to delete the container
|
||||
resp, _ = cls.container_client.delete_container(cls.container_name)
|
||||
|
||||
@testtools.skip('Until bug 1069849 is resolved.')
|
||||
@testtools.skip('Until Bug #1069849 is resolved.')
|
||||
@attr(type='regression')
|
||||
def test_get_object_after_expiry_time(self):
|
||||
# GET object after expiry time
|
||||
|
@ -590,7 +590,7 @@ class ObjectTest(base.BaseObjectTest):
|
||||
self.container_name, object_name,
|
||||
metadata=self.custom_headers)
|
||||
|
||||
@testtools.skip('Until bug 1097137 is resolved.')
|
||||
@testtools.skip('Until Bug #1097137 is resolved.')
|
||||
@attr(type='positive')
|
||||
def test_get_object_using_temp_url(self):
|
||||
#Access object using temp url within expiry time
|
||||
|
Loading…
x
Reference in New Issue
Block a user