mirror of
https://github.com/krkn-chaos/krkn.git
synced 2026-02-14 18:10:00 +00:00
Some checks failed
Functional & Unit Tests / Functional & Unit Tests (push) Failing after 4m2s
Functional & Unit Tests / Generate Coverage Badge (push) Has been skipped
Signed-off-by: Paige Patton <prubenda@redhat.com>
36 lines
989 B
Bash
Executable File
36 lines
989 B
Bash
Executable File
set -xeEo pipefail
|
|
|
|
source CI/tests/common.sh
|
|
|
|
trap error ERR
|
|
trap finish EXIT
|
|
|
|
function functional_test_pod_server {
|
|
export scenario_type="pod_disruption_scenarios"
|
|
export scenario_file="scenarios/kind/pod_etcd.yml"
|
|
export post_config=""
|
|
|
|
envsubst < CI/config/common_test_config.yaml > CI/config/pod_config.yaml
|
|
yq -i '.[0].config.kill=1' scenarios/kind/pod_etcd.yml
|
|
|
|
yq -i '.tunings.daemon_mode=True' CI/config/pod_config.yaml
|
|
cat CI/config/pod_config.yaml
|
|
python3 -m coverage run -a run_kraken.py -c CI/config/pod_config.yaml &
|
|
sleep 15
|
|
curl -X POST http:/0.0.0.0:8081/STOP
|
|
|
|
wait
|
|
|
|
yq -i '.kraken.signal_state="PAUSE"' CI/config/pod_config.yaml
|
|
yq -i '.tunings.daemon_mode=False' CI/config/pod_config.yaml
|
|
cat CI/config/pod_config.yaml
|
|
python3 -m coverage run -a run_kraken.py -c CI/config/pod_config.yaml &
|
|
sleep 5
|
|
curl -X POST http:/0.0.0.0:8081/RUN
|
|
wait
|
|
|
|
echo "Pod disruption with server scenario test: Success"
|
|
}
|
|
|
|
functional_test_pod_server
|