Skip stateless SG related tests for backends which don't support it
Currently stateless SGs are supported by ML2/OVN backend and by backends
which uses iptables based firewall driver.
It's not supported e.g. by ML2/OVS with 'openvswitch' fw driver thus
those tests should be skipped in case of that backend driver.
Change-Id: I9fa572c3b7eda96706caa2ba1a181de475357804
diff --git a/neutron_tempest_plugin/scenario/test_security_groups.py b/neutron_tempest_plugin/scenario/test_security_groups.py
index 036ffeb..f7dee5e 100644
--- a/neutron_tempest_plugin/scenario/test_security_groups.py
+++ b/neutron_tempest_plugin/scenario/test_security_groups.py
@@ -863,6 +863,10 @@
con.test_connection()
+@testtools.skipIf(
+ CONF.neutron_plugin_options.firewall_driver in ['openvswitch', 'None'],
+ "Firewall driver other than 'openvswitch' is required to use "
+ "stateless security groups.")
class StatelessNetworkSecGroupTest(BaseNetworkSecGroupTest):
required_extensions = ['security-group', 'stateful-security-group']
stateless_sg = True