a2e9dae43d
* Started working on monitor-e2e * Monitor e2e tests extended for 3 types of bridge * Skipp error checking * bash fix * Fixed docker-compose * check first * grep errors * all jobs * Style * Executing instead of sourcing
27 lines
791 B
Bash
Executable File
27 lines
791 B
Bash
Executable File
set -e # exit when any command fails
|
|
|
|
echo "MONITOR E2E - ERC TO NATIVE"
|
|
export URL=localhost:3012
|
|
|
|
echo "Test case - Web Interface should return balances"
|
|
OUTPUT=$(curl -s http://$URL/)
|
|
grep -q home <<< "$OUTPUT"
|
|
grep -q foreign <<< "$OUTPUT"
|
|
(! grep -q error <<< "$OUTPUT")
|
|
|
|
echo "Test case - Web Interface should return validators"
|
|
OUTPUT=$(curl -s http://$URL/validators)
|
|
grep -q home <<< "$OUTPUT"
|
|
grep -q foreign <<< "$OUTPUT"
|
|
(! grep -q error <<< "$OUTPUT")
|
|
|
|
echo "Test case - Web Interface should return eventsStats"
|
|
OUTPUT=$(curl -s http://$URL/eventsStats)
|
|
grep -q lastChecked <<< "$OUTPUT"
|
|
(! grep -q error <<< "$OUTPUT")
|
|
|
|
echo "Test case - Web Interface should return alerts"
|
|
OUTPUT=$(curl -s http://$URL/alerts)
|
|
grep -q lastChecked <<< "$OUTPUT"
|
|
(! grep -q error <<< "$OUTPUT")
|