Test metadata query over IPv6 only network with OVS and LB

This change enables the testing of querying the metadata service over an
IPv6 only network

Depends-On: https://review.opendev.org/c/openstack/neutron/+/922264

Change-Id: I56b1b7e5ca69e2fb01d359ab302e676773966aca
Related-Bug: #2069482
Closes-Bug: 2076916
This commit is contained in:
Miguel Lavalle
2024-08-18 17:20:51 -05:00
parent e0d03fc6b2
commit 4a0b2343d7

View File

@@ -193,15 +193,14 @@ class MetadataTest(base.BaseTempestTestCase):
CONF.neutron_plugin_options.advanced_image_ref or
CONF.neutron_plugin_options.default_image_is_advanced,
'Advanced image is required to run this test.')
@testtools.skipUnless(
CONF.neutron_plugin_options.firewall_driver == 'ovn',
"OVN driver is required to run this test - "
" while LP#2076916 is fixed")
@decorators.idempotent_id('7542892a-d132-471c-addb-172dcf888ff6')
def test_metadata_ipv6_only_network(self):
ipv6_network = self.create_network()
self.create_subnet(network=ipv6_network, ip_version=6,
ipv6_ra_mode="slaac", ipv6_address_mode="slaac")
ipv6_subnet = self.create_subnet(network=ipv6_network, ip_version=6,
ipv6_ra_mode="slaac",
ipv6_address_mode="slaac")
if not CONF.neutron_plugin_options.firewall_driver == 'ovn':
self.create_router_interface(self.router['id'], ipv6_subnet['id'])
use_advanced_image = (
not CONF.neutron_plugin_options.default_image_is_advanced)
params = self._get_metadata_query_script()