From 6e9a409dbca9a7e46449e756fcbc76bddc405883 Mon Sep 17 00:00:00 2001 From: Anastasia Kuznetsova Date: Fri, 8 Jul 2016 18:42:39 +0300 Subject: [PATCH] Add checks for Zuul and Nodepool to the functional test Functional test was updated previously and now it checks deploy of all apps, but post-deployment checks (like app's port availability) for Zuul and Nodepool were omitted. Change-Id: Ib8b893390b86499ca9b10bea302983edff00f308 --- tests/test_cicd_apps.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/tests/test_cicd_apps.py b/tests/test_cicd_apps.py index a9f35f6..163131b 100755 --- a/tests/test_cicd_apps.py +++ b/tests/test_cicd_apps.py @@ -82,6 +82,15 @@ class MuranoCiCdTest(base.MuranoTestsBase): 'ports': [389, 22], 'url': None }, + 'org.openstack.ci_cd_pipeline_murano_app.Zuul': { + 'ports': [80], + 'url': None + }, + 'org.openstack.ci_cd_pipeline_murano_app.Nodepool': { + 'ports': [80], + 'url': 'image.log', + 'url_port': 80 + }, } self.deployment_success_check(environment, check_services)