[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
(cherry picked from commit 74102c7523f7b7faa3edd9b06b6482ad3b824c9f)
diff --git a/octavia_tempest_plugin/tests/test_base.py b/octavia_tempest_plugin/tests/test_base.py
index 284c449..0ae145c 100644
--- a/octavia_tempest_plugin/tests/test_base.py
+++ b/octavia_tempest_plugin/tests/test_base.py
@@ -660,6 +660,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