tiny_httpd/tests/echo1.sh
2024-03-25 10:15:13 -04:00

23 lines
484 B
Bash
Executable file

#!/usr/bin/env sh
ECHO=$1
PORT=8085
"$ECHO" -p $PORT &
PID=$!
sleep 0.1
curl -N "http://localhost:${PORT}/echo/?a=b&c=d" -H user-agent:test --max-time 5
sleep 0.1
curl -N "http://localhost:${PORT}/vfs/" --max-time 5
sleep 0.1
curl -N "http://localhost:${PORT}/vfs/a.txt" --max-time 5
sleep 0.1
curl -N "http://localhost:${PORT}/vfs/a.txt" -H 'accept-encoding: deflate' --max-time 5 | base64
sleep 0.1
curl -N "http://localhost:${PORT}/vfs/sub/yolo.html" --max-time 5
kill $PID