Merge "Remove skip flag for tests skipped due to inactive bug"
This commit is contained in:
commit
a98cd8787e
@ -92,11 +92,6 @@ class ListenerAPITest(test_base.LoadBalancerBaseTest):
|
|||||||
self._test_listener_create(const.PROMETHEUS, 8090)
|
self._test_listener_create(const.PROMETHEUS, 8090)
|
||||||
|
|
||||||
@decorators.idempotent_id('7b53f336-47bc-45ae-bbd7-4342ef0673fc')
|
@decorators.idempotent_id('7b53f336-47bc-45ae-bbd7-4342ef0673fc')
|
||||||
# Skipping due to a status update bug in the amphora driver.
|
|
||||||
@decorators.skip_because(
|
|
||||||
bug='2007979',
|
|
||||||
bug_type='storyboard',
|
|
||||||
condition=CONF.load_balancer.provider in const.AMPHORA_PROVIDERS)
|
|
||||||
def test_udp_listener_create(self):
|
def test_udp_listener_create(self):
|
||||||
self._test_listener_create(const.UDP, 8003)
|
self._test_listener_create(const.UDP, 8003)
|
||||||
|
|
||||||
@ -397,11 +392,6 @@ class ListenerAPITest(test_base.LoadBalancerBaseTest):
|
|||||||
self._test_listener_list(const.TCP, 8030)
|
self._test_listener_list(const.TCP, 8030)
|
||||||
|
|
||||||
@decorators.idempotent_id('c08fb77e-b317-4d6f-b430-91f5b27ebac6')
|
@decorators.idempotent_id('c08fb77e-b317-4d6f-b430-91f5b27ebac6')
|
||||||
# Skipping due to a status update bug in the amphora driver.
|
|
||||||
@decorators.skip_because(
|
|
||||||
bug='2007979',
|
|
||||||
bug_type='storyboard',
|
|
||||||
condition=CONF.load_balancer.provider in const.AMPHORA_PROVIDERS)
|
|
||||||
def test_udp_listener_list(self):
|
def test_udp_listener_list(self):
|
||||||
self._test_listener_list(const.UDP, 8040)
|
self._test_listener_list(const.UDP, 8040)
|
||||||
|
|
||||||
@ -774,11 +764,6 @@ class ListenerAPITest(test_base.LoadBalancerBaseTest):
|
|||||||
self._test_listener_show(const.TCP, 8052)
|
self._test_listener_show(const.TCP, 8052)
|
||||||
|
|
||||||
@decorators.idempotent_id('1dea3a6b-c95b-4e91-b591-1aa9cbcd0d1d')
|
@decorators.idempotent_id('1dea3a6b-c95b-4e91-b591-1aa9cbcd0d1d')
|
||||||
# Skipping due to a status update bug in the amphora driver.
|
|
||||||
@decorators.skip_because(
|
|
||||||
bug='2007979',
|
|
||||||
bug_type='storyboard',
|
|
||||||
condition=CONF.load_balancer.provider in const.AMPHORA_PROVIDERS)
|
|
||||||
def test_udp_listener_show(self):
|
def test_udp_listener_show(self):
|
||||||
self._test_listener_show(const.UDP, 8053)
|
self._test_listener_show(const.UDP, 8053)
|
||||||
|
|
||||||
@ -938,11 +923,6 @@ class ListenerAPITest(test_base.LoadBalancerBaseTest):
|
|||||||
self._test_listener_update(const.TCP, 8062)
|
self._test_listener_update(const.TCP, 8062)
|
||||||
|
|
||||||
@decorators.idempotent_id('fd02dbfd-39ce-41c2-b181-54fc7ad91707')
|
@decorators.idempotent_id('fd02dbfd-39ce-41c2-b181-54fc7ad91707')
|
||||||
# Skipping due to a status update bug in the amphora driver.
|
|
||||||
@decorators.skip_because(
|
|
||||||
bug='2007979',
|
|
||||||
bug_type='storyboard',
|
|
||||||
condition=CONF.load_balancer.provider in const.AMPHORA_PROVIDERS)
|
|
||||||
def test_udp_listener_update(self):
|
def test_udp_listener_update(self):
|
||||||
self._test_listener_update(const.UDP, 8063)
|
self._test_listener_update(const.UDP, 8063)
|
||||||
|
|
||||||
@ -1200,11 +1180,6 @@ class ListenerAPITest(test_base.LoadBalancerBaseTest):
|
|||||||
self._test_listener_delete(const.TCP, 8072)
|
self._test_listener_delete(const.TCP, 8072)
|
||||||
|
|
||||||
@decorators.idempotent_id('86bd9717-e3e9-41e3-86c4-888c64455926')
|
@decorators.idempotent_id('86bd9717-e3e9-41e3-86c4-888c64455926')
|
||||||
# Skipping due to a status update bug in the amphora driver.
|
|
||||||
@decorators.skip_because(
|
|
||||||
bug='2007979',
|
|
||||||
bug_type='storyboard',
|
|
||||||
condition=CONF.load_balancer.provider in const.AMPHORA_PROVIDERS)
|
|
||||||
def test_udp_listener_delete(self):
|
def test_udp_listener_delete(self):
|
||||||
self._test_listener_delete(const.UDP, 8073)
|
self._test_listener_delete(const.UDP, 8073)
|
||||||
|
|
||||||
@ -1279,11 +1254,6 @@ class ListenerAPITest(test_base.LoadBalancerBaseTest):
|
|||||||
self._test_listener_show_stats(const.TCP, 8082)
|
self._test_listener_show_stats(const.TCP, 8082)
|
||||||
|
|
||||||
@decorators.idempotent_id('a4c1f199-923b-41e4-a134-c91e590e20c4')
|
@decorators.idempotent_id('a4c1f199-923b-41e4-a134-c91e590e20c4')
|
||||||
# Skipping due to a status update bug in the amphora driver.
|
|
||||||
@decorators.skip_because(
|
|
||||||
bug='2007979',
|
|
||||||
bug_type='storyboard',
|
|
||||||
condition=CONF.load_balancer.provider in const.AMPHORA_PROVIDERS)
|
|
||||||
def test_udp_listener_show_stats(self):
|
def test_udp_listener_show_stats(self):
|
||||||
self._test_listener_show_stats(const.UDP, 8083)
|
self._test_listener_show_stats(const.UDP, 8083)
|
||||||
|
|
||||||
|
@ -115,11 +115,6 @@ class ListenerScenarioTest(test_base.LoadBalancerBaseTest):
|
|||||||
self._test_listener_CRUD(const.TCP, pool1, pool2)
|
self._test_listener_CRUD(const.TCP, pool1, pool2)
|
||||||
|
|
||||||
@decorators.idempotent_id('27a2ba7d-6147-46e4-886a-47c1ba63bf89')
|
@decorators.idempotent_id('27a2ba7d-6147-46e4-886a-47c1ba63bf89')
|
||||||
# Skipping due to a status update bug in the amphora driver.
|
|
||||||
@decorators.skip_because(
|
|
||||||
bug='2007979',
|
|
||||||
bug_type='storyboard',
|
|
||||||
condition=CONF.load_balancer.provider in const.AMPHORA_PROVIDERS)
|
|
||||||
def test_udp_least_connections_listener_CRUD(self):
|
def test_udp_least_connections_listener_CRUD(self):
|
||||||
pool1, pool2 = self._create_pools(const.UDP,
|
pool1, pool2 = self._create_pools(const.UDP,
|
||||||
const.LB_ALGORITHM_LEAST_CONNECTIONS)
|
const.LB_ALGORITHM_LEAST_CONNECTIONS)
|
||||||
@ -138,11 +133,6 @@ class ListenerScenarioTest(test_base.LoadBalancerBaseTest):
|
|||||||
self._test_listener_CRUD(const.TCP, pool1, pool2)
|
self._test_listener_CRUD(const.TCP, pool1, pool2)
|
||||||
|
|
||||||
@decorators.idempotent_id('dd913f74-c6a6-4998-9bed-095babb9cb47')
|
@decorators.idempotent_id('dd913f74-c6a6-4998-9bed-095babb9cb47')
|
||||||
# Skipping due to a status update bug in the amphora driver.
|
|
||||||
@decorators.skip_because(
|
|
||||||
bug='2007979',
|
|
||||||
bug_type='storyboard',
|
|
||||||
condition=CONF.load_balancer.provider in const.AMPHORA_PROVIDERS)
|
|
||||||
def test_udp_round_robin_listener_CRUD(self):
|
def test_udp_round_robin_listener_CRUD(self):
|
||||||
pool1, pool2 = self._create_pools(const.UDP,
|
pool1, pool2 = self._create_pools(const.UDP,
|
||||||
const.LB_ALGORITHM_ROUND_ROBIN)
|
const.LB_ALGORITHM_ROUND_ROBIN)
|
||||||
@ -161,11 +151,6 @@ class ListenerScenarioTest(test_base.LoadBalancerBaseTest):
|
|||||||
self._test_listener_CRUD(const.TCP, pool1, pool2)
|
self._test_listener_CRUD(const.TCP, pool1, pool2)
|
||||||
|
|
||||||
@decorators.idempotent_id('7830aba8-12ca-40d9-9d9b-a63f7a43b287')
|
@decorators.idempotent_id('7830aba8-12ca-40d9-9d9b-a63f7a43b287')
|
||||||
# Skipping due to a status update bug in the amphora driver.
|
|
||||||
@decorators.skip_because(
|
|
||||||
bug='2007979',
|
|
||||||
bug_type='storyboard',
|
|
||||||
condition=CONF.load_balancer.provider in const.AMPHORA_PROVIDERS)
|
|
||||||
def test_udp_source_ip_listener_CRUD(self):
|
def test_udp_source_ip_listener_CRUD(self):
|
||||||
pool1, pool2 = self._create_pools(const.UDP,
|
pool1, pool2 = self._create_pools(const.UDP,
|
||||||
const.LB_ALGORITHM_SOURCE_IP)
|
const.LB_ALGORITHM_SOURCE_IP)
|
||||||
@ -200,11 +185,6 @@ class ListenerScenarioTest(test_base.LoadBalancerBaseTest):
|
|||||||
raise testtools.TestCase.skipException(message)
|
raise testtools.TestCase.skipException(message)
|
||||||
|
|
||||||
@decorators.idempotent_id('3f9a2de9-5012-437d-a907-a25e1f68ccfb')
|
@decorators.idempotent_id('3f9a2de9-5012-437d-a907-a25e1f68ccfb')
|
||||||
# Skipping due to a status update bug in the amphora driver.
|
|
||||||
@decorators.skip_because(
|
|
||||||
bug='2007979',
|
|
||||||
bug_type='storyboard',
|
|
||||||
condition=CONF.load_balancer.provider in const.AMPHORA_PROVIDERS)
|
|
||||||
def test_udp_source_ip_port_listener_CRUD(self):
|
def test_udp_source_ip_port_listener_CRUD(self):
|
||||||
try:
|
try:
|
||||||
pool1, pool2 = self._create_pools(
|
pool1, pool2 = self._create_pools(
|
||||||
|
Loading…
Reference in New Issue
Block a user