mirror of
https://github.com/Unitech/pm2.git
synced 2025-12-08 20:35:53 +00:00
52 lines
1.6 KiB
Bash
52 lines
1.6 KiB
Bash
#!/usr/bin/env bash
|
|
|
|
SRC=$(cd $(dirname "$0"); pwd)
|
|
source "${SRC}/include.sh"
|
|
|
|
cd $file_path/promise/
|
|
|
|
# Check for 0.10 & 0.12 support
|
|
node -e "process.version.indexOf('v0') > -1 ? process.exit(1) : process.exit(0)"
|
|
RET=$?
|
|
[ $RET -eq 0 ] || exit 0
|
|
|
|
echo "###### Cluster mode"
|
|
> rejection.log
|
|
$pm2 start rejection.js -i 1 -l rejection.log --merge-logs
|
|
sleep 1
|
|
should 'should has not restarted process' 'restart_time: 0' 1
|
|
cat rejection.log | grep "You have triggered an unhandledRejection, you may have forgotten to catch a Promise rejection"
|
|
spec "should have logged promise error"
|
|
|
|
$pm2 delete all
|
|
|
|
> empty-rejection.log
|
|
$pm2 start empty-rejection.js -i 1 -l empty-rejection.log --merge-logs
|
|
sleep 1
|
|
should 'should has not restarted process' 'restart_time: 0' 1
|
|
|
|
cat empty-rejection.log | grep "You have triggered an unhandledRejection, you may have forgotten to catch a Promise rejection"
|
|
spec "should have logged promise error"
|
|
|
|
$pm2 delete all
|
|
|
|
echo "###### Fork mode"
|
|
|
|
> rejection.log
|
|
$pm2 start rejection.js -l rejection.log --merge-logs
|
|
sleep 1
|
|
should 'should has not restarted process' 'restart_time: 0' 1
|
|
|
|
cat rejection.log | grep "You have triggered an unhandledRejection, you may have forgotten to catch a Promise rejection"
|
|
spec "should have logged promise error"
|
|
|
|
$pm2 delete all
|
|
|
|
> empty-rejection.log
|
|
$pm2 start empty-rejection.js -l empty-rejection.log --merge-logs
|
|
sleep 1
|
|
should 'should has not restarted process' 'restart_time: 0' 1
|
|
|
|
cat empty-rejection.log | grep "You have triggered an unhandledRejection, you may have forgotten to catch a Promise rejection"
|
|
spec "should have logged promise error"
|