Addressing review comments.

This commit is contained in:
smruthi2187
2018-02-09 14:26:32 -08:00
parent 841c7ef845
commit 281a492149
18 changed files with 176 additions and 209 deletions
+14 -14
View File
@@ -8,39 +8,39 @@ ROOT=$(dirname $0)/../..
fn=nodejs-logtest-$(date +%N)
function cleanup {
echo_log "Cleanup route"
log "Cleanup route"
var=$(fission route list | grep $fn | awk '{print $1;}')
fission route delete --name $var
echo_log "delete logfile"
log "delete logfile"
rm "/tmp/logfile"
}
# Create a hello world function in nodejs, test it with an http trigger
echo_log "Pre-test cleanup"
log "Pre-test cleanup"
fission env delete --name nodejs || true
echo_log "Creating nodejs env"
log "Creating nodejs env"
fission env create --name nodejs --image fission/node-env
trap "fission env delete --name nodejs" EXIT
echo_log "Creating function"
log "Creating function"
fission fn create --name $fn --env nodejs --code log.js
trap "fission fn delete --name $fn" EXIT
echo_log "Creating route"
log "Creating route"
fission route create --function $fn --url /$fn --method GET
trap cleanup EXIT
echo_log "Waiting for router to catch up"
log "Waiting for router to catch up"
sleep 15
echo_log "Doing 4 HTTP GETs on the function's route"
log "Doing 4 HTTP GETs on the function's route"
for i in 1 2 3 4
do
curl -s http://$FISSION_ROUTER/$fn
done
echo_log "Grabbing logs, should have 4 calls in logs"
log "Grabbing logs, should have 4 calls in logs"
sleep 15
@@ -52,15 +52,15 @@ then
fission function logs --name $fn --detail > /tmp/logfile
fi
echo_log "---function logs---"
log "---function logs---"
cat /tmp/logfile
echo_log "------"
log "------"
num=$(grep 'log test' /tmp/logfile | wc -l)
echo_log $num logs found
log $num logs found
if [ $num -ne 4 ]
then
echo_log "Test Failed: expected 4, found $num logs"
log "Test Failed: expected 4, found $num logs"
fi
echo_log "All done."
log "All done."