-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5660 from bawjensen/fix-namespace-lines-0
Fix matching logic for logs from namespace when lines = 0
- Loading branch information
Showing
4 changed files
with
45 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
#!/usr/bin/env bash | ||
|
||
SRC=$(cd $(dirname "$0"); pwd) | ||
source "${SRC}/../include.sh" | ||
|
||
cd $file_path/log-namespace/ | ||
|
||
LOG_PATH_PREFIX="${SRC}/__log-namespace__" | ||
|
||
rm -rf "${LOG_PATH_PREFIX}" | ||
mkdir "${LOG_PATH_PREFIX}" | ||
|
||
$pm2 start echo.js --namespace e2e-test-log-namespace | ||
|
||
LOG_FILE_BASELINE="${LOG_PATH_PREFIX}/baseline-out.log" | ||
$pm2 logs e2e-test-log-namespace > $LOG_FILE_BASELINE & # backgrounded - will be stopped by `$pm2 delete all` | ||
|
||
sleep 2 # should leave time for ~40 "tick" lines | ||
|
||
# Using -q to avoid spamming, since there will be a fair few "tick" matches | ||
grep -q "tick" ${LOG_FILE_BASELINE} | ||
spec "Should have 'tick' in the log file" | ||
|
||
LOG_FILE_LINES_ZERO="${LOG_PATH_PREFIX}/lines-zero-out.log" | ||
$pm2 logs e2e-test-log-namespace --lines 0 > $LOG_FILE_LINES_ZERO & | ||
|
||
sleep 2 # should leave time for ~40 "tick" lines | ||
|
||
# Using -q to avoid spamming, since there will be a fair few "tick" matches | ||
grep -q "tick" ${LOG_FILE_LINES_ZERO} | ||
spec "Should have 'tick' in the log file even if using --lines 0" | ||
|
||
cd ${SRC} | ||
rm -rf "${LOG_PATH_PREFIX}" | ||
$pm2 delete all |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
console.log("start"); | ||
setInterval(function () { | ||
console.log("tick"); | ||
}, 50); |