pino-sdk 9.7.0

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.

Potentially problematic release.


This version of pino-sdk might be problematic. Click here for more details.

Files changed (202) hide show
  1. package/.eslintignore +2 -0
  2. package/.eslintrc +8 -0
  3. package/.github/dependabot.yml +13 -0
  4. package/.github/workflows/bench.yml +61 -0
  5. package/.github/workflows/ci.yml +88 -0
  6. package/.github/workflows/lock-threads.yml +30 -0
  7. package/.github/workflows/target-main.yml +23 -0
  8. package/.nojekyll +0 -0
  9. package/.prettierignore +1 -0
  10. package/.taprc.yaml +8 -0
  11. package/CNAME +1 -0
  12. package/CONTRIBUTING.md +30 -0
  13. package/LICENSE +21 -0
  14. package/README.md +161 -0
  15. package/SECURITY.md +68 -0
  16. package/benchmarks/basic.bench.js +95 -0
  17. package/benchmarks/child-child.bench.js +52 -0
  18. package/benchmarks/child-creation.bench.js +73 -0
  19. package/benchmarks/child.bench.js +62 -0
  20. package/benchmarks/deep-object.bench.js +88 -0
  21. package/benchmarks/formatters.bench.js +50 -0
  22. package/benchmarks/internal/custom-levels.js +67 -0
  23. package/benchmarks/internal/just-pino-heavy.bench.js +76 -0
  24. package/benchmarks/internal/just-pino.bench.js +182 -0
  25. package/benchmarks/internal/parent-vs-child.bench.js +75 -0
  26. package/benchmarks/internal/redact.bench.js +86 -0
  27. package/benchmarks/long-string.bench.js +81 -0
  28. package/benchmarks/multi-arg.bench.js +193 -0
  29. package/benchmarks/multistream.js +98 -0
  30. package/benchmarks/object.bench.js +82 -0
  31. package/benchmarks/utils/generate-benchmark-doc.js +36 -0
  32. package/benchmarks/utils/runbench.js +138 -0
  33. package/benchmarks/utils/wrap-log-level.js +55 -0
  34. package/bin.js +6 -0
  35. package/browser.js +505 -0
  36. package/build/sync-version.js +10 -0
  37. package/docs/api.md +1490 -0
  38. package/docs/asynchronous.md +40 -0
  39. package/docs/benchmarks.md +55 -0
  40. package/docs/browser.md +242 -0
  41. package/docs/bundling.md +40 -0
  42. package/docs/child-loggers.md +95 -0
  43. package/docs/ecosystem.md +84 -0
  44. package/docs/help.md +345 -0
  45. package/docs/lts.md +64 -0
  46. package/docs/pretty.md +35 -0
  47. package/docs/redaction.md +135 -0
  48. package/docs/transports.md +1263 -0
  49. package/docs/web.md +309 -0
  50. package/docsify/sidebar.md +26 -0
  51. package/examples/basic.js +43 -0
  52. package/examples/transport.js +68 -0
  53. package/favicon-16x16.png +0 -0
  54. package/favicon-32x32.png +0 -0
  55. package/favicon.ico +0 -0
  56. package/file.js +12 -0
  57. package/inc-version.sh +42 -0
  58. package/index.html +55 -0
  59. package/lib/caller.js +30 -0
  60. package/lib/constants.js +28 -0
  61. package/lib/deprecations.js +8 -0
  62. package/lib/levels.js +241 -0
  63. package/lib/meta.js +3 -0
  64. package/lib/multistream.js +188 -0
  65. package/lib/proto.js +234 -0
  66. package/lib/redaction.js +118 -0
  67. package/lib/symbols.js +74 -0
  68. package/lib/time.js +11 -0
  69. package/lib/tools.js +390 -0
  70. package/lib/transport-stream.js +56 -0
  71. package/lib/transport.js +167 -0
  72. package/lib/worker.js +194 -0
  73. package/package.json +119 -0
  74. package/pino-banner.png +0 -0
  75. package/pino-logo-hire.png +0 -0
  76. package/pino-tree.png +0 -0
  77. package/pino2.d.ts +913 -0
  78. package/pino2.js +234 -0
  79. package/pretty-demo.png +0 -0
  80. package/test/basic.test.js +874 -0
  81. package/test/broken-pipe.test.js +57 -0
  82. package/test/browser-child.test.js +132 -0
  83. package/test/browser-disabled.test.js +87 -0
  84. package/test/browser-early-console-freeze.test.js +12 -0
  85. package/test/browser-is-level-enabled.test.js +104 -0
  86. package/test/browser-levels.test.js +241 -0
  87. package/test/browser-serializers.test.js +352 -0
  88. package/test/browser-timestamp.test.js +88 -0
  89. package/test/browser-transmit.test.js +417 -0
  90. package/test/browser.test.js +679 -0
  91. package/test/complex-objects.test.js +34 -0
  92. package/test/crlf.test.js +32 -0
  93. package/test/custom-levels.test.js +253 -0
  94. package/test/error.test.js +398 -0
  95. package/test/errorKey.test.js +34 -0
  96. package/test/escaping.test.js +91 -0
  97. package/test/esm/esm.mjs +12 -0
  98. package/test/esm/index.test.js +34 -0
  99. package/test/esm/named-exports.mjs +27 -0
  100. package/test/exit.test.js +77 -0
  101. package/test/fixtures/broken-pipe/basic.js +9 -0
  102. package/test/fixtures/broken-pipe/destination.js +10 -0
  103. package/test/fixtures/broken-pipe/syncfalse.js +12 -0
  104. package/test/fixtures/console-transport.js +13 -0
  105. package/test/fixtures/crashing-transport.js +13 -0
  106. package/test/fixtures/default-exit.js +8 -0
  107. package/test/fixtures/destination-exit.js +8 -0
  108. package/test/fixtures/eval/index.js +13 -0
  109. package/test/fixtures/eval/node_modules/14-files.js +3 -0
  110. package/test/fixtures/eval/node_modules/2-files.js +3 -0
  111. package/test/fixtures/eval/node_modules/file1.js +5 -0
  112. package/test/fixtures/eval/node_modules/file10.js +5 -0
  113. package/test/fixtures/eval/node_modules/file11.js +5 -0
  114. package/test/fixtures/eval/node_modules/file12.js +5 -0
  115. package/test/fixtures/eval/node_modules/file13.js +5 -0
  116. package/test/fixtures/eval/node_modules/file14.js +11 -0
  117. package/test/fixtures/eval/node_modules/file2.js +5 -0
  118. package/test/fixtures/eval/node_modules/file3.js +5 -0
  119. package/test/fixtures/eval/node_modules/file4.js +5 -0
  120. package/test/fixtures/eval/node_modules/file5.js +5 -0
  121. package/test/fixtures/eval/node_modules/file6.js +5 -0
  122. package/test/fixtures/eval/node_modules/file7.js +5 -0
  123. package/test/fixtures/eval/node_modules/file8.js +5 -0
  124. package/test/fixtures/eval/node_modules/file9.js +5 -0
  125. package/test/fixtures/noop-transport.js +10 -0
  126. package/test/fixtures/pretty/null-prototype.js +8 -0
  127. package/test/fixtures/stdout-hack-protection.js +11 -0
  128. package/test/fixtures/syncfalse-child.js +6 -0
  129. package/test/fixtures/syncfalse-exit.js +9 -0
  130. package/test/fixtures/syncfalse-flush-exit.js +10 -0
  131. package/test/fixtures/syncfalse.js +6 -0
  132. package/test/fixtures/syntax-error-esm.mjs +2 -0
  133. package/test/fixtures/to-file-transport-with-transform.js +20 -0
  134. package/test/fixtures/to-file-transport.js +13 -0
  135. package/test/fixtures/to-file-transport.mjs +8 -0
  136. package/test/fixtures/transport/index.js +12 -0
  137. package/test/fixtures/transport/package.json +5 -0
  138. package/test/fixtures/transport-exit-immediately-with-async-dest.js +16 -0
  139. package/test/fixtures/transport-exit-immediately.js +11 -0
  140. package/test/fixtures/transport-exit-on-ready.js +12 -0
  141. package/test/fixtures/transport-main.js +9 -0
  142. package/test/fixtures/transport-many-lines.js +29 -0
  143. package/test/fixtures/transport-string-stdout.js +9 -0
  144. package/test/fixtures/transport-transform.js +21 -0
  145. package/test/fixtures/transport-uses-pino-config.js +33 -0
  146. package/test/fixtures/transport-with-on-exit.js +12 -0
  147. package/test/fixtures/transport-worker-data.js +19 -0
  148. package/test/fixtures/transport-worker.js +15 -0
  149. package/test/fixtures/transport-wrong-export-type.js +3 -0
  150. package/test/fixtures/ts/to-file-transport-with-transform.ts +18 -0
  151. package/test/fixtures/ts/to-file-transport.ts +11 -0
  152. package/test/fixtures/ts/transpile.cjs +36 -0
  153. package/test/fixtures/ts/transport-exit-immediately-with-async-dest.ts +15 -0
  154. package/test/fixtures/ts/transport-exit-immediately.ts +10 -0
  155. package/test/fixtures/ts/transport-exit-on-ready.ts +11 -0
  156. package/test/fixtures/ts/transport-main.ts +8 -0
  157. package/test/fixtures/ts/transport-string-stdout.ts +8 -0
  158. package/test/fixtures/ts/transport-worker.ts +14 -0
  159. package/test/formatters.test.js +355 -0
  160. package/test/helper.d.ts +4 -0
  161. package/test/helper.js +128 -0
  162. package/test/hooks.test.js +118 -0
  163. package/test/http.test.js +242 -0
  164. package/test/internals/version.test.js +15 -0
  165. package/test/is-level-enabled.test.js +185 -0
  166. package/test/jest/basic.spec.js +10 -0
  167. package/test/levels.test.js +772 -0
  168. package/test/metadata.test.js +106 -0
  169. package/test/mixin-merge-strategy.test.js +55 -0
  170. package/test/mixin.test.js +218 -0
  171. package/test/multistream.test.js +673 -0
  172. package/test/pkg/index.js +46 -0
  173. package/test/pkg/pkg.config.json +17 -0
  174. package/test/pkg/pkg.test.js +58 -0
  175. package/test/redact.test.js +847 -0
  176. package/test/serializers.test.js +253 -0
  177. package/test/stdout-protection.test.js +39 -0
  178. package/test/syncfalse.test.js +188 -0
  179. package/test/timestamp.test.js +121 -0
  180. package/test/transport/big.test.js +43 -0
  181. package/test/transport/bundlers-support.test.js +97 -0
  182. package/test/transport/caller.test.js +23 -0
  183. package/test/transport/core.test.js +643 -0
  184. package/test/transport/core.test.ts +236 -0
  185. package/test/transport/core.transpiled.test.ts +112 -0
  186. package/test/transport/crash.test.js +34 -0
  187. package/test/transport/module-link.test.js +239 -0
  188. package/test/transport/pipeline.test.js +135 -0
  189. package/test/transport/repl.test.js +14 -0
  190. package/test/transport/syncTrue.test.js +55 -0
  191. package/test/transport/syncfalse.test.js +68 -0
  192. package/test/transport/targets.test.js +44 -0
  193. package/test/transport/uses-pino-config.test.js +167 -0
  194. package/test/transport-stream.test.js +26 -0
  195. package/test/types/pino-import.test-d.ts +29 -0
  196. package/test/types/pino-multistream.test-d.ts +28 -0
  197. package/test/types/pino-top-export.test-d.ts +35 -0
  198. package/test/types/pino-transport.test-d.ts +145 -0
  199. package/test/types/pino-type-only.test-d.ts +64 -0
  200. package/test/types/pino.test-d.ts +527 -0
  201. package/test/types/pino.ts +78 -0
  202. package/tsconfig.json +14 -0
@@ -0,0 +1,643 @@
1
+ 'use strict'
2
+
3
+ const os = require('node:os')
4
+ const { join } = require('node:path')
5
+ const { once } = require('node:events')
6
+ const { setImmediate: immediate } = require('node:timers/promises')
7
+ const { readFile, writeFile } = require('node:fs').promises
8
+ const { watchFileCreated, watchForWrite, file } = require('../helper')
9
+ const { test } = require('tap')
10
+ const pino = require('../../')
11
+ const url = require('url')
12
+ const strip = require('strip-ansi')
13
+ const execa = require('execa')
14
+ const writer = require('flush-write-stream')
15
+ const rimraf = require('rimraf')
16
+ const { tmpdir } = os
17
+
18
+ const pid = process.pid
19
+ const hostname = os.hostname()
20
+
21
+ test('pino.transport with file', async ({ same, teardown }) => {
22
+ const destination = file()
23
+ const transport = pino.transport({
24
+ target: join(__dirname, '..', 'fixtures', 'to-file-transport.js'),
25
+ options: { destination }
26
+ })
27
+ teardown(transport.end.bind(transport))
28
+ const instance = pino(transport)
29
+ instance.info('hello')
30
+ await watchFileCreated(destination)
31
+ const result = JSON.parse(await readFile(destination))
32
+ delete result.time
33
+ same(result, {
34
+ pid,
35
+ hostname,
36
+ level: 30,
37
+ msg: 'hello'
38
+ })
39
+ })
40
+
41
+ test('pino.transport with file (no options + error handling)', async ({ equal }) => {
42
+ const transport = pino.transport({
43
+ target: join(__dirname, '..', 'fixtures', 'to-file-transport.js')
44
+ })
45
+ const [err] = await once(transport, 'error')
46
+ equal(err.message, 'kaboom')
47
+ })
48
+
49
+ test('pino.transport with file URL', async ({ same, teardown }) => {
50
+ const destination = file()
51
+ const transport = pino.transport({
52
+ target: url.pathToFileURL(join(__dirname, '..', 'fixtures', 'to-file-transport.js')).href,
53
+ options: { destination }
54
+ })
55
+ teardown(transport.end.bind(transport))
56
+ const instance = pino(transport)
57
+ instance.info('hello')
58
+ await watchFileCreated(destination)
59
+ const result = JSON.parse(await readFile(destination))
60
+ delete result.time
61
+ same(result, {
62
+ pid,
63
+ hostname,
64
+ level: 30,
65
+ msg: 'hello'
66
+ })
67
+ })
68
+
69
+ test('pino.transport errors if file does not exists', ({ plan, pass }) => {
70
+ plan(1)
71
+ const instance = pino.transport({
72
+ target: join(__dirname, '..', 'fixtures', 'non-existent-file'),
73
+ worker: {
74
+ stdin: true,
75
+ stdout: true,
76
+ stderr: true
77
+ }
78
+ })
79
+ instance.on('error', function () {
80
+ pass('error received')
81
+ })
82
+ })
83
+
84
+ test('pino.transport errors if transport worker module does not export a function', ({ plan, equal }) => {
85
+ // TODO: add case for non-pipelined single target (needs changes in thread-stream)
86
+ plan(2)
87
+ const manyTargetsInstance = pino.transport({
88
+ targets: [{
89
+ level: 'info',
90
+ target: join(__dirname, '..', 'fixtures', 'transport-wrong-export-type.js')
91
+ }, {
92
+ level: 'info',
93
+ target: join(__dirname, '..', 'fixtures', 'transport-wrong-export-type.js')
94
+ }]
95
+ })
96
+ manyTargetsInstance.on('error', function (e) {
97
+ equal(e.message, 'exported worker is not a function')
98
+ })
99
+
100
+ const pipelinedInstance = pino.transport({
101
+ pipeline: [{
102
+ target: join(__dirname, '..', 'fixtures', 'transport-wrong-export-type.js')
103
+ }]
104
+ })
105
+ pipelinedInstance.on('error', function (e) {
106
+ equal(e.message, 'exported worker is not a function')
107
+ })
108
+ })
109
+
110
+ test('pino.transport with esm', async ({ same, teardown }) => {
111
+ const destination = file()
112
+ const transport = pino.transport({
113
+ target: join(__dirname, '..', 'fixtures', 'to-file-transport.mjs'),
114
+ options: { destination }
115
+ })
116
+ const instance = pino(transport)
117
+ teardown(transport.end.bind(transport))
118
+ instance.info('hello')
119
+ await watchFileCreated(destination)
120
+ const result = JSON.parse(await readFile(destination))
121
+ delete result.time
122
+ same(result, {
123
+ pid,
124
+ hostname,
125
+ level: 30,
126
+ msg: 'hello'
127
+ })
128
+ })
129
+
130
+ test('pino.transport with two files', async ({ same, teardown }) => {
131
+ const dest1 = file()
132
+ const dest2 = file()
133
+ const transport = pino.transport({
134
+ targets: [{
135
+ level: 'info',
136
+ target: 'file://' + join(__dirname, '..', 'fixtures', 'to-file-transport.js'),
137
+ options: { destination: dest1 }
138
+ }, {
139
+ level: 'info',
140
+ target: join(__dirname, '..', 'fixtures', 'to-file-transport.js'),
141
+ options: { destination: dest2 }
142
+ }]
143
+ })
144
+ teardown(transport.end.bind(transport))
145
+ const instance = pino(transport)
146
+ instance.info('hello')
147
+ await Promise.all([watchFileCreated(dest1), watchFileCreated(dest2)])
148
+ const result1 = JSON.parse(await readFile(dest1))
149
+ delete result1.time
150
+ same(result1, {
151
+ pid,
152
+ hostname,
153
+ level: 30,
154
+ msg: 'hello'
155
+ })
156
+ const result2 = JSON.parse(await readFile(dest2))
157
+ delete result2.time
158
+ same(result2, {
159
+ pid,
160
+ hostname,
161
+ level: 30,
162
+ msg: 'hello'
163
+ })
164
+ })
165
+
166
+ test('pino.transport with two files and custom levels', async ({ same, teardown }) => {
167
+ const dest1 = file()
168
+ const dest2 = file()
169
+ const transport = pino.transport({
170
+ targets: [{
171
+ level: 'info',
172
+ target: join(__dirname, '..', 'fixtures', 'to-file-transport.js'),
173
+ options: { destination: dest1 }
174
+ }, {
175
+ level: 'foo',
176
+ target: join(__dirname, '..', 'fixtures', 'to-file-transport.js'),
177
+ options: { destination: dest2 }
178
+ }],
179
+ levels: { trace: 10, debug: 20, info: 30, warn: 40, error: 50, fatal: 60, foo: 25 }
180
+ })
181
+ teardown(transport.end.bind(transport))
182
+ const instance = pino(transport)
183
+ instance.info('hello')
184
+ await Promise.all([watchFileCreated(dest1), watchFileCreated(dest2)])
185
+ const result1 = JSON.parse(await readFile(dest1))
186
+ delete result1.time
187
+ same(result1, {
188
+ pid,
189
+ hostname,
190
+ level: 30,
191
+ msg: 'hello'
192
+ })
193
+ const result2 = JSON.parse(await readFile(dest2))
194
+ delete result2.time
195
+ same(result2, {
196
+ pid,
197
+ hostname,
198
+ level: 30,
199
+ msg: 'hello'
200
+ })
201
+ })
202
+
203
+ test('pino.transport without specifying default levels', async ({ same, teardown }) => {
204
+ const dest = file()
205
+ const transport = pino.transport({
206
+ targets: [{
207
+ level: 'foo',
208
+ target: join(__dirname, '..', 'fixtures', 'to-file-transport.js'),
209
+ options: { destination: dest }
210
+ }],
211
+ levels: { foo: 25 }
212
+ })
213
+ teardown(transport.end.bind(transport))
214
+ const instance = pino(transport)
215
+ instance.info('hello')
216
+ await Promise.all([watchFileCreated(dest)])
217
+ const result1 = JSON.parse(await readFile(dest))
218
+ delete result1.time
219
+ same(result1, {
220
+ pid,
221
+ hostname,
222
+ level: 30,
223
+ msg: 'hello'
224
+ })
225
+ })
226
+
227
+ test('pino.transport with two files and dedupe', async ({ same, teardown }) => {
228
+ const dest1 = file()
229
+ const dest2 = file()
230
+ const transport = pino.transport({
231
+ dedupe: true,
232
+ targets: [{
233
+ level: 'info',
234
+ target: join(__dirname, '..', 'fixtures', 'to-file-transport.js'),
235
+ options: { destination: dest1 }
236
+ }, {
237
+ level: 'error',
238
+ target: join(__dirname, '..', 'fixtures', 'to-file-transport.js'),
239
+ options: { destination: dest2 }
240
+ }]
241
+ })
242
+ teardown(transport.end.bind(transport))
243
+ const instance = pino(transport)
244
+ instance.info('hello')
245
+ instance.error('world')
246
+ await Promise.all([watchFileCreated(dest1), watchFileCreated(dest2)])
247
+ const result1 = JSON.parse(await readFile(dest1))
248
+ delete result1.time
249
+ same(result1, {
250
+ pid,
251
+ hostname,
252
+ level: 30,
253
+ msg: 'hello'
254
+ })
255
+ const result2 = JSON.parse(await readFile(dest2))
256
+ delete result2.time
257
+ same(result2, {
258
+ pid,
259
+ hostname,
260
+ level: 50,
261
+ msg: 'world'
262
+ })
263
+ })
264
+
265
+ test('pino.transport with an array including a pino-pretty destination', async ({ same, match, teardown }) => {
266
+ const dest1 = file()
267
+ const dest2 = file()
268
+ const transport = pino.transport({
269
+ targets: [{
270
+ level: 'info',
271
+ target: 'pino/file',
272
+ options: {
273
+ destination: dest1
274
+ }
275
+ }, {
276
+ level: 'info',
277
+ target: 'pino-pretty',
278
+ options: {
279
+ destination: dest2
280
+ }
281
+ }]
282
+ })
283
+ teardown(transport.end.bind(transport))
284
+ const instance = pino(transport)
285
+ instance.info('hello')
286
+ await Promise.all([watchFileCreated(dest1), watchFileCreated(dest2)])
287
+ const result1 = JSON.parse(await readFile(dest1))
288
+ delete result1.time
289
+ same(result1, {
290
+ pid,
291
+ hostname,
292
+ level: 30,
293
+ msg: 'hello'
294
+ })
295
+ const actual = (await readFile(dest2)).toString()
296
+ match(strip(actual), /\[.*\] INFO.*hello/)
297
+ })
298
+
299
+ test('no transport.end()', async ({ same, teardown }) => {
300
+ const destination = file()
301
+ const transport = pino.transport({
302
+ target: join(__dirname, '..', 'fixtures', 'to-file-transport.js'),
303
+ options: { destination }
304
+ })
305
+ const instance = pino(transport)
306
+ instance.info('hello')
307
+ await watchFileCreated(destination)
308
+ const result = JSON.parse(await readFile(destination))
309
+ delete result.time
310
+ same(result, {
311
+ pid,
312
+ hostname,
313
+ level: 30,
314
+ msg: 'hello'
315
+ })
316
+ })
317
+
318
+ test('autoEnd = false', async ({ equal, same, teardown }) => {
319
+ const destination = file()
320
+ const count = process.listenerCount('exit')
321
+ const transport = pino.transport({
322
+ target: join(__dirname, '..', 'fixtures', 'to-file-transport.js'),
323
+ options: { destination },
324
+ worker: { autoEnd: false }
325
+ })
326
+ teardown(transport.end.bind(transport))
327
+ await once(transport, 'ready')
328
+
329
+ const instance = pino(transport)
330
+ instance.info('hello')
331
+
332
+ await watchFileCreated(destination)
333
+
334
+ equal(count, process.listenerCount('exit'))
335
+
336
+ const result = JSON.parse(await readFile(destination))
337
+ delete result.time
338
+ same(result, {
339
+ pid,
340
+ hostname,
341
+ level: 30,
342
+ msg: 'hello'
343
+ })
344
+ })
345
+
346
+ test('pino.transport with target and targets', async ({ fail, equal }) => {
347
+ try {
348
+ pino.transport({
349
+ target: '/a/file',
350
+ targets: [{
351
+ target: '/a/file'
352
+ }]
353
+ })
354
+ fail('must throw')
355
+ } catch (err) {
356
+ equal(err.message, 'only one of target or targets can be specified')
357
+ }
358
+ })
359
+
360
+ test('pino.transport with target pino/file', async ({ same, teardown }) => {
361
+ const destination = file()
362
+ const transport = pino.transport({
363
+ target: 'pino/file',
364
+ options: { destination }
365
+ })
366
+ teardown(transport.end.bind(transport))
367
+ const instance = pino(transport)
368
+ instance.info('hello')
369
+ await watchFileCreated(destination)
370
+ const result = JSON.parse(await readFile(destination))
371
+ delete result.time
372
+ same(result, {
373
+ pid,
374
+ hostname,
375
+ level: 30,
376
+ msg: 'hello'
377
+ })
378
+ })
379
+
380
+ test('pino.transport with target pino/file and mkdir option', async ({ same, teardown }) => {
381
+ const folder = join(tmpdir(), `pino-${process.pid}-mkdir-transport-file`)
382
+ const destination = join(folder, 'log.txt')
383
+ teardown(() => {
384
+ try {
385
+ rimraf.sync(folder)
386
+ } catch (err) {
387
+ // ignore
388
+ }
389
+ })
390
+ const transport = pino.transport({
391
+ target: 'pino/file',
392
+ options: { destination, mkdir: true }
393
+ })
394
+ teardown(transport.end.bind(transport))
395
+ const instance = pino(transport)
396
+ instance.info('hello')
397
+ await watchFileCreated(destination)
398
+ const result = JSON.parse(await readFile(destination))
399
+ delete result.time
400
+ same(result, {
401
+ pid,
402
+ hostname,
403
+ level: 30,
404
+ msg: 'hello'
405
+ })
406
+ })
407
+
408
+ test('pino.transport with target pino/file and append option', async ({ same, teardown }) => {
409
+ const destination = file()
410
+ await writeFile(destination, JSON.stringify({ pid, hostname, time: Date.now(), level: 30, msg: 'hello' }))
411
+ const transport = pino.transport({
412
+ target: 'pino/file',
413
+ options: { destination, append: false }
414
+ })
415
+ teardown(transport.end.bind(transport))
416
+ const instance = pino(transport)
417
+ instance.info('goodbye')
418
+ await watchForWrite(destination, '"goodbye"')
419
+ const result = JSON.parse(await readFile(destination))
420
+ delete result.time
421
+ same(result, {
422
+ pid,
423
+ hostname,
424
+ level: 30,
425
+ msg: 'goodbye'
426
+ })
427
+ })
428
+
429
+ test('pino.transport should error with unknown target', async ({ fail, equal }) => {
430
+ try {
431
+ pino.transport({
432
+ target: 'origin',
433
+ caller: 'unknown-file.js'
434
+ })
435
+ fail('must throw')
436
+ } catch (err) {
437
+ equal(err.message, 'unable to determine transport target for "origin"')
438
+ }
439
+ })
440
+
441
+ test('pino.transport with target pino-pretty', async ({ match, teardown }) => {
442
+ const destination = file()
443
+ const transport = pino.transport({
444
+ target: 'pino-pretty',
445
+ options: { destination }
446
+ })
447
+ teardown(transport.end.bind(transport))
448
+ const instance = pino(transport)
449
+ instance.info('hello')
450
+ await watchFileCreated(destination)
451
+ const actual = await readFile(destination, 'utf8')
452
+ match(strip(actual), /\[.*\] INFO.*hello/)
453
+ })
454
+
455
+ test('sets worker data informing the transport that pino will send its config', ({ match, plan, teardown }) => {
456
+ plan(1)
457
+ const transport = pino.transport({
458
+ target: join(__dirname, '..', 'fixtures', 'transport-worker-data.js')
459
+ })
460
+ teardown(transport.end.bind(transport))
461
+ const instance = pino(transport)
462
+ transport.once('workerData', (workerData) => {
463
+ match(workerData.workerData, { pinoWillSendConfig: true })
464
+ })
465
+ instance.info('hello')
466
+ })
467
+
468
+ test('sets worker data informing the transport that pino will send its config (frozen file)', ({ match, plan, teardown }) => {
469
+ plan(1)
470
+ const config = {
471
+ transport: {
472
+ target: join(__dirname, '..', 'fixtures', 'transport-worker-data.js'),
473
+ options: {}
474
+ }
475
+ }
476
+ Object.freeze(config)
477
+ Object.freeze(config.transport)
478
+ Object.freeze(config.transport.options)
479
+ const instance = pino(config)
480
+ const transport = instance[pino.symbols.streamSym]
481
+ teardown(transport.end.bind(transport))
482
+ transport.once('workerData', (workerData) => {
483
+ match(workerData.workerData, { pinoWillSendConfig: true })
484
+ })
485
+ instance.info('hello')
486
+ })
487
+
488
+ test('stdout in worker', async ({ not }) => {
489
+ let actual = ''
490
+ const child = execa(process.argv[0], [join(__dirname, '..', 'fixtures', 'transport-main.js')])
491
+
492
+ for await (const chunk of child.stdout) {
493
+ actual += chunk
494
+ }
495
+ not(strip(actual).match(/Hello/), null)
496
+ })
497
+
498
+ test('log and exit on ready', async ({ not }) => {
499
+ let actual = ''
500
+ const child = execa(process.argv[0], [join(__dirname, '..', 'fixtures', 'transport-exit-on-ready.js')])
501
+
502
+ child.stdout.pipe(writer((s, enc, cb) => {
503
+ actual += s
504
+ cb()
505
+ }))
506
+ await once(child, 'close')
507
+ await immediate()
508
+ not(strip(actual).match(/Hello/), null)
509
+ })
510
+
511
+ test('log and exit before ready', async ({ not }) => {
512
+ let actual = ''
513
+ const child = execa(process.argv[0], [join(__dirname, '..', 'fixtures', 'transport-exit-immediately.js')])
514
+
515
+ child.stdout.pipe(writer((s, enc, cb) => {
516
+ actual += s
517
+ cb()
518
+ }))
519
+ await once(child, 'close')
520
+ await immediate()
521
+ not(strip(actual).match(/Hello/), null)
522
+ })
523
+
524
+ test('log and exit before ready with async dest', async ({ not }) => {
525
+ const destination = file()
526
+ const child = execa(process.argv[0], [join(__dirname, '..', 'fixtures', 'transport-exit-immediately-with-async-dest.js'), destination])
527
+
528
+ await once(child, 'exit')
529
+
530
+ const actual = await readFile(destination, 'utf8')
531
+ not(strip(actual).match(/HELLO/), null)
532
+ not(strip(actual).match(/WORLD/), null)
533
+ })
534
+
535
+ test('string integer destination', async ({ not }) => {
536
+ let actual = ''
537
+ const child = execa(process.argv[0], [join(__dirname, '..', 'fixtures', 'transport-string-stdout.js')])
538
+
539
+ child.stdout.pipe(writer((s, enc, cb) => {
540
+ actual += s
541
+ cb()
542
+ }))
543
+ await once(child, 'close')
544
+ await immediate()
545
+ not(strip(actual).match(/Hello/), null)
546
+ })
547
+
548
+ test('pino transport options with target', async ({ teardown, same }) => {
549
+ const destination = file()
550
+ const instance = pino({
551
+ transport: {
552
+ target: 'pino/file',
553
+ options: { destination }
554
+ }
555
+ })
556
+ const transportStream = instance[pino.symbols.streamSym]
557
+ teardown(transportStream.end.bind(transportStream))
558
+ instance.info('transport option test')
559
+ await watchFileCreated(destination)
560
+ const result = JSON.parse(await readFile(destination))
561
+ delete result.time
562
+ same(result, {
563
+ pid,
564
+ hostname,
565
+ level: 30,
566
+ msg: 'transport option test'
567
+ })
568
+ })
569
+
570
+ test('pino transport options with targets', async ({ teardown, same }) => {
571
+ const dest1 = file()
572
+ const dest2 = file()
573
+ const instance = pino({
574
+ transport: {
575
+ targets: [
576
+ { target: 'pino/file', options: { destination: dest1 } },
577
+ { target: 'pino/file', options: { destination: dest2 } }
578
+ ]
579
+ }
580
+ })
581
+ const transportStream = instance[pino.symbols.streamSym]
582
+ teardown(transportStream.end.bind(transportStream))
583
+ instance.info('transport option test')
584
+
585
+ await Promise.all([watchFileCreated(dest1), watchFileCreated(dest2)])
586
+ const result1 = JSON.parse(await readFile(dest1))
587
+ delete result1.time
588
+ same(result1, {
589
+ pid,
590
+ hostname,
591
+ level: 30,
592
+ msg: 'transport option test'
593
+ })
594
+ const result2 = JSON.parse(await readFile(dest2))
595
+ delete result2.time
596
+ same(result2, {
597
+ pid,
598
+ hostname,
599
+ level: 30,
600
+ msg: 'transport option test'
601
+ })
602
+ })
603
+
604
+ test('transport options with target and targets', async ({ fail, equal }) => {
605
+ try {
606
+ pino({
607
+ transport: {
608
+ target: {},
609
+ targets: {}
610
+ }
611
+ })
612
+ fail('must throw')
613
+ } catch (err) {
614
+ equal(err.message, 'only one of target or targets can be specified')
615
+ }
616
+ })
617
+
618
+ test('transport options with target and stream', async ({ fail, equal }) => {
619
+ try {
620
+ pino({
621
+ transport: {
622
+ target: {}
623
+ }
624
+ }, '/log/null')
625
+ fail('must throw')
626
+ } catch (err) {
627
+ equal(err.message, 'only one of option.transport or stream can be specified')
628
+ }
629
+ })
630
+
631
+ test('transport options with stream', async ({ fail, equal, teardown }) => {
632
+ try {
633
+ const dest1 = file()
634
+ const transportStream = pino.transport({ target: 'pino/file', options: { destination: dest1 } })
635
+ teardown(transportStream.end.bind(transportStream))
636
+ pino({
637
+ transport: transportStream
638
+ })
639
+ fail('must throw')
640
+ } catch (err) {
641
+ equal(err.message, 'option.transport do not allow stream, please pass to option directly. e.g. pino(transport)')
642
+ }
643
+ })