pino-testkit 10.4.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (196) hide show
  1. package/.nojekyll +0 -0
  2. package/.prettierignore +1 -0
  3. package/CNAME +1 -0
  4. package/CONTRIBUTING.md +30 -0
  5. package/LICENSE +21 -0
  6. package/README.md +175 -0
  7. package/SECURITY.md +87 -0
  8. package/benchmarks/basic.bench.js +95 -0
  9. package/benchmarks/child-child.bench.js +52 -0
  10. package/benchmarks/child-creation.bench.js +73 -0
  11. package/benchmarks/child.bench.js +62 -0
  12. package/benchmarks/deep-object.bench.js +88 -0
  13. package/benchmarks/formatters.bench.js +50 -0
  14. package/benchmarks/internal/custom-levels.js +67 -0
  15. package/benchmarks/internal/just-pino-heavy.bench.js +76 -0
  16. package/benchmarks/internal/just-pino.bench.js +182 -0
  17. package/benchmarks/internal/parent-vs-child.bench.js +75 -0
  18. package/benchmarks/internal/redact.bench.js +86 -0
  19. package/benchmarks/long-string.bench.js +81 -0
  20. package/benchmarks/multi-arg.bench.js +193 -0
  21. package/benchmarks/multistream.js +98 -0
  22. package/benchmarks/object.bench.js +82 -0
  23. package/benchmarks/utils/generate-benchmark-doc.js +36 -0
  24. package/benchmarks/utils/runbench.js +138 -0
  25. package/benchmarks/utils/wrap-log-level.js +55 -0
  26. package/bin.js +6 -0
  27. package/browser.js +547 -0
  28. package/build/sync-version.js +25 -0
  29. package/docs/api.md +1593 -0
  30. package/docs/asynchronous.md +40 -0
  31. package/docs/benchmarks.md +55 -0
  32. package/docs/browser.md +278 -0
  33. package/docs/bundling.md +40 -0
  34. package/docs/child-loggers.md +95 -0
  35. package/docs/diagnostics.md +16 -0
  36. package/docs/ecosystem.md +86 -0
  37. package/docs/help.md +345 -0
  38. package/docs/lts.md +64 -0
  39. package/docs/pretty.md +35 -0
  40. package/docs/redaction.md +135 -0
  41. package/docs/transports.md +1376 -0
  42. package/docs/web.md +309 -0
  43. package/eslint.config.js +28 -0
  44. package/examples/basic.js +43 -0
  45. package/examples/transport.js +68 -0
  46. package/favicon.ico +0 -0
  47. package/file.js +12 -0
  48. package/inc-version.sh +42 -0
  49. package/index.html +55 -0
  50. package/lib/caller.js +30 -0
  51. package/lib/constants.js +28 -0
  52. package/lib/contract.js +8 -0
  53. package/lib/deprecations.js +8 -0
  54. package/lib/levels.js +241 -0
  55. package/lib/meta.js +3 -0
  56. package/lib/multistream.js +203 -0
  57. package/lib/proto.js +256 -0
  58. package/lib/redaction.js +114 -0
  59. package/lib/symbols.js +74 -0
  60. package/lib/time.js +39 -0
  61. package/lib/tools.js +427 -0
  62. package/lib/transport-stream.js +56 -0
  63. package/lib/transport.js +289 -0
  64. package/lib/worker.js +194 -0
  65. package/package.json +119 -0
  66. package/pino.d.ts +908 -0
  67. package/pino.js +240 -0
  68. package/test/basic.test.js +886 -0
  69. package/test/broken-pipe.test.js +59 -0
  70. package/test/browser-child.test.js +132 -0
  71. package/test/browser-disabled.test.js +87 -0
  72. package/test/browser-early-console-freeze.test.js +12 -0
  73. package/test/browser-is-level-enabled.test.js +101 -0
  74. package/test/browser-levels.test.js +241 -0
  75. package/test/browser-serializers.test.js +352 -0
  76. package/test/browser-timestamp.test.js +88 -0
  77. package/test/browser-transmit.test.js +417 -0
  78. package/test/browser.test.js +698 -0
  79. package/test/complex-objects.test.js +36 -0
  80. package/test/crlf.test.js +34 -0
  81. package/test/custom-levels.test.js +267 -0
  82. package/test/diagnostics.test.js +107 -0
  83. package/test/error-key.test.js +37 -0
  84. package/test/error.test.js +403 -0
  85. package/test/escaping.test.js +93 -0
  86. package/test/esm/esm.mjs +14 -0
  87. package/test/esm/index.test.js +21 -0
  88. package/test/esm/named-exports.mjs +29 -0
  89. package/test/exit.test.js +79 -0
  90. package/test/fixtures/broken-pipe/basic.js +9 -0
  91. package/test/fixtures/broken-pipe/destination.js +10 -0
  92. package/test/fixtures/broken-pipe/syncfalse.js +12 -0
  93. package/test/fixtures/console-transport.js +13 -0
  94. package/test/fixtures/crashing-transport.js +13 -0
  95. package/test/fixtures/default-exit.js +8 -0
  96. package/test/fixtures/destination-exit.js +8 -0
  97. package/test/fixtures/eval/index.js +13 -0
  98. package/test/fixtures/eval/node_modules/14-files.js +3 -0
  99. package/test/fixtures/eval/node_modules/2-files.js +3 -0
  100. package/test/fixtures/eval/node_modules/file1.js +5 -0
  101. package/test/fixtures/eval/node_modules/file10.js +5 -0
  102. package/test/fixtures/eval/node_modules/file11.js +5 -0
  103. package/test/fixtures/eval/node_modules/file12.js +5 -0
  104. package/test/fixtures/eval/node_modules/file13.js +5 -0
  105. package/test/fixtures/eval/node_modules/file14.js +11 -0
  106. package/test/fixtures/eval/node_modules/file2.js +5 -0
  107. package/test/fixtures/eval/node_modules/file3.js +5 -0
  108. package/test/fixtures/eval/node_modules/file4.js +5 -0
  109. package/test/fixtures/eval/node_modules/file5.js +5 -0
  110. package/test/fixtures/eval/node_modules/file6.js +5 -0
  111. package/test/fixtures/eval/node_modules/file7.js +5 -0
  112. package/test/fixtures/eval/node_modules/file8.js +5 -0
  113. package/test/fixtures/eval/node_modules/file9.js +5 -0
  114. package/test/fixtures/noop-transport.js +10 -0
  115. package/test/fixtures/pretty/null-prototype.js +8 -0
  116. package/test/fixtures/stdout-hack-protection.js +11 -0
  117. package/test/fixtures/syncfalse-child.js +6 -0
  118. package/test/fixtures/syncfalse-exit.js +9 -0
  119. package/test/fixtures/syncfalse-flush-exit.js +10 -0
  120. package/test/fixtures/syncfalse.js +6 -0
  121. package/test/fixtures/syntax-error-esm.mjs +2 -0
  122. package/test/fixtures/to-file-transport-with-transform.js +20 -0
  123. package/test/fixtures/to-file-transport.js +13 -0
  124. package/test/fixtures/to-file-transport.mjs +8 -0
  125. package/test/fixtures/transport/index.js +12 -0
  126. package/test/fixtures/transport/package.json +5 -0
  127. package/test/fixtures/transport-exit-immediately-with-async-dest.js +16 -0
  128. package/test/fixtures/transport-exit-immediately.js +11 -0
  129. package/test/fixtures/transport-exit-on-ready.js +12 -0
  130. package/test/fixtures/transport-invalid-node-options.js +26 -0
  131. package/test/fixtures/transport-main.js +9 -0
  132. package/test/fixtures/transport-many-lines.js +29 -0
  133. package/test/fixtures/transport-preload-main.mjs +13 -0
  134. package/test/fixtures/transport-preload.mjs +13 -0
  135. package/test/fixtures/transport-string-stdout.js +9 -0
  136. package/test/fixtures/transport-transform.js +21 -0
  137. package/test/fixtures/transport-uses-pino-config.js +33 -0
  138. package/test/fixtures/transport-with-on-exit.js +12 -0
  139. package/test/fixtures/transport-worker-data.js +19 -0
  140. package/test/fixtures/transport-worker-name.js +24 -0
  141. package/test/fixtures/transport-worker.js +15 -0
  142. package/test/fixtures/transport-wrong-export-type.js +3 -0
  143. package/test/fixtures/ts/to-file-transport-native.mts +15 -0
  144. package/test/fixtures/ts/to-file-transport-with-transform.ts +18 -0
  145. package/test/fixtures/ts/to-file-transport.ts +11 -0
  146. package/test/fixtures/ts/transpile.cjs +36 -0
  147. package/test/fixtures/ts/transport-exit-immediately-with-async-dest.ts +15 -0
  148. package/test/fixtures/ts/transport-exit-immediately.ts +10 -0
  149. package/test/fixtures/ts/transport-exit-on-ready.ts +11 -0
  150. package/test/fixtures/ts/transport-main.ts +8 -0
  151. package/test/fixtures/ts/transport-string-stdout.ts +8 -0
  152. package/test/fixtures/ts/transport-worker.ts +14 -0
  153. package/test/formatters.test.js +364 -0
  154. package/test/helper.d.ts +4 -0
  155. package/test/helper.js +155 -0
  156. package/test/hooks.test.js +114 -0
  157. package/test/http.test.js +214 -0
  158. package/test/internals/version.test.js +17 -0
  159. package/test/is-level-enabled.test.js +179 -0
  160. package/test/jest/basic.spec.js +10 -0
  161. package/test/levels.test.js +810 -0
  162. package/test/metadata.test.js +120 -0
  163. package/test/mixin-merge-strategy.test.js +57 -0
  164. package/test/mixin.test.js +241 -0
  165. package/test/multistream.test.js +729 -0
  166. package/test/redact.test.js +893 -0
  167. package/test/serializers.test.js +257 -0
  168. package/test/stdout-protection.test.js +41 -0
  169. package/test/syncfalse.test.js +186 -0
  170. package/test/timestamp-nano.test.js +37 -0
  171. package/test/timestamp.test.js +124 -0
  172. package/test/transport/big.test.js +42 -0
  173. package/test/transport/bundlers-support.test.js +99 -0
  174. package/test/transport/caller.test.js +24 -0
  175. package/test/transport/core.test.js +733 -0
  176. package/test/transport/core.transpiled.test.ts +114 -0
  177. package/test/transport/crash.test.js +36 -0
  178. package/test/transport/module-link.test.js +241 -0
  179. package/test/transport/native-type-stripping.test.mjs +151 -0
  180. package/test/transport/node-options.test.js +116 -0
  181. package/test/transport/pipeline.test.js +137 -0
  182. package/test/transport/preload.test.js +54 -0
  183. package/test/transport/repl.test.js +15 -0
  184. package/test/transport/sync-false.test.js +67 -0
  185. package/test/transport/sync-true.test.js +57 -0
  186. package/test/transport/targets.test.js +48 -0
  187. package/test/transport/uses-pino-config.test.js +166 -0
  188. package/test/transport-stream.test.js +40 -0
  189. package/test/types/pino-import.test-d.cts +30 -0
  190. package/test/types/pino-multistream.test-d.ts +28 -0
  191. package/test/types/pino-top-export.test-d.ts +34 -0
  192. package/test/types/pino-transport.test-d.ts +156 -0
  193. package/test/types/pino-type-only.test-d.ts +75 -0
  194. package/test/types/pino.test-d.ts +683 -0
  195. package/test/types/pino.ts +91 -0
  196. package/tsconfig.json +14 -0
@@ -0,0 +1,729 @@
1
+ 'use strict'
2
+
3
+ const test = require('node:test')
4
+ const assert = require('node:assert')
5
+ const { readFileSync } = require('node:fs')
6
+ const { join } = require('node:path')
7
+ const proxyquire = require('proxyquire')
8
+ const strip = require('strip-ansi')
9
+ const tspl = require('@matteo.collina/tspl')
10
+
11
+ const writeStream = require('flush-write-stream')
12
+ const pino = require('../')
13
+ const multistream = pino.multistream
14
+ const { file, sink } = require('./helper')
15
+
16
+ test('sends to multiple streams using string levels', async () => {
17
+ let messageCount = 0
18
+ const stream = writeStream(function (data, enc, cb) {
19
+ messageCount += 1
20
+ cb()
21
+ })
22
+ const streams = [
23
+ { stream },
24
+ { level: 'debug', stream },
25
+ { level: 'trace', stream },
26
+ { level: 'fatal', stream },
27
+ { level: 'silent', stream }
28
+ ]
29
+ const log = pino({
30
+ level: 'trace'
31
+ }, multistream(streams))
32
+ log.info('info stream')
33
+ log.debug('debug stream')
34
+ log.fatal('fatal stream')
35
+ assert.equal(messageCount, 9)
36
+ })
37
+
38
+ test('sends to multiple streams using custom levels', async () => {
39
+ let messageCount = 0
40
+ const stream = writeStream(function (data, enc, cb) {
41
+ messageCount += 1
42
+ cb()
43
+ })
44
+ const streams = [
45
+ { stream },
46
+ { level: 'debug', stream },
47
+ { level: 'trace', stream },
48
+ { level: 'fatal', stream },
49
+ { level: 'silent', stream }
50
+ ]
51
+ const log = pino({
52
+ level: 'trace'
53
+ }, multistream(streams))
54
+ log.info('info stream')
55
+ log.debug('debug stream')
56
+ log.fatal('fatal stream')
57
+ assert.equal(messageCount, 9)
58
+ })
59
+
60
+ test('sends to multiple streams using optionally predefined levels', async () => {
61
+ let messageCount = 0
62
+ const stream = writeStream(function (data, enc, cb) {
63
+ messageCount += 1
64
+ cb()
65
+ })
66
+ const opts = {
67
+ levels: {
68
+ silent: Infinity,
69
+ fatal: 60,
70
+ error: 50,
71
+ warn: 50,
72
+ info: 30,
73
+ debug: 20,
74
+ trace: 10
75
+ }
76
+ }
77
+ const streams = [
78
+ { stream },
79
+ { level: 'trace', stream },
80
+ { level: 'debug', stream },
81
+ { level: 'info', stream },
82
+ { level: 'warn', stream },
83
+ { level: 'error', stream },
84
+ { level: 'fatal', stream },
85
+ { level: 'silent', stream }
86
+ ]
87
+ const mstream = multistream(streams, opts)
88
+ const log = pino({
89
+ level: 'trace'
90
+ }, mstream)
91
+ log.trace('trace stream')
92
+ log.debug('debug stream')
93
+ log.info('info stream')
94
+ log.warn('warn stream')
95
+ log.error('error stream')
96
+ log.fatal('fatal stream')
97
+ log.silent('silent stream')
98
+ assert.equal(messageCount, 24)
99
+ })
100
+
101
+ test('sends to multiple streams using number levels', async () => {
102
+ let messageCount = 0
103
+ const stream = writeStream(function (data, enc, cb) {
104
+ messageCount += 1
105
+ cb()
106
+ })
107
+ const streams = [
108
+ { stream },
109
+ { level: 20, stream },
110
+ { level: 60, stream }
111
+ ]
112
+ const log = pino({
113
+ level: 'debug'
114
+ }, multistream(streams))
115
+ log.info('info stream')
116
+ log.debug('debug stream')
117
+ log.fatal('fatal stream')
118
+ assert.equal(messageCount, 6)
119
+ })
120
+
121
+ test('level include higher levels', async () => {
122
+ let messageCount = 0
123
+ const stream = writeStream(function (data, enc, cb) {
124
+ messageCount += 1
125
+ cb()
126
+ })
127
+ const log = pino({}, multistream([{ level: 'info', stream }]))
128
+ log.fatal('message')
129
+ assert.equal(messageCount, 1)
130
+ })
131
+
132
+ test('supports multiple arguments', async (t) => {
133
+ const plan = tspl(t, { plan: 2 })
134
+ const messages = []
135
+ const stream = writeStream(function (data, enc, cb) {
136
+ messages.push(JSON.parse(data))
137
+ if (messages.length === 2) {
138
+ const msg1 = messages[0]
139
+ plan.equal(msg1.msg, 'foo bar baz foobar')
140
+
141
+ const msg2 = messages[1]
142
+ plan.equal(msg2.msg, 'foo bar baz foobar barfoo foofoo')
143
+ }
144
+ cb()
145
+ })
146
+ const log = pino({}, multistream({ stream }))
147
+ log.info('%s %s %s %s', 'foo', 'bar', 'baz', 'foobar') // apply not invoked
148
+ log.info('%s %s %s %s %s %s', 'foo', 'bar', 'baz', 'foobar', 'barfoo', 'foofoo') // apply invoked
149
+
150
+ await plan
151
+ })
152
+
153
+ test('supports children', async (t) => {
154
+ const plan = tspl(t, { plan: 2 })
155
+ const stream = writeStream(function (data, enc, cb) {
156
+ const input = JSON.parse(data)
157
+ plan.equal(input.msg, 'child stream')
158
+ plan.equal(input.child, 'one')
159
+ cb()
160
+ })
161
+ const streams = [
162
+ { stream }
163
+ ]
164
+ const log = pino({}, multistream(streams)).child({ child: 'one' })
165
+ log.info('child stream')
166
+
167
+ await plan
168
+ })
169
+
170
+ test('supports grandchildren', async (t) => {
171
+ const plan = tspl(t, { plan: 9 })
172
+ const messages = []
173
+ const stream = writeStream(function (data, enc, cb) {
174
+ messages.push(JSON.parse(data))
175
+ if (messages.length === 3) {
176
+ const msg1 = messages[0]
177
+ plan.equal(msg1.msg, 'grandchild stream')
178
+ plan.equal(msg1.child, 'one')
179
+ plan.equal(msg1.grandchild, 'two')
180
+
181
+ const msg2 = messages[1]
182
+ plan.equal(msg2.msg, 'grandchild stream')
183
+ plan.equal(msg2.child, 'one')
184
+ plan.equal(msg2.grandchild, 'two')
185
+
186
+ const msg3 = messages[2]
187
+ plan.equal(msg3.msg, 'debug grandchild')
188
+ plan.equal(msg3.child, 'one')
189
+ plan.equal(msg3.grandchild, 'two')
190
+ }
191
+ cb()
192
+ })
193
+ const streams = [
194
+ { stream },
195
+ { level: 'debug', stream }
196
+ ]
197
+ const log = pino({
198
+ level: 'debug'
199
+ }, multistream(streams)).child({ child: 'one' }).child({ grandchild: 'two' })
200
+ log.info('grandchild stream')
201
+ log.debug('debug grandchild')
202
+
203
+ await plan
204
+ })
205
+
206
+ test('supports custom levels', (t, end) => {
207
+ const stream = writeStream(function (data, enc, cb) {
208
+ assert.equal(JSON.parse(data).msg, 'bar')
209
+ end()
210
+ })
211
+ const log = pino({
212
+ customLevels: {
213
+ foo: 35
214
+ }
215
+ }, multistream([{ level: 35, stream }]))
216
+ log.foo('bar')
217
+ })
218
+
219
+ test('supports pretty print', async (t) => {
220
+ const plan = tspl(t, { plan: 2 })
221
+ const stream = writeStream(function (data, enc, cb) {
222
+ plan.equal(strip(data.toString()).match(/INFO.*: pretty print/) != null, true)
223
+ cb()
224
+ })
225
+
226
+ const safeBoom = proxyquire('pino-pretty/lib/utils/build-safe-sonic-boom.js', {
227
+ 'sonic-boom': function () {
228
+ plan.ok('sonic created')
229
+ stream.flushSync = () => {}
230
+ stream.flush = () => {}
231
+ return stream
232
+ }
233
+ })
234
+ const nested = proxyquire('pino-pretty/lib/utils/index.js', {
235
+ './build-safe-sonic-boom.js': safeBoom
236
+ })
237
+ const pretty = proxyquire('pino-pretty', {
238
+ './lib/utils/index.js': nested
239
+ })
240
+
241
+ const log = pino({
242
+ level: 'debug',
243
+ name: 'helloName'
244
+ }, multistream([
245
+ { stream: pretty() }
246
+ ]))
247
+
248
+ log.info('pretty print')
249
+
250
+ await plan
251
+ })
252
+
253
+ test('emit propagates events to each stream', async (t) => {
254
+ const plan = tspl(t, { plan: 3 })
255
+ const handler = function (data) {
256
+ plan.equal(data.msg, 'world')
257
+ }
258
+ const streams = [sink(), sink(), sink()]
259
+ streams.forEach(function (s) {
260
+ s.once('hello', handler)
261
+ })
262
+ const stream = multistream(streams)
263
+ stream.emit('hello', { msg: 'world' })
264
+
265
+ await plan
266
+ })
267
+
268
+ test('children support custom levels', async (t) => {
269
+ const plan = tspl(t, { plan: 1 })
270
+ const stream = writeStream(function (data, enc, cb) {
271
+ plan.equal(JSON.parse(data).msg, 'bar')
272
+ })
273
+ const parent = pino({
274
+ customLevels: {
275
+ foo: 35
276
+ }
277
+ }, multistream([{ level: 35, stream }]))
278
+ const child = parent.child({ child: 'yes' })
279
+ child.foo('bar')
280
+
281
+ await plan
282
+ })
283
+
284
+ test('levelVal overrides level', async () => {
285
+ let messageCount = 0
286
+ const stream = writeStream(function (data, enc, cb) {
287
+ messageCount += 1
288
+ cb()
289
+ })
290
+ const streams = [
291
+ { stream },
292
+ { level: 'blabla', levelVal: 15, stream },
293
+ { level: 60, stream }
294
+ ]
295
+ const log = pino({
296
+ level: 'debug'
297
+ }, multistream(streams))
298
+ log.info('info stream')
299
+ log.debug('debug stream')
300
+ log.fatal('fatal stream')
301
+ assert.equal(messageCount, 6)
302
+ })
303
+
304
+ test('forwards metadata', async (t) => {
305
+ const plan = tspl(t, { plan: 4 })
306
+ const streams = [
307
+ {
308
+ stream: {
309
+ [Symbol.for('pino.metadata')]: true,
310
+ write (chunk) {
311
+ plan.equal(log, this.lastLogger)
312
+ plan.equal(30, this.lastLevel)
313
+ plan.deepEqual({ hello: 'world' }, this.lastObj)
314
+ plan.deepEqual('a msg', this.lastMsg)
315
+ }
316
+ }
317
+ }
318
+ ]
319
+
320
+ const log = pino({
321
+ level: 'debug'
322
+ }, multistream(streams))
323
+
324
+ log.info({ hello: 'world' }, 'a msg')
325
+
326
+ await plan
327
+ })
328
+
329
+ test('forward name', async (t) => {
330
+ const plan = tspl(t, { plan: 2 })
331
+ const streams = [
332
+ {
333
+ stream: {
334
+ [Symbol.for('pino.metadata')]: true,
335
+ write (chunk) {
336
+ const line = JSON.parse(chunk)
337
+ plan.equal(line.name, 'helloName')
338
+ plan.equal(line.hello, 'world')
339
+ }
340
+ }
341
+ }
342
+ ]
343
+
344
+ const log = pino({
345
+ level: 'debug',
346
+ name: 'helloName'
347
+ }, multistream(streams))
348
+
349
+ log.info({ hello: 'world' }, 'a msg')
350
+
351
+ await plan
352
+ })
353
+
354
+ test('forward name with child', async (t) => {
355
+ const plan = tspl(t, { plan: 3 })
356
+ const streams = [
357
+ {
358
+ stream: {
359
+ write (chunk) {
360
+ const line = JSON.parse(chunk)
361
+ plan.equal(line.name, 'helloName')
362
+ plan.equal(line.hello, 'world')
363
+ plan.equal(line.component, 'aComponent')
364
+ }
365
+ }
366
+ }
367
+ ]
368
+
369
+ const log = pino({
370
+ level: 'debug',
371
+ name: 'helloName'
372
+ }, multistream(streams)).child({ component: 'aComponent' })
373
+
374
+ log.info({ hello: 'world' }, 'a msg')
375
+
376
+ await plan
377
+ })
378
+
379
+ test('clone generates a new multistream with all stream at the same level', async (t) => {
380
+ const plan = tspl(t, { plan: 14 })
381
+ let messageCount = 0
382
+ const stream = writeStream(function (data, enc, cb) {
383
+ messageCount += 1
384
+ cb()
385
+ })
386
+ const streams = [
387
+ { stream },
388
+ { level: 'debug', stream },
389
+ { level: 'trace', stream },
390
+ { level: 'fatal', stream }
391
+ ]
392
+ const ms = multistream(streams)
393
+ const clone = ms.clone(30)
394
+
395
+ // eslint-disable-next-line eqeqeq
396
+ plan.equal(clone != ms, true)
397
+
398
+ clone.streams.forEach((s, i) => {
399
+ // eslint-disable-next-line eqeqeq
400
+ plan.equal(s != streams[i], true)
401
+ plan.equal(s.stream, streams[i].stream)
402
+ plan.equal(s.level, 30)
403
+ })
404
+
405
+ const log = pino({
406
+ level: 'trace'
407
+ }, clone)
408
+
409
+ log.info('info stream')
410
+ log.debug('debug message not counted')
411
+ log.fatal('fatal stream')
412
+ plan.equal(messageCount, 8)
413
+
414
+ await plan
415
+ })
416
+
417
+ test('one stream', async () => {
418
+ let messageCount = 0
419
+ const stream = writeStream(function (data, enc, cb) {
420
+ messageCount += 1
421
+ cb()
422
+ })
423
+ const log = pino({
424
+ level: 'trace'
425
+ }, multistream({ stream, level: 'fatal' }))
426
+ log.info('info stream')
427
+ log.debug('debug stream')
428
+ log.fatal('fatal stream')
429
+ assert.equal(messageCount, 1)
430
+ })
431
+
432
+ test('dedupe', async () => {
433
+ let messageCount = 0
434
+ const stream1 = writeStream(function (data, enc, cb) {
435
+ messageCount -= 1
436
+ cb()
437
+ })
438
+
439
+ const stream2 = writeStream(function (data, enc, cb) {
440
+ messageCount += 1
441
+ cb()
442
+ })
443
+
444
+ const streams = [
445
+ {
446
+ stream: stream1,
447
+ level: 'info'
448
+ },
449
+ {
450
+ stream: stream2,
451
+ level: 'fatal'
452
+ }
453
+ ]
454
+
455
+ const log = pino({
456
+ level: 'trace'
457
+ }, multistream(streams, { dedupe: true }))
458
+ log.info('info stream')
459
+ log.fatal('fatal stream')
460
+ log.fatal('fatal stream')
461
+ assert.equal(messageCount, 1)
462
+ })
463
+
464
+ test('dedupe when logs have different levels', async () => {
465
+ let messageCount = 0
466
+ const stream1 = writeStream(function (data, enc, cb) {
467
+ messageCount += 1
468
+ cb()
469
+ })
470
+
471
+ const stream2 = writeStream(function (data, enc, cb) {
472
+ messageCount += 2
473
+ cb()
474
+ })
475
+
476
+ const streams = [
477
+ {
478
+ stream: stream1,
479
+ level: 'info'
480
+ },
481
+ {
482
+ stream: stream2,
483
+ level: 'error'
484
+ }
485
+ ]
486
+
487
+ const log = pino({
488
+ level: 'trace'
489
+ }, multistream(streams, { dedupe: true }))
490
+
491
+ log.info('info stream')
492
+ log.warn('warn stream')
493
+ log.error('error streams')
494
+ log.fatal('fatal streams')
495
+ assert.equal(messageCount, 6)
496
+ })
497
+
498
+ test('dedupe when some streams has the same level', async () => {
499
+ let messageCount = 0
500
+ const stream1 = writeStream(function (data, enc, cb) {
501
+ messageCount -= 1
502
+ cb()
503
+ })
504
+
505
+ const stream2 = writeStream(function (data, enc, cb) {
506
+ messageCount += 1
507
+ cb()
508
+ })
509
+
510
+ const stream3 = writeStream(function (data, enc, cb) {
511
+ messageCount += 1
512
+ cb()
513
+ })
514
+
515
+ const streams = [
516
+ {
517
+ stream: stream1,
518
+ level: 'info'
519
+ },
520
+ {
521
+ stream: stream2,
522
+ level: 'fatal'
523
+ },
524
+ {
525
+ stream: stream3,
526
+ level: 'fatal'
527
+ }
528
+ ]
529
+
530
+ const log = pino({
531
+ level: 'trace'
532
+ }, multistream(streams, { dedupe: true }))
533
+ log.info('info stream')
534
+ log.fatal('fatal streams')
535
+ log.fatal('fatal streams')
536
+ assert.equal(messageCount, 3)
537
+ })
538
+
539
+ test('no stream', async () => {
540
+ const log = pino({
541
+ level: 'trace'
542
+ }, multistream())
543
+ log.info('info stream')
544
+ log.debug('debug stream')
545
+ log.fatal('fatal stream')
546
+ })
547
+
548
+ test('one stream', async () => {
549
+ let messageCount = 0
550
+ const stream = writeStream(function (data, enc, cb) {
551
+ messageCount += 1
552
+ cb()
553
+ })
554
+ const log = pino({
555
+ level: 'trace'
556
+ }, multistream(stream))
557
+ log.info('info stream')
558
+ log.debug('debug stream')
559
+ log.fatal('fatal stream')
560
+ assert.equal(messageCount, 2)
561
+ })
562
+
563
+ test('add a stream', async () => {
564
+ let messageCount = 0
565
+ const stream = writeStream(function (data, enc, cb) {
566
+ messageCount += 1
567
+ cb()
568
+ })
569
+
570
+ const log = pino({
571
+ level: 'trace'
572
+ }, multistream().add(stream))
573
+ log.info('info stream')
574
+ log.debug('debug stream')
575
+ log.fatal('fatal stream')
576
+ assert.equal(messageCount, 2)
577
+ })
578
+
579
+ test('remove a stream', async () => {
580
+ let messageCount1 = 0
581
+ let messageCount2 = 0
582
+ let messageCount3 = 0
583
+
584
+ const stream1 = writeStream(function (data, enc, cb) {
585
+ messageCount1 += 1
586
+ cb()
587
+ })
588
+
589
+ const stream2 = writeStream(function (data, enc, cb) {
590
+ messageCount2 += 1
591
+ cb()
592
+ })
593
+
594
+ const stream3 = writeStream(function (data, enc, cb) {
595
+ messageCount3 += 1
596
+ cb()
597
+ })
598
+
599
+ const multi = multistream()
600
+ const log = pino({ level: 'trace', sync: true }, multi)
601
+
602
+ multi.add(stream1)
603
+ const id1 = multi.lastId
604
+
605
+ multi.add(stream2)
606
+ const id2 = multi.lastId
607
+
608
+ multi.add(stream3)
609
+ const id3 = multi.lastId
610
+
611
+ log.info('line')
612
+ multi.remove(id1)
613
+
614
+ log.info('line')
615
+ multi.remove(id2)
616
+
617
+ log.info('line')
618
+ multi.remove(id3)
619
+
620
+ log.info('line')
621
+ multi.remove(Math.floor(Math.random() * 1000)) // non-existing id
622
+
623
+ assert.equal(messageCount1, 1)
624
+ assert.equal(messageCount2, 2)
625
+ assert.equal(messageCount3, 3)
626
+ })
627
+
628
+ test('multistream.add throws if not a stream', async () => {
629
+ try {
630
+ pino({
631
+ level: 'trace'
632
+ }, multistream().add({}))
633
+ } catch (_) {
634
+ }
635
+ })
636
+
637
+ test('multistream throws if not a stream', async () => {
638
+ try {
639
+ pino({
640
+ level: 'trace'
641
+ }, multistream({}))
642
+ } catch (_) {
643
+ }
644
+ })
645
+
646
+ test('multistream.write should not throw if one stream fails', async () => {
647
+ let messageCount = 0
648
+ const stream = writeStream(function (data, enc, cb) {
649
+ messageCount += 1
650
+ cb()
651
+ })
652
+ const noopStream = pino.transport({
653
+ target: join(__dirname, 'fixtures', 'noop-transport.js')
654
+ })
655
+ // eslint-disable-next-line
656
+ noopStream.on('error', function (err) {
657
+ // something went wrong while writing to noop stream, ignoring!
658
+ })
659
+ const log = pino({
660
+ level: 'trace'
661
+ },
662
+ multistream([
663
+ {
664
+ level: 'trace',
665
+ stream
666
+ },
667
+ {
668
+ level: 'debug',
669
+ stream: noopStream
670
+ }
671
+ ])
672
+ )
673
+ log.debug('0')
674
+ noopStream.end()
675
+ // noop stream is ending, should emit an error but not throw
676
+ log.debug('1')
677
+ log.debug('2')
678
+ assert.equal(messageCount, 3)
679
+ })
680
+
681
+ test('flushSync', async (t) => {
682
+ const plan = tspl(t, { plan: 2 })
683
+ const tmp = file()
684
+ const destination = pino.destination({ dest: tmp, sync: false, minLength: 4096 })
685
+ const stream = multistream([{ level: 'info', stream: destination }])
686
+ const log = pino({ level: 'info' }, stream)
687
+ destination.on('ready', () => {
688
+ log.info('foo')
689
+ log.info('bar')
690
+ stream.flushSync()
691
+ plan.equal(readFileSync(tmp, { encoding: 'utf-8' }).split('\n').length - 1, 2)
692
+ log.info('biz')
693
+ stream.flushSync()
694
+ plan.equal(readFileSync(tmp, { encoding: 'utf-8' }).split('\n').length - 1, 3)
695
+ })
696
+
697
+ await plan
698
+ })
699
+
700
+ test('ends all streams', async (t) => {
701
+ const plan = tspl(t, { plan: 7 })
702
+ const stream = writeStream(function (data, enc, cb) {
703
+ plan.ok('message')
704
+ cb()
705
+ })
706
+ stream.flushSync = function () {
707
+ plan.ok('flushSync')
708
+ }
709
+ // stream2 has no flushSync
710
+ const stream2 = writeStream(function (data, enc, cb) {
711
+ plan.ok('message2')
712
+ cb()
713
+ })
714
+ const streams = [
715
+ { stream },
716
+ { level: 'debug', stream },
717
+ { level: 'trace', stream: stream2 },
718
+ { level: 'fatal', stream },
719
+ { level: 'silent', stream }
720
+ ]
721
+ const multi = multistream(streams)
722
+ const log = pino({
723
+ level: 'trace'
724
+ }, multi)
725
+ log.info('info stream')
726
+ multi.end()
727
+
728
+ await plan
729
+ })