mirror of
https://github.com/openfaas/faas.git
synced 2025-06-08 16:26:47 +00:00
74 lines
1.3 KiB
Bash
Executable File
74 lines
1.3 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
function test_gateway {
|
|
for i in {1..100}
|
|
do
|
|
|
|
curl -s localhost:8080 |grep "angular"
|
|
if [ ! 0 -eq $? ]
|
|
then
|
|
echo "Gateway not ready"
|
|
sleep 5
|
|
else
|
|
break
|
|
fi
|
|
done
|
|
|
|
echo
|
|
|
|
}
|
|
|
|
function test_function_output {
|
|
for i in {1..100}
|
|
do
|
|
out=$(curl --fail -s localhost:8080/function/$1 -d "$2")
|
|
echo $out
|
|
if [ "$out" == "$3" ]
|
|
then
|
|
echo "Service $1 is ready"
|
|
break
|
|
else
|
|
echo "Service $1 not ready"
|
|
sleep 1
|
|
fi
|
|
done
|
|
|
|
echo
|
|
|
|
}
|
|
|
|
|
|
function test_function {
|
|
for i in {1..100}
|
|
do
|
|
curl -s --fail localhost:8080/function/$1 -d "$2"
|
|
if [ ! 0 -eq $? ]
|
|
then
|
|
echo "Service $1 not ready"
|
|
sleep 1
|
|
else
|
|
echo "Service $1 is ready"
|
|
break
|
|
fi
|
|
done
|
|
|
|
echo
|
|
|
|
}
|
|
|
|
function create_function {
|
|
echo "Creating function: " $1
|
|
curl -s --fail localhost:8080/system/functions -d "$1"
|
|
}
|
|
|
|
test_gateway
|
|
|
|
test_function func_echoit hi
|
|
test_function func_webhookstash hi
|
|
test_function func_base64 hi
|
|
test_function func_markdown "*salut*"
|
|
|
|
create_function '{"service": "stronghash", "image": "functions/alpine", "envProcess": "sha512sum", "network": "func_functions"}'
|
|
|
|
test_function_output stronghash "hi" "150a14ed5bea6cc731cf86c41566ac427a8db48ef1b9fd626664b3bfbb99071fa4c922f33dde38719b8c8354e2b7ab9d77e0e67fc12843920a712e73d558e197 -"
|