jsonspecific 0.0.1-security → 3.14.7

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 jsonspecific might be problematic. Click here for more details.

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