-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconsoleCaptureRuntime.test.js
More file actions
115 lines (103 loc) · 2.49 KB
/
consoleCaptureRuntime.test.js
File metadata and controls
115 lines (103 loc) · 2.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
const test = require('node:test');
const assert = require('node:assert/strict');
const {createConsoleCaptureRuntime} = require('./consoleCaptureRuntime');
function createFakeConsole() {
const calls = [];
const fakeConsole = {
log(...args) {
calls.push({level: 'log', args});
},
info(...args) {
calls.push({level: 'info', args});
},
warn(...args) {
calls.push({level: 'warn', args});
},
error(...args) {
calls.push({level: 'error', args});
},
debug(...args) {
calls.push({level: 'debug', args});
},
};
return {calls, fakeConsole};
}
test('createConsoleCaptureRuntime emits structured console events without collapsing objects', () => {
const {calls, fakeConsole} = createFakeConsole();
const events = [];
const runtime = createConsoleCaptureRuntime({
getConsole: () => fakeConsole,
emitEvent: event => {
events.push(event);
},
createTimestamp: () => '2026-04-24T00:00:00.000Z',
});
runtime.start();
fakeConsole.log('common changed:', {
from: {
Lang: 'vi',
CommentPDF: false,
},
to: {
Lang: 'vi',
AutoTransfer: false,
},
});
assert.deepEqual(calls, [
{
level: 'log',
args: [
'common changed:',
{
from: {
Lang: 'vi',
CommentPDF: false,
},
to: {
Lang: 'vi',
AutoTransfer: false,
},
},
],
},
]);
assert.deepEqual(events, [
{
level: 'log',
source: 'js.console',
timestamp: '2026-04-24T00:00:00.000Z',
message: 'common changed: {"from":{"Lang":"vi","CommentPDF":false},"to":{"Lang":"vi","AutoTransfer":false}}',
args: [
{
type: 'string',
value: 'common changed:',
},
{
type: 'object',
value: {
from: {
Lang: 'vi',
CommentPDF: false,
},
to: {
Lang: 'vi',
AutoTransfer: false,
},
},
},
],
},
]);
});
test('createConsoleCaptureRuntime restores original console methods on stop', () => {
const {fakeConsole} = createFakeConsole();
const originalLog = fakeConsole.log;
const runtime = createConsoleCaptureRuntime({
getConsole: () => fakeConsole,
emitEvent() {},
});
runtime.start();
assert.notEqual(fakeConsole.log, originalLog);
runtime.stop();
assert.equal(fakeConsole.log, originalLog);
});