From 8909dcbbfa7514cc24f833d389756e4cf00faca6 Mon Sep 17 00:00:00 2001 From: "Petr \"Stone\" Hracek" Date: Mon, 18 Mar 2024 16:02:05 +0100 Subject: [PATCH] Add Makefile and test suite for dancer-ex application Signed-off-by: Petr "Stone" Hracek --- Makefile | 3 +++ tests/test_dancer.py | 52 ++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 55 insertions(+) create mode 100644 Makefile create mode 100644 tests/test_dancer.py diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..97a95a6 --- /dev/null +++ b/Makefile @@ -0,0 +1,3 @@ +.PHONY: test-openshift-4 +test-openshift-4: + cd tests && PYTHONPATH=$(CURDIR) python3 -m pytest --verbose --color=yes --showlocals . \ No newline at end of file diff --git a/tests/test_dancer.py b/tests/test_dancer.py new file mode 100644 index 0000000..931c540 --- /dev/null +++ b/tests/test_dancer.py @@ -0,0 +1,52 @@ +import os + +import pytest +from pathlib import Path + +from container_ci_suite.openshift import OpenShiftAPI + +test_dir = Path(os.path.abspath(os.path.dirname(__file__))) + +VERSION=os.getenv("SINGLE_VERSION") +if not VERSION: + VERSION="5.32-ubi8" + +class TestDancerAppExTemplate: + + def setup_method(self): + self.oc_api = OpenShiftAPI(pod_name_prefix="dancer-example") + json_raw_file = self.oc_api.get_raw_url_for_json( + container="s2i-perl-container", dir="imagestreams", filename="perl-rhel.json" + ) + self.oc_api.import_is(path=json_raw_file, name="perl") + + def teardown_method(self): + self.oc_api.delete_project() + + def test_template_inside_cluster(self): + expected_output = "Welcome to your Dancer application" + template_json = self.oc_api.get_raw_url_for_json( + container="dancer-ex", dir="openshift/templates", filename="dancer.json" + ) + assert self.oc_api.deploy_template( + template=template_json, name_in_template="dancer-example", expected_output=expected_output, + openshift_args=["SOURCE_REPOSITORY_REF=master", f"PERL_VERSION={VERSION}", "NAME=dancer-example"] + ) + assert self.oc_api.template_deployed(name_in_template="dancer-example") + assert self.oc_api.check_response_inside_cluster( + name_in_template="dancer-example", expected_output=expected_output + ) + + def test_template_by_request(self): + expected_output = "Welcome to your Dancer application" + template_json = self.oc_api.get_raw_url_for_json( + container="dancer-ex", dir="openshift/templates", filename="dancer.json" + ) + assert self.oc_api.deploy_template( + template=template_json, name_in_template="dancer-example", expected_output=expected_output, + openshift_args=["SOURCE_REPOSITORY_REF=master", f"PERL_VERSION={VERSION}", "NAME=dancer-example"] + ) + assert self.oc_api.template_deployed(name_in_template="dancer-example") + assert self.oc_api.check_response_outside_cluster( + name_in_template="dancer-example", expected_output=expected_output + )