forked from openshift/console
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test-prow-e2e.sh
executable file
·41 lines (33 loc) · 1.32 KB
/
test-prow-e2e.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#!/usr/bin/env bash
set -exuo pipefail
INSTALLER_DIR=${INSTALLER_DIR:=${ARTIFACT_DIR}/installer}
# don't log kubeadmin-password
set +x
export BRIDGE_KUBEADMIN_PASSWORD="$(cat "${KUBEADMIN_PASSWORD_FILE:-${INSTALLER_DIR}/auth/kubeadmin-password}")"
set -x
export BRIDGE_BASE_ADDRESS="$(oc get consoles.config.openshift.io cluster -o jsonpath='{.status.consoleURL}')"
./contrib/create-user.sh
pushd frontend
SCENARIO="${1:-e2e}"
if [ "$SCENARIO" == "nightly-cypress" ]; then
PACKAGE=""
if [ $# -gt 1 ]; then
PACKAGE="-p $2"
fi
./integration-tests/test-cypress.sh -n true $PACKAGE
elif [ "$SCENARIO" == "e2e" ] || [ "$SCENARIO" == "release" ]; then
./integration-tests/test-cypress.sh -h true
elif [ "$SCENARIO" == "login" ]; then
./integration-tests/test-cypress.sh -p console -s 'tests/app/auth-multiuser-login.cy.ts' -h true
elif [ "$SCENARIO" == "olmFull" ]; then
./integration-tests/test-cypress.sh -p olm -h true
elif [ "$SCENARIO" == "dev-console" ]; then
./integration-tests/test-cypress.sh -p dev-console -h true
elif [ "$SCENARIO" == "pipelines" ]; then
./integration-tests/test-cypress.sh -p pipelines -h true
# elif [ "$SCENARIO" == "gitops" ]; then
# ./integration-tests/test-cypress.sh -p gitops -h true
elif [ "$SCENARIO" == "knative" ]; then
./integration-tests/test-cypress.sh -p knative -h true
fi
popd