@switchbot/homebridge-switchbot 5.0.0-beta.40 → 5.0.0-beta.42
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.
- package/dist/homebridge-ui/server.js +26 -3
- package/dist/homebridge-ui/server.js.map +1 -1
- package/dist/test/apiRequestTracker.test.d.ts +2 -0
- package/dist/test/apiRequestTracker.test.d.ts.map +1 -0
- package/dist/test/apiRequestTracker.test.js +392 -0
- package/dist/test/apiRequestTracker.test.js.map +1 -0
- package/dist/test/homebridge-ui/server.test.d.ts +2 -0
- package/dist/test/homebridge-ui/server.test.d.ts.map +1 -0
- package/dist/test/homebridge-ui/server.test.js +445 -0
- package/dist/test/homebridge-ui/server.test.js.map +1 -0
- package/docs/variables/default.html +1 -1
- package/package.json +1 -1
- package/src/homebridge-ui/server.ts +27 -3
- package/src/test/apiRequestTracker.test.ts +417 -0
- package/src/test/homebridge-ui/server.test.ts +486 -0
|
@@ -0,0 +1,486 @@
|
|
|
1
|
+
import { existsSync, mkdirSync, readdirSync, readFileSync, rmdirSync, statSync, unlinkSync, writeFileSync } from 'node:fs'
|
|
2
|
+
import { tmpdir } from 'node:os'
|
|
3
|
+
import { join } from 'node:path'
|
|
4
|
+
|
|
5
|
+
import { describe, expect, it } from 'vitest'
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* Test suite for the homebridge-ui server handler logic
|
|
9
|
+
*
|
|
10
|
+
* These tests validate the cached accessory file reading logic that powers
|
|
11
|
+
* the getCachedAccessories and getCachedMatterAccessories handlers.
|
|
12
|
+
*
|
|
13
|
+
* Note: These are integration tests that test the file system logic rather than
|
|
14
|
+
* the UI server infrastructure itself, since HomebridgePluginUiServer is designed
|
|
15
|
+
* to run as a standalone process with IPC communication.
|
|
16
|
+
*/
|
|
17
|
+
|
|
18
|
+
// Helper to create isolated test environment
|
|
19
|
+
function createTestEnvironment() {
|
|
20
|
+
const testId = Math.random().toString(36).substring(7)
|
|
21
|
+
const testDir = join(tmpdir(), `switchbot-ui-test-${testId}`)
|
|
22
|
+
const accessoriesDir = join(testDir, 'accessories')
|
|
23
|
+
|
|
24
|
+
// Create test directories
|
|
25
|
+
if (!existsSync(testDir)) {
|
|
26
|
+
mkdirSync(testDir, { recursive: true })
|
|
27
|
+
}
|
|
28
|
+
if (!existsSync(accessoriesDir)) {
|
|
29
|
+
mkdirSync(accessoriesDir, { recursive: true })
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
return { testDir, accessoriesDir }
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
// Cleanup helper
|
|
36
|
+
function cleanup(testDir: string) {
|
|
37
|
+
try {
|
|
38
|
+
if (existsSync(testDir)) {
|
|
39
|
+
const removeRecursive = (dir: string) => {
|
|
40
|
+
if (!existsSync(dir)) {
|
|
41
|
+
return
|
|
42
|
+
}
|
|
43
|
+
const files = readdirSync(dir)
|
|
44
|
+
for (const file of files) {
|
|
45
|
+
const filePath = join(dir, file)
|
|
46
|
+
try {
|
|
47
|
+
const stat = statSync(filePath)
|
|
48
|
+
if (stat.isDirectory()) {
|
|
49
|
+
removeRecursive(filePath)
|
|
50
|
+
} else {
|
|
51
|
+
unlinkSync(filePath)
|
|
52
|
+
}
|
|
53
|
+
} catch {
|
|
54
|
+
// ignore
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
try {
|
|
58
|
+
rmdirSync(dir)
|
|
59
|
+
} catch {
|
|
60
|
+
// ignore
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
removeRecursive(testDir)
|
|
64
|
+
}
|
|
65
|
+
} catch {
|
|
66
|
+
// ignore
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
/**
|
|
71
|
+
* Re-implementation of the getCachedAccessories handler logic for testing
|
|
72
|
+
* This mirrors the actual implementation in server.ts
|
|
73
|
+
*/
|
|
74
|
+
function getCachedAccessories(homebridgeStoragePath: string): any[] {
|
|
75
|
+
try {
|
|
76
|
+
const pluginNames = ['@switchbot/homebridge-switchbot', 'homebridge-switchbot']
|
|
77
|
+
const devicesToReturn = []
|
|
78
|
+
|
|
79
|
+
const accFile = `${homebridgeStoragePath}/accessories/cachedAccessories`
|
|
80
|
+
|
|
81
|
+
if (existsSync(accFile)) {
|
|
82
|
+
const cachedAccessories: any[] = JSON.parse(readFileSync(accFile, 'utf8'))
|
|
83
|
+
|
|
84
|
+
cachedAccessories.forEach((entry: any) => {
|
|
85
|
+
const pluginName = entry.plugin || entry?.accessory?.plugin || entry?.accessory?.pluginName
|
|
86
|
+
const acc = entry.accessory ?? entry
|
|
87
|
+
if (pluginNames.includes(pluginName)) {
|
|
88
|
+
devicesToReturn.push(acc as never)
|
|
89
|
+
}
|
|
90
|
+
})
|
|
91
|
+
}
|
|
92
|
+
return devicesToReturn
|
|
93
|
+
} catch {
|
|
94
|
+
return []
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
/**
|
|
99
|
+
* Re-implementation of the getCachedMatterAccessories handler logic for testing
|
|
100
|
+
* This mirrors the actual implementation in server.ts
|
|
101
|
+
*/
|
|
102
|
+
function getCachedMatterAccessories(homebridgeStoragePath: string): any[] {
|
|
103
|
+
try {
|
|
104
|
+
const pluginNames = ['@switchbot/homebridge-switchbot', 'homebridge-switchbot']
|
|
105
|
+
const devicesToReturn: any[] = []
|
|
106
|
+
|
|
107
|
+
const accFile = `${homebridgeStoragePath}/accessories/cachedAccessories`
|
|
108
|
+
const matterFile = `${homebridgeStoragePath}/accessories/cachedMatterAccessories`
|
|
109
|
+
|
|
110
|
+
const readAndCollect = (filePath: string) => {
|
|
111
|
+
if (!existsSync(filePath)) {
|
|
112
|
+
return
|
|
113
|
+
}
|
|
114
|
+
try {
|
|
115
|
+
const parsed: any[] = JSON.parse(readFileSync(filePath, 'utf8'))
|
|
116
|
+
parsed.forEach((entry: any) => {
|
|
117
|
+
const pluginName = entry.plugin || entry?.accessory?.plugin || entry?.accessory?.pluginName
|
|
118
|
+
const acc = entry.accessory ?? entry
|
|
119
|
+
if (pluginNames.includes(pluginName)) {
|
|
120
|
+
devicesToReturn.push(acc as never)
|
|
121
|
+
}
|
|
122
|
+
})
|
|
123
|
+
} catch {
|
|
124
|
+
// ignore parse errors for a single file
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
readAndCollect(accFile)
|
|
129
|
+
readAndCollect(matterFile)
|
|
130
|
+
|
|
131
|
+
return devicesToReturn
|
|
132
|
+
} catch {
|
|
133
|
+
return []
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
describe('homebridge-ui server handler logic', () => {
|
|
138
|
+
describe('getCachedAccessories', () => {
|
|
139
|
+
it('should return empty array when no cached accessories file exists', () => {
|
|
140
|
+
const { testDir } = createTestEnvironment()
|
|
141
|
+
try {
|
|
142
|
+
const result = getCachedAccessories(testDir)
|
|
143
|
+
expect(result).toEqual([])
|
|
144
|
+
} finally {
|
|
145
|
+
cleanup(testDir)
|
|
146
|
+
}
|
|
147
|
+
})
|
|
148
|
+
|
|
149
|
+
it('should return accessories with scoped plugin name', () => {
|
|
150
|
+
const { testDir, accessoriesDir } = createTestEnvironment()
|
|
151
|
+
try {
|
|
152
|
+
const cachedAccessories = [
|
|
153
|
+
{
|
|
154
|
+
plugin: '@switchbot/homebridge-switchbot',
|
|
155
|
+
accessory: {
|
|
156
|
+
displayName: 'Test Bot',
|
|
157
|
+
UUID: 'test-uuid-1',
|
|
158
|
+
services: [],
|
|
159
|
+
},
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
plugin: 'homebridge-other-plugin',
|
|
163
|
+
accessory: {
|
|
164
|
+
displayName: 'Other Device',
|
|
165
|
+
UUID: 'test-uuid-2',
|
|
166
|
+
services: [],
|
|
167
|
+
},
|
|
168
|
+
},
|
|
169
|
+
]
|
|
170
|
+
|
|
171
|
+
const accFile = join(accessoriesDir, 'cachedAccessories')
|
|
172
|
+
writeFileSync(accFile, JSON.stringify(cachedAccessories), 'utf8')
|
|
173
|
+
|
|
174
|
+
const result = getCachedAccessories(testDir)
|
|
175
|
+
|
|
176
|
+
expect(result).toHaveLength(1)
|
|
177
|
+
expect(result[0].displayName).toBe('Test Bot')
|
|
178
|
+
expect(result[0].UUID).toBe('test-uuid-1')
|
|
179
|
+
} finally {
|
|
180
|
+
cleanup(testDir)
|
|
181
|
+
}
|
|
182
|
+
})
|
|
183
|
+
|
|
184
|
+
it('should return accessories with unscoped plugin name', () => {
|
|
185
|
+
const { testDir, accessoriesDir } = createTestEnvironment()
|
|
186
|
+
try {
|
|
187
|
+
const cachedAccessories = [
|
|
188
|
+
{
|
|
189
|
+
plugin: 'homebridge-switchbot',
|
|
190
|
+
accessory: {
|
|
191
|
+
displayName: 'Test Curtain',
|
|
192
|
+
UUID: 'test-uuid-3',
|
|
193
|
+
services: [],
|
|
194
|
+
},
|
|
195
|
+
},
|
|
196
|
+
]
|
|
197
|
+
|
|
198
|
+
const accFile = join(accessoriesDir, 'cachedAccessories')
|
|
199
|
+
writeFileSync(accFile, JSON.stringify(cachedAccessories), 'utf8')
|
|
200
|
+
|
|
201
|
+
const result = getCachedAccessories(testDir)
|
|
202
|
+
|
|
203
|
+
expect(result).toHaveLength(1)
|
|
204
|
+
expect(result[0].displayName).toBe('Test Curtain')
|
|
205
|
+
} finally {
|
|
206
|
+
cleanup(testDir)
|
|
207
|
+
}
|
|
208
|
+
})
|
|
209
|
+
|
|
210
|
+
it('should handle entries with plugin name in accessory.plugin', () => {
|
|
211
|
+
const { testDir, accessoriesDir } = createTestEnvironment()
|
|
212
|
+
try {
|
|
213
|
+
const cachedAccessories = [
|
|
214
|
+
{
|
|
215
|
+
accessory: {
|
|
216
|
+
plugin: '@switchbot/homebridge-switchbot',
|
|
217
|
+
displayName: 'Test Contact Sensor',
|
|
218
|
+
UUID: 'test-uuid-4',
|
|
219
|
+
services: [],
|
|
220
|
+
},
|
|
221
|
+
},
|
|
222
|
+
]
|
|
223
|
+
|
|
224
|
+
const accFile = join(accessoriesDir, 'cachedAccessories')
|
|
225
|
+
writeFileSync(accFile, JSON.stringify(cachedAccessories), 'utf8')
|
|
226
|
+
|
|
227
|
+
const result = getCachedAccessories(testDir)
|
|
228
|
+
|
|
229
|
+
expect(result).toHaveLength(1)
|
|
230
|
+
expect(result[0].displayName).toBe('Test Contact Sensor')
|
|
231
|
+
} finally {
|
|
232
|
+
cleanup(testDir)
|
|
233
|
+
}
|
|
234
|
+
})
|
|
235
|
+
|
|
236
|
+
it('should handle entries with plugin name in accessory.pluginName', () => {
|
|
237
|
+
const { testDir, accessoriesDir } = createTestEnvironment()
|
|
238
|
+
try {
|
|
239
|
+
const cachedAccessories = [
|
|
240
|
+
{
|
|
241
|
+
accessory: {
|
|
242
|
+
pluginName: '@switchbot/homebridge-switchbot',
|
|
243
|
+
displayName: 'Test Motion Sensor',
|
|
244
|
+
UUID: 'test-uuid-5',
|
|
245
|
+
services: [],
|
|
246
|
+
},
|
|
247
|
+
},
|
|
248
|
+
]
|
|
249
|
+
|
|
250
|
+
const accFile = join(accessoriesDir, 'cachedAccessories')
|
|
251
|
+
writeFileSync(accFile, JSON.stringify(cachedAccessories), 'utf8')
|
|
252
|
+
|
|
253
|
+
const result = getCachedAccessories(testDir)
|
|
254
|
+
|
|
255
|
+
expect(result).toHaveLength(1)
|
|
256
|
+
expect(result[0].displayName).toBe('Test Motion Sensor')
|
|
257
|
+
} finally {
|
|
258
|
+
cleanup(testDir)
|
|
259
|
+
}
|
|
260
|
+
})
|
|
261
|
+
|
|
262
|
+
it('should filter out accessories from other plugins', () => {
|
|
263
|
+
const { testDir, accessoriesDir } = createTestEnvironment()
|
|
264
|
+
try {
|
|
265
|
+
const cachedAccessories = [
|
|
266
|
+
{
|
|
267
|
+
plugin: '@switchbot/homebridge-switchbot',
|
|
268
|
+
accessory: { displayName: 'SwitchBot Device 1', UUID: 'uuid-1', services: [] },
|
|
269
|
+
},
|
|
270
|
+
{
|
|
271
|
+
plugin: 'homebridge-other',
|
|
272
|
+
accessory: { displayName: 'Other Device', UUID: 'uuid-2', services: [] },
|
|
273
|
+
},
|
|
274
|
+
{
|
|
275
|
+
plugin: 'homebridge-switchbot',
|
|
276
|
+
accessory: { displayName: 'SwitchBot Device 2', UUID: 'uuid-3', services: [] },
|
|
277
|
+
},
|
|
278
|
+
{
|
|
279
|
+
plugin: 'homebridge-another',
|
|
280
|
+
accessory: { displayName: 'Another Device', UUID: 'uuid-4', services: [] },
|
|
281
|
+
},
|
|
282
|
+
]
|
|
283
|
+
|
|
284
|
+
const accFile = join(accessoriesDir, 'cachedAccessories')
|
|
285
|
+
writeFileSync(accFile, JSON.stringify(cachedAccessories), 'utf8')
|
|
286
|
+
|
|
287
|
+
const result = getCachedAccessories(testDir)
|
|
288
|
+
|
|
289
|
+
expect(result).toHaveLength(2)
|
|
290
|
+
expect(result[0].displayName).toBe('SwitchBot Device 1')
|
|
291
|
+
expect(result[1].displayName).toBe('SwitchBot Device 2')
|
|
292
|
+
} finally {
|
|
293
|
+
cleanup(testDir)
|
|
294
|
+
}
|
|
295
|
+
})
|
|
296
|
+
|
|
297
|
+
it('should return empty array on malformed JSON', () => {
|
|
298
|
+
const { testDir, accessoriesDir } = createTestEnvironment()
|
|
299
|
+
try {
|
|
300
|
+
const accFile = join(accessoriesDir, 'cachedAccessories')
|
|
301
|
+
writeFileSync(accFile, '{ invalid json }', 'utf8')
|
|
302
|
+
|
|
303
|
+
const result = getCachedAccessories(testDir)
|
|
304
|
+
|
|
305
|
+
expect(result).toEqual([])
|
|
306
|
+
} finally {
|
|
307
|
+
cleanup(testDir)
|
|
308
|
+
}
|
|
309
|
+
})
|
|
310
|
+
})
|
|
311
|
+
|
|
312
|
+
describe('getCachedMatterAccessories', () => {
|
|
313
|
+
it('should return empty array when no cached files exist', () => {
|
|
314
|
+
const { testDir } = createTestEnvironment()
|
|
315
|
+
try {
|
|
316
|
+
const result = getCachedMatterAccessories(testDir)
|
|
317
|
+
expect(result).toEqual([])
|
|
318
|
+
} finally {
|
|
319
|
+
cleanup(testDir)
|
|
320
|
+
}
|
|
321
|
+
})
|
|
322
|
+
|
|
323
|
+
it('should read from cachedAccessories file', () => {
|
|
324
|
+
const { testDir, accessoriesDir } = createTestEnvironment()
|
|
325
|
+
try {
|
|
326
|
+
const cachedAccessories = [
|
|
327
|
+
{
|
|
328
|
+
plugin: '@switchbot/homebridge-switchbot',
|
|
329
|
+
accessory: {
|
|
330
|
+
displayName: 'HAP Device',
|
|
331
|
+
UUID: 'hap-uuid-1',
|
|
332
|
+
services: [],
|
|
333
|
+
},
|
|
334
|
+
},
|
|
335
|
+
]
|
|
336
|
+
|
|
337
|
+
const accFile = join(accessoriesDir, 'cachedAccessories')
|
|
338
|
+
writeFileSync(accFile, JSON.stringify(cachedAccessories), 'utf8')
|
|
339
|
+
|
|
340
|
+
const result = getCachedMatterAccessories(testDir)
|
|
341
|
+
|
|
342
|
+
expect(result).toHaveLength(1)
|
|
343
|
+
expect(result[0].displayName).toBe('HAP Device')
|
|
344
|
+
} finally {
|
|
345
|
+
cleanup(testDir)
|
|
346
|
+
}
|
|
347
|
+
})
|
|
348
|
+
|
|
349
|
+
it('should read from cachedMatterAccessories file', () => {
|
|
350
|
+
const { testDir, accessoriesDir } = createTestEnvironment()
|
|
351
|
+
try {
|
|
352
|
+
const matterAccessories = [
|
|
353
|
+
{
|
|
354
|
+
plugin: '@switchbot/homebridge-switchbot',
|
|
355
|
+
accessory: {
|
|
356
|
+
displayName: 'Matter Device',
|
|
357
|
+
UUID: 'matter-uuid-1',
|
|
358
|
+
services: [],
|
|
359
|
+
},
|
|
360
|
+
},
|
|
361
|
+
]
|
|
362
|
+
|
|
363
|
+
const matterFile = join(accessoriesDir, 'cachedMatterAccessories')
|
|
364
|
+
writeFileSync(matterFile, JSON.stringify(matterAccessories), 'utf8')
|
|
365
|
+
|
|
366
|
+
const result = getCachedMatterAccessories(testDir)
|
|
367
|
+
|
|
368
|
+
expect(result).toHaveLength(1)
|
|
369
|
+
expect(result[0].displayName).toBe('Matter Device')
|
|
370
|
+
} finally {
|
|
371
|
+
cleanup(testDir)
|
|
372
|
+
}
|
|
373
|
+
})
|
|
374
|
+
|
|
375
|
+
it('should combine accessories from both files', () => {
|
|
376
|
+
const { testDir, accessoriesDir } = createTestEnvironment()
|
|
377
|
+
try {
|
|
378
|
+
const cachedAccessories = [
|
|
379
|
+
{
|
|
380
|
+
plugin: '@switchbot/homebridge-switchbot',
|
|
381
|
+
accessory: { displayName: 'HAP Device', UUID: 'hap-uuid', services: [] },
|
|
382
|
+
},
|
|
383
|
+
]
|
|
384
|
+
const matterAccessories = [
|
|
385
|
+
{
|
|
386
|
+
plugin: 'homebridge-switchbot',
|
|
387
|
+
accessory: { displayName: 'Matter Device', UUID: 'matter-uuid', services: [] },
|
|
388
|
+
},
|
|
389
|
+
]
|
|
390
|
+
|
|
391
|
+
const accFile = join(accessoriesDir, 'cachedAccessories')
|
|
392
|
+
const matterFile = join(accessoriesDir, 'cachedMatterAccessories')
|
|
393
|
+
writeFileSync(accFile, JSON.stringify(cachedAccessories), 'utf8')
|
|
394
|
+
writeFileSync(matterFile, JSON.stringify(matterAccessories), 'utf8')
|
|
395
|
+
|
|
396
|
+
const result = getCachedMatterAccessories(testDir)
|
|
397
|
+
|
|
398
|
+
expect(result).toHaveLength(2)
|
|
399
|
+
expect(result[0].displayName).toBe('HAP Device')
|
|
400
|
+
expect(result[1].displayName).toBe('Matter Device')
|
|
401
|
+
} finally {
|
|
402
|
+
cleanup(testDir)
|
|
403
|
+
}
|
|
404
|
+
})
|
|
405
|
+
|
|
406
|
+
it('should filter out accessories from other plugins across both files', () => {
|
|
407
|
+
const { testDir, accessoriesDir } = createTestEnvironment()
|
|
408
|
+
try {
|
|
409
|
+
const cachedAccessories = [
|
|
410
|
+
{
|
|
411
|
+
plugin: '@switchbot/homebridge-switchbot',
|
|
412
|
+
accessory: { displayName: 'SwitchBot HAP 1', UUID: 'hap-1', services: [] },
|
|
413
|
+
},
|
|
414
|
+
{
|
|
415
|
+
plugin: 'homebridge-other',
|
|
416
|
+
accessory: { displayName: 'Other HAP', UUID: 'hap-2', services: [] },
|
|
417
|
+
},
|
|
418
|
+
]
|
|
419
|
+
const matterAccessories = [
|
|
420
|
+
{
|
|
421
|
+
plugin: 'homebridge-switchbot',
|
|
422
|
+
accessory: { displayName: 'SwitchBot Matter 1', UUID: 'matter-1', services: [] },
|
|
423
|
+
},
|
|
424
|
+
{
|
|
425
|
+
plugin: 'homebridge-another',
|
|
426
|
+
accessory: { displayName: 'Another Matter', UUID: 'matter-2', services: [] },
|
|
427
|
+
},
|
|
428
|
+
]
|
|
429
|
+
|
|
430
|
+
const accFile = join(accessoriesDir, 'cachedAccessories')
|
|
431
|
+
const matterFile = join(accessoriesDir, 'cachedMatterAccessories')
|
|
432
|
+
writeFileSync(accFile, JSON.stringify(cachedAccessories), 'utf8')
|
|
433
|
+
writeFileSync(matterFile, JSON.stringify(matterAccessories), 'utf8')
|
|
434
|
+
|
|
435
|
+
const result = getCachedMatterAccessories(testDir)
|
|
436
|
+
|
|
437
|
+
expect(result).toHaveLength(2)
|
|
438
|
+
expect(result[0].displayName).toBe('SwitchBot HAP 1')
|
|
439
|
+
expect(result[1].displayName).toBe('SwitchBot Matter 1')
|
|
440
|
+
} finally {
|
|
441
|
+
cleanup(testDir)
|
|
442
|
+
}
|
|
443
|
+
})
|
|
444
|
+
|
|
445
|
+
it('should handle malformed JSON in one file gracefully', () => {
|
|
446
|
+
const { testDir, accessoriesDir } = createTestEnvironment()
|
|
447
|
+
try {
|
|
448
|
+
const matterAccessories = [
|
|
449
|
+
{
|
|
450
|
+
plugin: '@switchbot/homebridge-switchbot',
|
|
451
|
+
accessory: { displayName: 'Valid Matter', UUID: 'valid', services: [] },
|
|
452
|
+
},
|
|
453
|
+
]
|
|
454
|
+
|
|
455
|
+
const accFile = join(accessoriesDir, 'cachedAccessories')
|
|
456
|
+
const matterFile = join(accessoriesDir, 'cachedMatterAccessories')
|
|
457
|
+
writeFileSync(accFile, '{ invalid json }', 'utf8')
|
|
458
|
+
writeFileSync(matterFile, JSON.stringify(matterAccessories), 'utf8')
|
|
459
|
+
|
|
460
|
+
const result = getCachedMatterAccessories(testDir)
|
|
461
|
+
|
|
462
|
+
// Should still return the valid Matter accessory
|
|
463
|
+
expect(result).toHaveLength(1)
|
|
464
|
+
expect(result[0].displayName).toBe('Valid Matter')
|
|
465
|
+
} finally {
|
|
466
|
+
cleanup(testDir)
|
|
467
|
+
}
|
|
468
|
+
})
|
|
469
|
+
|
|
470
|
+
it('should return empty array if both files have malformed JSON', () => {
|
|
471
|
+
const { testDir, accessoriesDir } = createTestEnvironment()
|
|
472
|
+
try {
|
|
473
|
+
const accFile = join(accessoriesDir, 'cachedAccessories')
|
|
474
|
+
const matterFile = join(accessoriesDir, 'cachedMatterAccessories')
|
|
475
|
+
writeFileSync(accFile, '{ bad json', 'utf8')
|
|
476
|
+
writeFileSync(matterFile, 'also bad }', 'utf8')
|
|
477
|
+
|
|
478
|
+
const result = getCachedMatterAccessories(testDir)
|
|
479
|
+
|
|
480
|
+
expect(result).toEqual([])
|
|
481
|
+
} finally {
|
|
482
|
+
cleanup(testDir)
|
|
483
|
+
}
|
|
484
|
+
})
|
|
485
|
+
})
|
|
486
|
+
})
|