35 lines
1.3 KiB
Bash
Executable file
35 lines
1.3 KiB
Bash
Executable file
#!/bin/bash
|
|
#
|
|
# Test the httpd image in OpenShift.
|
|
#
|
|
# IMAGE_NAME specifies a name of the candidate image used for testing.
|
|
# VERSION specifies a version of the python in the candidate image.
|
|
# The image has to be available before this script is executed.
|
|
|
|
THISDIR=$(dirname ${BASH_SOURCE[0]})
|
|
|
|
source "${THISDIR}/test-lib.sh"
|
|
source "${THISDIR}/test-lib-openshift.sh"
|
|
|
|
BRANCH_TO_TEST=master
|
|
|
|
set -eo nounset
|
|
|
|
test -n "${IMAGE_NAME-}" || false 'make sure $IMAGE_NAME is defined'
|
|
test -n "${VERSION-}" || false 'make sure $VERSION is defined'
|
|
|
|
ct_os_cluster_up
|
|
|
|
# test local app
|
|
ct_os_test_s2i_app "${IMAGE_NAME}" "${THISDIR}/sample-test-app" . 'This is a sample s2i application with static content'
|
|
|
|
# test remote example app
|
|
ct_os_test_s2i_app "${IMAGE_NAME}" "https://github.com/openshift/httpd-ex#${BRANCH_TO_TEST}" . 'Welcome to your static httpd application on OpenShift'
|
|
|
|
# test template from the example app
|
|
ct_os_test_template_app "${IMAGE_NAME}" \
|
|
"https://raw.githubusercontent.com/openshift/httpd-ex/${BRANCH_TO_TEST}/openshift/templates/httpd.json" \
|
|
httpd \
|
|
'Welcome to your static httpd application on OpenShift' \
|
|
8080 http 200 "-p SOURCE_REPOSITORY_REF=${BRANCH_TO_TEST}"
|
|
|