mirror of
https://github.com/Unitech/pm2.git
synced 2025-12-08 20:35:53 +00:00
70 lines
2.3 KiB
Bash
70 lines
2.3 KiB
Bash
#!/usr/bin/env bash
|
|
|
|
SRC=$(cd $(dirname "$0"); pwd)
|
|
source "${SRC}/include.sh"
|
|
|
|
cd $file_path/serve
|
|
|
|
echo "################## PM2 SERVE ###################"
|
|
|
|
$pm2 serve
|
|
should 'should have started serving dir' 'online' 1
|
|
|
|
curl http://localhost:8080/ > /tmp/tmp_out.txt
|
|
OUT=`cat /tmp/tmp_out.txt | grep -o "good shit" | wc -l`
|
|
[ $OUT -eq 1 ] || fail "should have served index file under /"
|
|
success "should have served index file under /"
|
|
|
|
curl http://localhost:8080/index.html > /tmp/tmp_out.txt
|
|
OUT=`cat /tmp/tmp_out.txt | grep -o "good shit" | wc -l`
|
|
[ $OUT -eq 1 ] || fail "should have served index file under /index.html"
|
|
success "should have served index file under /index.html"
|
|
|
|
echo "Shutting down the server"
|
|
$pm2 delete all
|
|
|
|
curl http://localhost:8080/index.html > /tmp/tmp_out.txt
|
|
OUT=`cat /tmp/tmp_out.txt | grep -o "good shit" | wc -l`
|
|
[ $OUT -eq 0 ] || fail "should be offline"
|
|
success "should be offline"
|
|
|
|
$pm2 serve . 8000
|
|
should 'should have started serving dir' 'online' 1
|
|
|
|
curl http://localhost:8000/index.html > /tmp/tmp_out.txt
|
|
OUT=`cat /tmp/tmp_out.txt | grep -o "good shit" | wc -l`
|
|
[ $OUT -eq 1 ] || fail "should be listening on port 8000"
|
|
success "should be listening on port 8000"
|
|
|
|
$pm2 delete all
|
|
|
|
$pm2 serve . 8000 --name frontend
|
|
should 'should have started serving dir' 'online' 1
|
|
should 'should have custom name' 'frontend' 7
|
|
|
|
curl http://localhost:8000/index.html > /tmp/tmp_out.txt
|
|
OUT=`cat /tmp/tmp_out.txt | grep -o "good shit" | wc -l`
|
|
[ $OUT -eq 1 ] || fail "should be listening on port 8000"
|
|
success "should be listening on port 8000"
|
|
|
|
curl http://localhost:8000/yolo.html > /tmp/tmp_out.txt
|
|
OUT=`cat /tmp/tmp_out.txt | grep -o "your file doesnt exist" | wc -l`
|
|
[ $OUT -eq 1 ] || fail "should have served custom 404 file"
|
|
success "should have served custom 404 file"
|
|
|
|
$pm2 delete all
|
|
|
|
$pm2 start ecosystem.json
|
|
should 'should have started serving dir' 'online' 1
|
|
|
|
curl http://localhost:8081/index.html > /tmp/tmp_out.txt
|
|
OUT=`cat /tmp/tmp_out.txt | grep -o "good shit" | wc -l`
|
|
[ $OUT -eq 1 ] || fail "should be listening on port 8081"
|
|
success "should be listening on port 8081"
|
|
|
|
$pm2 stop ecosystem.json
|
|
|
|
curl http://localhost:8081/index.html > /tmp/tmp_out.txt
|
|
OUT=`cat /tmp/tmp_out.txt | grep -o "good shit" | wc -l`
|
|
[ $OUT -eq 0 ] || fail "should be offline"
|
|
success "should be offline" |