aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--functest/core/cloudify.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/functest/core/cloudify.py b/functest/core/cloudify.py
index 3bb630d80..834989722 100644
--- a/functest/core/cloudify.py
+++ b/functest/core/cloudify.py
@@ -66,8 +66,11 @@ class Cloudify(singlevm.SingleVm2):
"The current manager status is %s", cfy_status)
if str(cfy_status) != 'running':
raise Exception("Cloudify Manager isn't up and running")
- self.cfy_client.secrets.list()
- self.__logger.debug("Secrets API successfully reached")
+ self.cfy_client.secrets.create("foo", "bar")
+ self.__logger.debug(
+ "List secrets: %s", self.cfy_client.secrets.list())
+ self.cfy_client.secrets.delete("foo")
+ self.__logger.info("Secrets API successfully reached")
break
except Exception: # pylint: disable=broad-except
self.__logger.info(