64 lines
1.6 KiB
Bash
64 lines
1.6 KiB
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
set -o errexit
|
||
|
|
set -o pipefail
|
||
|
|
set -o nounset
|
||
|
|
set -o xtrace
|
||
|
|
|
||
|
|
# User credential to register on app
|
||
|
|
email=example%40appsmith.com
|
||
|
|
password=dummypass123
|
||
|
|
|
||
|
|
# Backend API
|
||
|
|
status_code="$(
|
||
|
|
curl --silent --show-error --output /dev/null --head --write-out "%{http_code}" "http://localhost/api/v1/users/me"
|
||
|
|
)"
|
||
|
|
|
||
|
|
# Create account
|
||
|
|
status_code_register="$(curl --silent --show-error \
|
||
|
|
--request POST --write-out "%{http_code}" --silent --output /dev/null \
|
||
|
|
--header "Content-Type: application/x-www-form-urlencoded" \
|
||
|
|
--header "Referer: http://localhost/user/signup" \
|
||
|
|
--data-raw "email=$email&password=$password" \
|
||
|
|
"http://localhost/api/v1/users"
|
||
|
|
)"
|
||
|
|
|
||
|
|
# Login
|
||
|
|
status_code_login="$(curl --silent --show-error \
|
||
|
|
--request POST --write-out "%{http_code}" --silent --output /dev/null \
|
||
|
|
--header "Referer: http://localhost/user/login" \
|
||
|
|
--data-raw "username=$email&password=$password" \
|
||
|
|
"http://localhost/api/v1/login"
|
||
|
|
)"
|
||
|
|
|
||
|
|
count_fail=0
|
||
|
|
|
||
|
|
if [[ $status_code -eq 200 ]]; then
|
||
|
|
echo "Api backend succeeded, status code: $status_code"
|
||
|
|
else
|
||
|
|
echo "Api backend failed, status code: $status_code"
|
||
|
|
count_fail=$((count_fail + 1))
|
||
|
|
fi
|
||
|
|
|
||
|
|
if [[ $status_code_register -eq 302 ]]; then
|
||
|
|
echo "Register succeeded, status code: $status_code_register"
|
||
|
|
else
|
||
|
|
echo "Register failed, status code: $status_code_register"
|
||
|
|
count_fail=$((count_fail + 1))
|
||
|
|
fi
|
||
|
|
|
||
|
|
if [[ $status_code_login -eq 302 ]]; then
|
||
|
|
echo "Login succeeded, status code: $status_code_login"
|
||
|
|
else
|
||
|
|
echo "Login failed, status code: $status_code_login"
|
||
|
|
count_fail=$((count_fail + 1))
|
||
|
|
fi
|
||
|
|
|
||
|
|
if [[ $count_fail -eq 0 ]]; then
|
||
|
|
echo "SUCCEEDED!!!"
|
||
|
|
exit 0
|
||
|
|
else
|
||
|
|
echo "FAILED!!!"
|
||
|
|
exit 1
|
||
|
|
fi
|