Lights.test.js
22.6 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
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
'use strict';
const expect = require('chai').expect
, v3 = require('../v3')
, discovery = v3.discovery
, model = require('@peter-murray/hue-bridge-model').model
, Light = model.Light
, LightState = model.lightStates.LightState
, testValues = require('../../test/support/testValues.js')
;
const EXTENDED_COLOR_LIGHT_ID = testValues.testLightId;
describe('Hue API #lights', function () {
let hue;
this.timeout(10000);
before(async () => {
const searchResults = await discovery.nupnpSearch();
if (!searchResults || searchResults.length === 0) {
throw new Error('Failed to find a bridge in nupnp search');
}
const localApi = v3.api.createLocal(searchResults[0].ipaddress);
hue = await localApi.connect(testValues.username);
});
describe('#getAll()', () => {
it('should find some', async () => {
const lights = await hue.lights.getAll();
expect(lights).to.have.length.greaterThan(20);
let light = lights[0];
expect(light).to.have.property('id').to.be.greaterThan(0);
expect(light instanceof Light).to.be.true;
});
});
describe('#getLight()', () => {
it('should get light with id === 2', async () => {
const result = await hue.lights.getLight(2);
expect(result).to.have.property('id').to.equal(2);
});
it('should get light with id as a Light object', async () => {
const light = await hue.lights.getLight(2);
expect(light).to.have.property('id').to.equal(2);
const result = await hue.lights.getLight(light);
expect(result).to.have.property('id').to.equal(2);
});
});
describe('#getLightById()', () => {
it('should get light with id === 2', async () => {
const result = await hue.lights.getLightById(2);
expect(result).to.have.property('id').to.equal(2);
});
it('should get light with id as a Light object', async () => {
const light = await hue.lights.getLightById(2);
expect(light).to.have.property('id').to.equal(2);
const result = await hue.lights.getLightById(light);
expect(result).to.have.property('id').to.equal(2);
});
});
describe('#getLightByName()', () => {
it('should get light with a valid name', async () => {
const name = 'Office Desk Left'
, result = await hue.lights.getLightByName(name)
;
expect(result).to.have.property('name').to.equal(name);
});
});
describe('#getNew()', () => {
it('should find some', async () => {
const result = await hue.lights.getNew();
expect(result).to.have.property('lastscan');
});
});
describe('#searchForNew()', () => {
it('should perform a search', async () => {
const result = await hue.lights.searchForNew();
expect(result).to.be.true;
});
});
describe('#getLightAttributesAndState()', () => {
describe('using id', () => {
it(`should return a light state for id=${EXTENDED_COLOR_LIGHT_ID}`, async () => {
const result = await hue.lights.getLightAttributesAndState(EXTENDED_COLOR_LIGHT_ID);
expect(result).to.have.property('id', EXTENDED_COLOR_LIGHT_ID);
expect(result).to.have.property('state');
expect(result.state).to.have.property('on');
expect(result.state).to.have.property('bri');
expect(result.state).to.have.property('hue');
expect(result.state).to.have.property('sat');
expect(result.state).to.have.property('effect');
expect(result.state).to.have.property('xy');
expect(result.state).to.have.property('alert');
expect(result.state).to.have.property('colormode');
expect(result.state).to.have.property('mode');
expect(result.state).to.have.property('reachable');
expect(result).to.have.property('swupdate');
expect(result.swupdate).to.have.property('state');
expect(result.swupdate).to.have.property('lastinstall');
expect(result).to.have.property('type');
expect(result).to.have.property('name');
expect(result).to.have.property('modelid');
expect(result).to.have.property('manufacturername');
expect(result).to.have.property('productname');
expect(result).to.have.property('capabilities');
expect(result.capabilities).to.have.property('certified');
expect(result.capabilities).to.have.property('control');
expect(result.capabilities).to.have.property('streaming');
expect(result).to.have.property('config');
expect(result.config).to.have.property('archetype');
expect(result.config).to.have.property('function');
expect(result.config).to.have.property('direction');
expect(result).to.have.property('uniqueid');
expect(result).to.have.property('swversion');
});
});
describe('using Light instance', () => {
it('should return a light state', async () => {
const light = await hue.lights.getLight(EXTENDED_COLOR_LIGHT_ID)
, result = await hue.lights.getLightAttributesAndState(light)
;
expect(result).to.have.property('id').to.equal(EXTENDED_COLOR_LIGHT_ID);
expect(result).to.have.property('state');
expect(result.state).to.have.property('on');
expect(result.state).to.have.property('bri');
expect(result.state).to.have.property('hue');
expect(result.state).to.have.property('sat');
expect(result.state).to.have.property('effect');
expect(result.state).to.have.property('xy');
expect(result.state).to.have.property('alert');
expect(result.state).to.have.property('colormode');
expect(result.state).to.have.property('mode');
expect(result.state).to.have.property('reachable');
expect(result).to.have.property('swupdate');
expect(result.swupdate).to.have.property('state');
expect(result.swupdate).to.have.property('lastinstall');
expect(result).to.have.property('type');
expect(result).to.have.property('name');
expect(result).to.have.property('modelid');
expect(result).to.have.property('manufacturername');
expect(result).to.have.property('productname');
expect(result).to.have.property('capabilities');
expect(result.capabilities).to.have.property('certified');
expect(result.capabilities).to.have.property('control');
expect(result.capabilities).to.have.property('streaming');
expect(result).to.have.property('config');
expect(result.config).to.have.property('archetype');
expect(result.config).to.have.property('function');
expect(result.config).to.have.property('direction');
expect(result).to.have.property('uniqueid');
expect(result).to.have.property('swversion');
});
});
});
describe('#getLightState()', () => {
it(`should return a light state for id=${EXTENDED_COLOR_LIGHT_ID}`, async () => {
const result = await hue.lights.getLightState(EXTENDED_COLOR_LIGHT_ID);
expect(result).to.have.property('on');
expect(result).to.have.property('bri');
expect(result).to.have.property('hue');
expect(result).to.have.property('sat');
expect(result).to.have.property('effect');
expect(result).to.have.property('xy');
expect(result).to.have.property('alert');
expect(result).to.have.property('colormode');
expect(result).to.have.property('mode');
expect(result).to.have.property('reachable');
});
it('should return a light state for Light object', async () => {
const light = await hue.lights.getLight(EXTENDED_COLOR_LIGHT_ID)
, result = await hue.lights.getLightState(light)
;
expect(result).to.have.property('on');
expect(result).to.have.property('bri');
expect(result).to.have.property('hue');
expect(result).to.have.property('sat');
expect(result).to.have.property('effect');
expect(result).to.have.property('xy');
expect(result).to.have.property('alert');
expect(result).to.have.property('colormode');
expect(result).to.have.property('mode');
expect(result).to.have.property('reachable');
});
});
describe('rename / renameLight', () => {
let light
, originalName
;
beforeEach(async () => {
light = await hue.lights.getLight(2);
originalName = light.name;
});
afterEach('reset light name in bridge', async () => {
if (originalName) {
light.name = originalName;
await hue.lights.renameLight(light);
}
});
describe('#rename (deprecated function)', () => {
it('should rename a light using id as integer', async () => {
const newName = 'Lounge Living Color'
, result = await hue.lights.rename(light.id, newName)
, updatedLight = await hue.lights.getLight(light);
expect(result).to.be.true;
expect(updatedLight).to.have.property('id').to.equal(light.id);
expect(updatedLight).to.have.property('name').to.equal(newName);
});
it('should rename a light using id as a Light instance', async () => {
const newName = 'Lounge Living Color'
, result = await hue.lights.rename(light, newName)
, updateLight = await hue.lights.getLight(light);
expect(result).to.be.true;
expect(updateLight).to.have.property('id').to.equal(light.id);
expect(updateLight).to.have.property('name').to.equal(newName);
});
it('should error is name is too long', async () => {
const newName = `Renamed Light ${Date.now()} ${Date.now()}`;
try {
await hue.lights.rename(light.id, newName);
expect.fail('Should have failed to rename light');
} catch (err) {
expect(err.message).to.contain('does not meet maximum length requirement');
}
});
});
describe('#renameLight()', () => {
it('should rename a light using id as integer', async () => {
const newName = 'Lounge Living Color';
light.name = newName;
const result = await hue.lights.renameLight(light)
, updatedLight = await hue.lights.getLight(light)
;
expect(result).to.be.true;
expect(updatedLight).to.have.property('id').to.equal(light.id);
expect(updatedLight).to.have.property('name').to.equal(newName);
});
});
describe('using light instance', () => {
it('should rename a light', async () => {
const newName = 'New Light Name';
light.name = newName;
const result = await hue.lights.rename(light)
, updateLight = await hue.lights.getLight(light)
;
expect(result).to.be.true;
expect(updateLight).to.have.property('id').to.equal(light.id);
expect(updateLight).to.have.property('name').to.equal(newName);
});
});
});
describe('#setLightState()', () => {
describe('using Light instance', () => {
it('should set an xy value', async () => {
const id = EXTENDED_COLOR_LIGHT_ID
, light = await hue.lights.getLight(id)
, result = await hue.lights.setLightState(light, {on: true, xy: [0.1948, 0.5478]})
, finalLightState = await hue.lights.getLightState(id)
;
expect(result).to.be.true;
expect(finalLightState).to.have.property('on').to.be.true;
expect(finalLightState).to.have.property('xy');
expect(finalLightState.xy[0]).to.be.within(0.194, 0.195);
expect(finalLightState.xy[1]).to.be.closeTo(0.547, 0.548);
});
});
describe('using light id', () => {
describe('using raw objects', () => {
it('should set an xy value', async () => {
const id = testValues.testLightId
, result = await hue.lights.setLightState(id, {on: true, xy: [0.1948, 0.5478]})
, finalLightState = await hue.lights.getLightState(id)
;
expect(result).to.be.true;
expect(finalLightState).to.have.property('on').to.be.true;
expect(finalLightState).to.have.property('xy');
expect(finalLightState.xy[0]).to.be.within(0.194, 0.195);
expect(finalLightState.xy[1]).to.be.closeTo(0.547, 0.548);
});
it('should set an xy and bri value', async () => {
const id = testValues.testLightId
, state = {
on: true,
bri: 254,
colormode: 'xy',
xy: [0.153, 0.048]
}
, result = await hue.lights.setLightState(id, state)
, finalLightState = await hue.lights.getLightState(id)
;
expect(result).to.be.true;
expect(finalLightState).to.have.property('on').to.be.true;
expect(finalLightState).to.have.property('xy');
expect(finalLightState.xy[0]).to.be.within(0.15, 0.155);
expect(finalLightState.xy[1]).to.be.closeTo(0.045, 0.05);
});
});
describe('using lightState object', () => {
it('should set alert to "lselect"', async () => {
const id = testValues.testLightId
, state = new LightState().alert('lselect')
, result = await hue.lights.setLightState(id, state)
, finalLightState = await hue.lights.getLightState(id)
;
expect(result).to.be.true;
expect(finalLightState).to.have.property('alert').to.equal('lselect');
});
describe('#on', () => {
function testOn(on) {
return async () => {
const id = testValues.testLightId
, state = new LightState().on(on)
, result = await hue.lights.setLightState(id, state)
, finalLightState = await hue.lights.getLightState(id)
;
expect(result).to.be.true;
expect(finalLightState).to.have.property('on').to.equal(on);
};
}
it('should set on to true', testOn(true));
it('should set on to false', testOn(false));
});
describe('#bri', () => {
function testBri(briVal) {
return async () => {
const id = testValues.testLightId
, state = new LightState().on().bri(briVal)
, result = await hue.lights.setLightState(id, state)
, finalLightState = await hue.lights.getLightState(id)
;
expect(result).to.be.true;
expect(finalLightState).to.have.property('on').to.be.true;
expect(finalLightState).to.have.property('bri').to.equal(briVal);
};
}
it('should set bri to 1', testBri(1));
it('should set bri to 254', testBri(254));
it('should set bri to 100', testBri(100));
});
describe('#hue', () => {
function testHue(val) {
return async () => {
const id = testValues.testLightId
, state = new LightState().on().hue(val)
, result = await hue.lights.setLightState(id, state)
, finalLightState = await hue.lights.getLightState(id)
;
expect(result).to.be.true;
expect(finalLightState).to.have.property('on').to.be.true;
expect(finalLightState).to.have.property('hue').to.equal(val);
};
}
it('should set hue to 1', testHue(1));
it('should set hue to 254', testHue(254));
it('should set hue to 100', testHue(100));
});
describe('#sat', () => {
function testSat(val) {
return async () => {
const id = testValues.testLightId
, state = new LightState().on().sat(val)
, result = await hue.lights.setLightState(id, state)
, finalLightState = await hue.lights.getLightState(id)
;
expect(result).to.be.true;
expect(finalLightState).to.have.property('on').to.be.true;
expect(finalLightState).to.have.property('sat').to.equal(val);
};
}
it('should set sat to 1', testSat(1));
it('should set sat to 254', testSat(254));
it('should set sat to 100', testSat(100));
});
describe('#xy', () => {
function testXY(xVal, yVal) {
return async () => {
const id = testValues.testLightId
, state = new LightState().on().xy(xVal, yVal)
, result = await hue.lights.setLightState(id, state)
, finalLightState = await hue.lights.getLightState(id)
;
expect(result).to.be.true;
expect(finalLightState).to.have.property('on').to.be.true;
expect(finalLightState).to.have.property('xy').to.contain(xVal, yVal);
};
}
it('should set xy to 1,1', testXY(1, 1));
it('should set xy to 0,1', testXY(0, 1));
it('should set xy to 0,0', testXY(0, 0));
it('should set xy to 1,0', testXY(1, 0));
it('should set xy to 0.5,0.5', testXY(0.5, 0.5));
it('should set xy to 0.178,0.99', testXY(0.178, 0.99));
});
describe('#ct', () => {
function testCt(val) {
return async () => {
const id = testValues.testLightId
, state = new LightState().on().ct(val)
, result = await hue.lights.setLightState(id, state)
, finalLightState = await hue.lights.getLightState(id)
;
expect(result).to.be.true;
expect(finalLightState).to.have.property('on').to.be.true;
expect(finalLightState).to.have.property('ct').to.equal(val);
};
}
it('should set ct to 153', testCt(153));
it('should set ct to 500', testCt(500));
it('should set ct to 200', testCt(200));
it('should set ct to 499', testCt(499));
//TODO do failure conditions
});
describe('#alert', () => {
function testAlert(val) {
return async () => {
const id = testValues.testLightId
, state = new LightState().on().alert(val)
, result = await hue.lights.setLightState(id, state)
, finalLightState = await hue.lights.getLightState(id)
;
expect(result).to.be.true;
expect(finalLightState).to.have.property('on').to.be.true;
expect(finalLightState).to.have.property('alert').to.equal(val);
};
}
it('should set alert to none', testAlert('none'));
it('should set alert to select', testAlert('select'));
it('should set alert to lselect', testAlert('lselect'));
});
describe('#effect', () => {
function testEffect(val) {
return async () => {
const id = testValues.testLightId
, state = new LightState().on().effect(val)
, result = await hue.lights.setLightState(id, state)
, finalLightState = await hue.lights.getLightState(id)
;
expect(result).to.be.true;
expect(finalLightState).to.have.property('on').to.be.true;
expect(finalLightState).to.have.property('effect').to.equal(val);
};
}
it('should set alert to none', testEffect('none'));
it('should set alert to colorloop', testEffect('colorloop'));
});
describe('#transitiontime', () => {
function testTransitiontime(val) {
return async () => {
const id = testValues.testLightId
, state = new LightState().on().transitiontime(val)
, result = await hue.lights.setLightState(id, state)
, finalLightState = await hue.lights.getLightState(id)
;
expect(result).to.be.true;
expect(finalLightState).to.have.property('on').to.be.true;
// It is not possible to query the transition time value azs it is no longer returned in the state values
// from the Hue API.
};
}
afterEach(async () => {
// Turn off the light so that the next test call will do something.
const id = testValues.testLightId;
await hue.lights.setLightState(id, new LightState().off());
});
it('should set to 0', testTransitiontime(0));
it('should set to 4', testTransitiontime(4));
it('should set to 10', testTransitiontime(10));
it('should set to 1000', testTransitiontime(1000));
});
//TODO inc seem to be more difficult to test
describe('#bri_inc', () => {
function testBriInc(initialBri, incVal, expectedBri) {
return async () => {
const id = testValues.testLightId
, initialState = new LightState().on().bri(initialBri)
, incState = new LightState().transitiontime(0).bri_inc(incVal)
;
const initialResult = await hue.lights.setLightState(id, initialState);
expect(initialResult).to.be.true;
const result = await hue.lights.setLightState(id, incState);
expect(result).to.be.true;
const finalLightState = await hue.lights.getLightState(id);
expect(finalLightState).to.have.property('on').to.be.true;
expect(finalLightState).to.have.property('bri').to.equal(expectedBri);
};
}
it('should respond to +1', testBriInc(1, 1, 2));
it('should respond to +200', testBriInc(1, 200, 201));
});
});
describe('#rgb', () => {
function testRGB(red, green, blue, xy) {
return async () => {
const id = testValues.testLightId
, state = new LightState().on().rgb(red, green, blue)
, result = await hue.lights.setLightState(id, state)
, finalLightState = await hue.lights.getLightState(id)
;
expect(result).to.be.true;
expect(finalLightState).to.have.property('on').to.be.true;
expect(finalLightState).to.have.property('colormode').to.equal('xy');
expect(finalLightState).to.have.property('xy');
expect(finalLightState.xy[0]).to.be.closeTo(xy[0], 0.001);
expect(finalLightState.xy[1]).to.be.closeTo(xy[1], 0.001);
};
}
it('should set rgb to red', testRGB(255, 0, 0, [0.6484, 0.3309]));
it('should set rgb to green', testRGB(0, 255, 0, [0.3157, 0.5906]));
it('should set rgb to blue', testRGB(0, 0, 255, [0.153, 0.048]));
});
//TODO complete all the property tests for a light state
});
});
});