Skip to content

Commit

Permalink
Merge pull request #281 from sclorg/add_tests
Browse files Browse the repository at this point in the history
Add tests for nodejs-ex repository.
  • Loading branch information
phracek committed Mar 20, 2024
2 parents dff9e1a + e51a35e commit 0929638
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Makefile
@@ -0,0 +1,3 @@
.PHONY: test-openshift-4
test-openshift-4:
cd tests && PYTHONPATH=$(CURDIR) python3 -m pytest --verbose --color=yes --showlocals .
52 changes: 52 additions & 0 deletions tests/test_nodejs.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="20-ubi8"

class TestNodeJSAppExTemplate:

def setup_method(self):
self.oc_api = OpenShiftAPI(pod_name_prefix="nodejs-example")
json_raw_file = self.oc_api.get_raw_url_for_json(
container="s2i-nodejs-container", dir="imagestreams", filename="nodejs-rhel.json"
)
self.oc_api.import_is(path=json_raw_file, name="node")

def teardown_method(self):
self.oc_api.delete_project()

def test_template_inside_cluster(self):
expected_output = "Node.js Crud Application"
template_json = self.oc_api.get_raw_url_for_json(
container="nodejs-ex", dir="openshift/templates", filename="nodejs.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"NODEJS_VERSION={VERSION}", "NAME=nodejs-example"]
)
assert self.oc_api.template_deployed(name_in_template="nodejs-example")
assert self.oc_api.check_response_inside_cluster(
name_in_template="nodejs-example", expected_output=expected_output
)

def test_template_by_request(self):
expected_output = "Node.js Crud Application"
template_json = self.oc_api.get_raw_url_for_json(
container="nodejs-ex", dir="openshift/templates", filename="nodejs.json"
)
assert self.oc_api.deploy_template(
template=template_json, name_in_template="nodejs-example", expected_output=expected_output,
openshift_args=["SOURCE_REPOSITORY_REF=master", f"NODEJS_VERSION={VERSION}", "NAME=nodejs-example"]
)
assert self.oc_api.template_deployed(name_in_template="nodejs-example")
assert self.oc_api.check_response_outside_cluster(
name_in_template="nodejs-example", expected_output=expected_output
)

0 comments on commit 0929638

Please sign in to comment.