-
-
Notifications
You must be signed in to change notification settings - Fork 84
/
progress-linear.spec.js
202 lines (180 loc) · 6.47 KB
/
progress-linear.spec.js
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
import { setUp, tearDown } from '../../../../test/helpers/fixture.js';
import { capture3x } from '../../../../test/helpers/capture.js';
const SPACING = 4;
// transparent
const tp = { a: 0 };
describe('Linear Progress', () => {
const baseColor = { r: [31, 34], g: [145, 153], b: [242, 247] };
[
{
label: 'determinate 0% progress',
states: {
'#xmas': {
value: 0
}
},
fill: [ 0, 480 ],
barColor: { ...baseColor, a: [30, 31]},
fillColor: { ...baseColor, a: 255}
},
{
label: 'determinate 25% progress',
states: {
'#xmas': {
value: 25
}
},
fill: [ 120, 360 ],
barColor: { ...baseColor, a: [30, 31]},
fillColor: { ...baseColor, a: 255}
},
{
label: 'determinate 50% progress',
states: {
'#xmas': {
value: 50
}
},
fill: [ 240, 240 ],
barColor: { ...baseColor, a: [30, 31]},
fillColor: { ...baseColor, a: 255}
},
{
label: 'determinate 75% progress',
states: {
'#xmas': {
value: 75
}
},
fill: [ 360, 120 ],
barColor: { ...baseColor, a: [30, 31]},
fillColor: { ...baseColor, a: 255}
},
{
label: 'determinate 100% progress',
states: {
'#xmas': {
value: 100
}
},
fill: [ 480, 0 ],
barColor: { ...baseColor, a: [30, 31]},
fillColor: { ...baseColor, a: 255}
},
{
label: 'indeterminate 0% animation',
states: {
'#xmas': {
indeterminate: '',
style: 'animation-delay: 0s; animation-play-state: paused; vertical-align: top;'
}
},
fill: [ 0, 480 ],
barColor: { ...baseColor, a: [30, 31]},
fillColor: { ...baseColor, a: 255}
},
{
label: 'indeterminate 25% animation',
states: {
'#xmas': {
indeterminate: '',
style: 'animation-delay: -0.45s; animation-play-state: paused; vertical-align: top;'
}
},
fill: [ 0, 24, 262, 194 ],
barColor: { ...baseColor, a: [30, 31]},
fillColor: { ...baseColor, a: 255}
},
{
label: 'indeterminate 50% animation',
states: {
'#xmas': {
indeterminate: '',
style: 'animation-delay: -0.9s; animation-play-state: paused; vertical-align: top;'
}
},
fill: [ 0, 221, 259 ],
barColor: { ...baseColor, a: [30, 31]},
fillColor: { ...baseColor, a: 255}
},
{
label: 'indeterminate 75% animation',
states: {
'#xmas': {
indeterminate: '',
style: 'animation-delay: -1.35s; animation-play-state: paused; vertical-align: top;'
}
},
fill: [ 0, 100, 260, 120 ],
barColor: { ...baseColor, a: [30, 31]},
fillColor: { ...baseColor, a: 255}
},
{
label: 'indeterminate 100% animation',
states: {
'#xmas': {
indeterminate: '',
style: 'animation-delay: -1.8s; animation-play-state: paused; vertical-align: top;'
}
},
fill: [ 0, 480 ],
barColor: { ...baseColor, a: [30, 31]},
fillColor: { ...baseColor, a: 255}
},
{
label: 'customized & determinate 50% progress',
states: {
'#xmas': {
value: 50,
style: 'vertical-align: top;--matter-primary-rgb: 255, 0, 0;'
}
},
fill: [ 240, 240 ],
barColor: {r: [254, 255], g: 0, b: 0, a: [30, 31]},
fillColor: {r: 255, g: 0, b: 0, a: 255}
},
].forEach((suite) => {
describe(`in ${suite.label} state`, () => {
let style;
let progress;
let width;
let height;
let context;
beforeAll(async () => {
style = setUp('src/components/progress/linear/progress-linear', suite.states);
progress = document.querySelector('#xmas');
const rect = progress.getBoundingClientRect();
width = rect.width;
height = rect.height;
context = await capture3x(progress, style, SPACING);
});
afterAll(() => {
tearDown();
});
it(`should have corresponding fill`, () => {
const im = { ...suite.barColor, a: [ suite.barColor.a[0], suite.fillColor.a ] };
const row = suite.fill.reduce((array, length, index) => {
const segment = new Array(length).fill(index % 2 ? suite.barColor : suite.fillColor);
if (segment.length) {
segment[0] = im;
segment[length - 1] = im;
}
return array.concat(segment);
}, []);
const shape = context.getImageData3x(0, 0, width, 4);
expect(shape).toResembleOblongShape(row, 270);
});
it('should have no shadow', () => {
const shadow = [ tp, tp, tp, tp, tp, tp, tp, tp, tp, tp, tp, tp ];
const topShadow = context.getImageData3x(-4, -4, width + 4, 4);
const rightShadow = context.getImageData3x(width, -4, 4, height + 4);
const bottomShadow = context.getImageData3x(0, 4, width + 4, 4);
const leftShadow = context.getImageData3x(-4, 0, 4, height + 4);
expect(topShadow).toResembleOblongShape(shadow, 0);
expect(rightShadow).toResembleOblongShape(shadow, 90);
expect(bottomShadow).toResembleOblongShape(shadow, 180);
expect(leftShadow).toResembleOblongShape(shadow, 270);
});
});
});
});