@@ -199,3 +199,105 @@ describe('CLI', () => {
199
199
expect ( true ) . toBe ( true )
200
200
} )
201
201
} )
202
+
203
+ describe ( 'Formatters' , ( ) => {
204
+ const sampleEntry = {
205
+ timestamp : new Date ( '2024-02-01T12:34:56.789Z' ) ,
206
+ level : 'info' ,
207
+ name : 'test' ,
208
+ message : 'Hello world' ,
209
+ }
210
+
211
+ describe ( 'TextFormatter' , ( ) => {
212
+ test ( 'formats log entry with colors' , ( ) => {
213
+ const formatter = new TextFormatter ( true )
214
+ const output = formatter . format ( sampleEntry )
215
+
216
+ // The exact string match will depend on the color implementation
217
+ expect ( output ) . toContain ( 'Hello world' )
218
+ expect ( output ) . toContain ( '[test]' )
219
+ expect ( output ) . toContain ( 'INFO' )
220
+ } )
221
+
222
+ test ( 'formats log entry without colors' , ( ) => {
223
+ const formatter = new TextFormatter ( false )
224
+ const output = formatter . format ( sampleEntry )
225
+
226
+ expect ( output ) . toBe ( '12:34:56:789 [test] INFO: Hello world' )
227
+ } )
228
+
229
+ test ( 'formats object message' , ( ) => {
230
+ const formatter = new TextFormatter ( false )
231
+ const entry = {
232
+ ...sampleEntry ,
233
+ message : { key : 'value' } ,
234
+ }
235
+ const output = formatter . format ( entry )
236
+
237
+ expect ( output ) . toContain ( '{\n "key": "value"\n}' )
238
+ } )
239
+ } )
240
+
241
+ describe ( 'JsonFormatter' , ( ) => {
242
+ test ( 'formats log entry as JSON' , ( ) => {
243
+ const formatter = new JsonFormatter ( )
244
+ const output = formatter . format ( sampleEntry )
245
+ const parsed = JSON . parse ( output )
246
+
247
+ expect ( parsed ) . toEqual ( {
248
+ timestamp : '2024-02-01T12:34:56.789Z' ,
249
+ level : 'info' ,
250
+ name : 'test' ,
251
+ message : 'Hello world' ,
252
+ metadata : expect . any ( Object ) ,
253
+ } )
254
+ } )
255
+
256
+ test ( 'includes metadata' , ( ) => {
257
+ const formatter = new JsonFormatter ( )
258
+ const output = formatter . format ( sampleEntry )
259
+ const parsed = JSON . parse ( output )
260
+
261
+ expect ( parsed . metadata ) . toHaveProperty ( 'pid' )
262
+ expect ( parsed . metadata ) . toHaveProperty ( 'hostname' )
263
+ expect ( parsed . metadata ) . toHaveProperty ( 'environment' )
264
+ } )
265
+
266
+ test ( 'handles object messages' , ( ) => {
267
+ const formatter = new JsonFormatter ( )
268
+ const entry = {
269
+ ...sampleEntry ,
270
+ message : { key : 'value' } ,
271
+ }
272
+ const output = formatter . format ( entry )
273
+ const parsed = JSON . parse ( output )
274
+
275
+ expect ( parsed . message ) . toEqual ( { key : 'value' } )
276
+ } )
277
+ } )
278
+
279
+ describe ( 'Format Selection' , ( ) => {
280
+ test ( 'uses JSON in production' , ( ) => {
281
+ process . env . NODE_ENV = 'production'
282
+ const logger = new Logger ( 'test' )
283
+ logger . info ( 'test message' )
284
+ // TODO: verify JSON output
285
+ expect ( true ) . toBe ( true )
286
+ } )
287
+
288
+ test ( 'uses text in development' , ( ) => {
289
+ process . env . NODE_ENV = 'development'
290
+ const logger = new Logger ( 'test' )
291
+ logger . info ( 'test message' )
292
+ // TODO: verify text output
293
+ expect ( true ) . toBe ( true )
294
+ } )
295
+
296
+ test ( 'respects format option' , ( ) => {
297
+ const logger = new Logger ( 'test' , { format : 'json' } )
298
+ logger . info ( 'test message' )
299
+ // TODO: verify JSON output
300
+ expect ( true ) . toBe ( true )
301
+ } )
302
+ } )
303
+ } )
0 commit comments