[TF driver] Add check for listener protocols
Add check for listener drivers in case of
tungstenfabric octavia driver.
Related-Prod: PRODX-47168
Change-Id: I91313ac1d2a439173cd85be73a0323b884678eed
diff --git a/octavia_tempest_plugin/tests/test_base.py b/octavia_tempest_plugin/tests/test_base.py
index 55e4d1b..d9c5e9c 100644
--- a/octavia_tempest_plugin/tests/test_base.py
+++ b/octavia_tempest_plugin/tests/test_base.py
@@ -591,6 +591,8 @@
'is only available on Octavia '
'API version 2.23 or newer.')
return False
+ if CONF.load_balancer.provider == 'tungstenfabric':
+ self.check_tf_compatibility(protocol=protocol)
return True
@classmethod