Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: pipe option -o #118

Merged
merged 4 commits into from
Jun 30, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
persist-credentials: false

- name: Dependency review
uses: actions/dependency-review-action@v1
uses: actions/dependency-review-action@v2

test:
name: Test
Expand Down
12 changes: 7 additions & 5 deletions lib/makeInsert.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ module.exports = function makeInsert (showErrors, showStdout) {
let callback

if (showErrors && showStdout) {
callback = function (e, result) {
callback = function (e, log) {
if (e) {
console.error(e)
} else {
process.stdout.write(JSON.stringify(result.ops[0]) + EOL)
process.stdout.write(JSON.stringify(log) + EOL)
}
}
} else if (showErrors && !showStdout) {
Expand All @@ -23,14 +23,16 @@ module.exports = function makeInsert (showErrors, showStdout) {
}
}
} else if (!showErrors && showStdout) {
callback = function (e, result) {
callback = function (e, log) {
if (!e) {
process.stdout.write(JSON.stringify(result.ops[0]) + EOL)
process.stdout.write(JSON.stringify(log) + EOL)
}
}
}

return function insert (collection, log) {
collection.insertOne(log, options, callback)
collection.insertOne(log, options, (e, result) => {
callback && callback(e, log)
})
}
}
46 changes: 46 additions & 0 deletions test/end-to-end/pipe-usage.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ const { spawn } = require('child_process')
const { promisify } = require('util')
const { MongoClient } = require('mongodb')
const { once } = require('events')
const EOL = require('os').EOL

const mongoUrl = 'mongodb://one:two@localhost:27017/newdb?authSource=admin'
const setTimeout = promisify(global.setTimeout)
Expand Down Expand Up @@ -44,3 +45,48 @@ t.test('must log to a custom collection', async (t) => {
t.error(error)
}
})

t.test('must write logs to the console with -o option', async (t) => {
const customCollection = 'custom-collection'
const childProcess = spawn('node', [
'../../pino-mongodb.js',
mongoUrl,
'-o',
'-c',
customCollection
], {
cwd: __dirname,
stdio: ['pipe', 'pipe', process.stderr]
})

const client = new MongoClient(mongoUrl)
await client.connect()
t.teardown(client.close.bind(client))
const db = client.db()
const collection = db.collection(customCollection)

const rowsBefore = await collection.countDocuments()
t.pass(`rows count ${rowsBefore}`)

childProcess.stdin.write('hello pino-mongo 1\n')
childProcess.stdin.write(`${JSON.stringify({ hello: 'pino' })}\n`)
childProcess.stdin.write('hello pino-mongo 2\n')
await setTimeout(5000)

childProcess.kill('SIGINT')
// read stdout
const chunks = []
for await (let chunk of childProcess.stdout) {
chunks.push(chunk)
}
const output = Buffer.concat(chunks).toString()
t.equal(output.trim().split('\n').length, 3)

try {
await once(childProcess, 'close')
const rowsAfter = await collection.countDocuments()
t.equal(rowsAfter, rowsBefore + 3, 'logged 3 rows')
} catch (error) {
t.error(error)
}
})