* show previous response code * log previous response code of shell script command
51 lines
1.1 KiB
Bash
Executable File
51 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
set -euo pipefail
|
|
source $(dirname $0)/../../utils.sh
|
|
|
|
TEST_ID=$(generate_test_id)
|
|
echo "TEST_ID = $TEST_ID"
|
|
|
|
tmp_dir="/tmp/test-$TEST_ID"
|
|
mkdir -p $tmp_dir
|
|
|
|
ROOT=$(dirname $0)/../../..
|
|
|
|
cd $ROOT/test/tests/test_kubectl
|
|
|
|
cleanup() {
|
|
echo "previous response" $?
|
|
log "Cleaning up..."
|
|
kubectl delete -f spec-yaml -R || true
|
|
}
|
|
|
|
if [ -z "${TEST_NOCLEANUP:-}" ]; then
|
|
trap cleanup EXIT
|
|
else
|
|
log "TEST_NOCLEANUP is set; not cleaning up test artifacts afterwards."
|
|
fi
|
|
|
|
name="go-spec-kubectl"
|
|
pkgName="go-b4bbb0e0-2d93-47f0-8c4e-eea644eec2a9"
|
|
|
|
# apply environment & function
|
|
kubectl apply -f spec-yaml -R
|
|
|
|
# wait for build to finish
|
|
timeout 180 bash -c "wait_for_builder $name"
|
|
timeout 180 bash -c "waitBuildExpectedStatus $pkgName failed"
|
|
|
|
sed -i 's/gogo/go/g' spec-yaml/function-go.yaml
|
|
|
|
# before we enable "/status" this should be failed.
|
|
kubectl apply -f spec-yaml/function-go.yaml
|
|
timeout 180 bash -c "waitBuildExpectedStatus $pkgName failed"
|
|
|
|
kubectl replace -f spec-yaml/function-go.yaml
|
|
timeout 180 bash -c "waitBuild $pkgName"
|
|
|
|
fission fn test --name $name
|
|
|
|
cleanup
|
|
|
|
log "Test PASSED" |