This repository was archived by the owner on Aug 7, 2026. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathlog.js
More file actions
276 lines (241 loc) · 7.04 KB
/
Copy pathlog.js
File metadata and controls
276 lines (241 loc) · 7.04 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
import {Log} from '../../../src/util/log.js'
// Mock for src/util/log.js
// This file mocks the logging functionality for testing
/**
* MockLog class that mimics the Log class from src/util/log.js
* but stores logs in memory for testing instead of outputting to console or file
*/
class MockLog extends Log {
// Properties to store configuration
entity
token
isDebug
// Store logs in arrays for testing inspection
logs = []
infos = []
warns = []
errors = []
debugs = []
spinnerLogs = []
// For spinner state tracking
spinnerActive = false
currentText = ''
/**
* Creates a new MockLog instance with debug mode configuration.
* @param {string} entity - The entity name
* @param {string} token - The authentication token
* @param {boolean} [isDebug=false] - Debug mode flag
*/
constructor(entity, token, isDebug = false) {
super(entity, token, isDebug)
this.entity = entity
this.token = token
this.isDebug = isDebug
}
/**
* Masks sensitive information in messages for testing
* @param {any} value - Value to mask
* @returns {any} Masked value
*/
_maskSensitive(value) {
if (!this.token || value == null) {
return value
}
if (typeof value === 'string') {
return value.includes(this.token) ? value.replace(this.token, '***') : value
}
if (typeof value === 'object') {
const clone = Array.isArray(value) ? [...value] : {...value}
for (const key in clone) {
if (key === 'token' && typeof clone[key] === 'string') {
clone[key] = '***'
} else if (typeof clone[key] === 'string' && this.token && clone[key].includes(this.token)) {
clone[key] = clone[key].replace(this.token, '***')
} else if (typeof clone[key] === 'object' && clone[key] !== null) {
clone[key] = this._maskSensitive(clone[key])
}
}
return clone
}
return value
}
/**
* Generic log method for all log types
* @param {string|object} msg - Message to log
* @param {...any} args - Additional arguments
*/
log(msg, ...args) {
const maskedMsg = this._maskSensitive(msg)
const maskedArgs = args.map(arg => this._maskSensitive(arg))
this.logs.push({message: maskedMsg, args: maskedArgs})
}
/**
* Info level logging
* @param {string|object} msg - Message to log
* @param {...any} args - Additional arguments
*/
info(msg, ...args) {
const maskedMsg = this._maskSensitive(msg)
const maskedArgs = args.map(arg => this._maskSensitive(arg))
this.infos.push({message: maskedMsg, args: maskedArgs})
}
/**
* Warning level logging
* @param {string|object} msg - Message to log
* @param {...any} args - Additional arguments
*/
warn(msg, ...args) {
const maskedMsg = this._maskSensitive(msg)
const maskedArgs = args.map(arg => this._maskSensitive(arg))
this.warns.push({message: maskedMsg, args: maskedArgs})
}
/**
* Error level logging
* @param {string|object} msg - Message to log
* @param {...any} args - Additional arguments
*/
error(msg, ...args) {
const maskedMsg = this._maskSensitive(msg)
const maskedArgs = args.map(arg => this._maskSensitive(arg))
this.errors.push({message: maskedMsg, args: maskedArgs})
}
/**
* Debug level logging
* @param {string|object} msg - Message to log
* @param {...any} args - Additional arguments
*/
debug(msg, ...args) {
if (!this.isDebug) return
const maskedMsg = this._maskSensitive(msg)
const maskedArgs = args.map(arg => this._maskSensitive(arg))
this.debugs.push({message: maskedMsg, args: maskedArgs})
}
/**
* Start a spinner
* @param {string} text - Spinner text
*/
start(text) {
const maskedText = this._maskSensitive(text)
this.spinnerActive = true
this.currentText = maskedText
this.spinnerLogs.push({type: 'start', text: maskedText})
}
/**
* Stop and persist spinner
* @param {object} options - Options object
* @param {string} options.symbol - Symbol to display
* @param {string} options.text - Text to display
* @param {string} [options.prefixText=''] - Prefix text
* @param {string} [options.suffixText=''] - Suffix text
*/
stopAndPersist({symbol, text, prefixText = '', suffixText = ''}) {
const maskedText = this._maskSensitive(text)
const maskedPrefixText = this._maskSensitive(prefixText)
const maskedSuffixText = this._maskSensitive(suffixText)
this.spinnerActive = false
this.currentText = ''
this.spinnerLogs.push({
type: 'stopAndPersist',
symbol,
text: maskedText,
prefixText: maskedPrefixText,
suffixText: maskedSuffixText,
})
}
/**
* Show failure message
* @param {string} text - Failure message
*/
fail(text) {
const maskedText = this._maskSensitive(text)
this.spinnerActive = false
this.currentText = ''
this.spinnerLogs.push({type: 'fail', text: maskedText})
}
/**
* Update spinner text
* @param {string} newText - New text to display
*/
set text(newText) {
const maskedText = this._maskSensitive(newText)
this.currentText = maskedText
this.spinnerLogs.push({type: 'updateText', text: maskedText})
}
/**
* Get current spinner text
* @returns {string} Current spinner text
*/
get text() {
return this.currentText
}
// Testing utility methods
/**
* Reset all logs for testing
*/
_reset() {
this.logs = []
this.infos = []
this.warns = []
this.errors = []
this.debugs = []
this.spinnerLogs = []
this.spinnerActive = false
this.currentText = ''
}
/**
* Get all logs for assertions in tests
* @returns {object} All logged messages by type
*/
_getAllLogs() {
return {
logs: this.logs,
infos: this.infos,
warns: this.warns,
errors: this.errors,
debugs: this.debugs,
spinnerLogs: this.spinnerLogs,
}
}
}
// Singleton pattern like the original
let instance = null
/**
* Returns a singleton instance of the MockLog class
* @param {string} entity - The entity name
* @param {string} token - The authentication token
* @param {boolean} [isDebug=false] - Enable debug mode
* @returns {MockLog} Instance of MockLog class
*/
const mockLog = function (entity, token, isDebug = false) {
if (!instance) {
instance = new MockLog(entity, token, isDebug)
}
return instance
}
/**
* Reset the mock for fresh tests
*/
mockLog._reset = function () {
if (instance) {
instance._reset()
}
}
/**
* Create a new instance regardless of singleton state (for test isolation)
* @param {string} entity - The entity name
* @param {string} token - The authentication token
* @param {boolean} [isDebug=false] - Enable debug mode
* @returns {MockLog} New instance of MockLog class
*/
mockLog._createNew = function (entity, token, isDebug = false) {
instance = new MockLog(entity, token, isDebug)
return instance
}
/**
* Get the current instance for test inspections
* @returns {MockLog|null} Current MockLog instance or null
*/
mockLog._getInstance = function () {
return instance
}
export default mockLog