-
Notifications
You must be signed in to change notification settings - Fork 5
/
colorconverter-tests.ts
72 lines (53 loc) · 2.53 KB
/
colorconverter-tests.ts
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
/// <reference path="colorconverter.ts" />
module colorConverter.tests
{
var modelHueBulb = 'LCT001';
export function runTests() {
hueColors();
}
function hueColors() {
// Red
var xyBri = colorConverter.rgbToXyBri({ r: 1, g: 0, b: 0 });
xyBri = colorConverter.xyBriForModel(xyBri, modelHueBulb);
assert(xyBri.bri > 0 && xyBri.bri <= 1, 'Brightness has invalid value');
assert(Math.abs(xyBri.x - 0.675) < 0.0001, 'x has invalid value');
assert(Math.abs(xyBri.y - 0.322) < 0.0001, 'y has invalid value');
var rgb = colorConverter.xyBriToRgb(xyBri);
assert(Math.abs(rgb.r - 0.8775) < 0.0001, 'Invalid red value');
assert(Math.abs(rgb.g - 0.3152) < 0.0001, 'Invalid green value');
assert(Math.abs(rgb.b - 0.0) < 0.0001, 'Invalid 1blue value');
// Green
var xyBri = colorConverter.rgbToXyBri({ r: 0, g: 1, b: 0 });
xyBri = colorConverter.xyBriForModel(xyBri, modelHueBulb);
assert(xyBri.bri > 0 && xyBri.bri <= 1, 'Brightness has invalid value');
assert(Math.abs(xyBri.x - 0.4091) < 0.0001, 'X has invalid value');
assert(Math.abs(xyBri.y - 0.5180) < 0.0001, 'Y has invalid value');
var rgb = colorConverter.xyBriToRgb(xyBri);
assert(Math.abs(rgb.r - 0.8879) < 0.0001, 'Invalid red value');
assert(Math.abs(rgb.g - 0.8847) < 0.0001, 'Invalid green value');
assert(Math.abs(rgb.b - 0.2770) < 0.0001, 'Invalid 2blue value');
// Blue
var xyBri = colorConverter.rgbToXyBri({ r: 0, g: 0, b: 1 });
xyBri = colorConverter.xyBriForModel(xyBri, modelHueBulb);
assert(xyBri.bri > 0 && xyBri.bri <= 1, 'Brightness has invalid value');
assert(Math.abs(xyBri.x - 0.167) < 0.0001, 'X has invalid value');
assert(Math.abs(xyBri.y - 0.040) < 0.0001, 'Y has invalid value');
var rgb = colorConverter.xyBriToRgb(xyBri);
assert(Math.abs(rgb.r - 0.1132) < 0.0001, 'Invalid red value');
assert(Math.abs(rgb.g - 0.1202) < 0.0001, 'Invalid green value');
assert(Math.abs(rgb.b - 0.6885) < 0.0001, 'Invalid 3blue value');
// White
var xyBri = colorConverter.rgbToXyBri({ r: 1, g: 1, b: 1 });
xyBri = colorConverter.xyBriForModel(xyBri, modelHueBulb);
assert(xyBri.bri > 0 && xyBri.bri <= 1, 'Brightness has invalid value');
assert(xyBri.x > 0 && xyBri.x <= 1, 'X has invalid value');
assert(xyBri.y > 0 && xyBri.y <= 1, 'Y has invalid value');
}
function assert(p, s, ...args : any[]) {
if (!p && args.length) {
args.unshift('Assertion failed');
console.log.apply(console, args);
}
if (!p) throw s;
}
}