-
-
Notifications
You must be signed in to change notification settings - Fork 83
/
Copy pathprogress-circular.spec.js
247 lines (210 loc) · 8.24 KB
/
progress-circular.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
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
import { setUp, tearDown } from '../../../../test/helpers/fixture.js';
import { capture3x } from '../../../../test/helpers/capture.js';
import { isBrowserNot } from '../../../../test/helpers/browser.js';
const SPACING = 4;
// transparent
const tp = { a: 0 };
describe('Circular Progress', () => {
const baseColor = { r: [31, 34], g: [145, 153], b: [241, 247] };
[
{
label: 'indeterminate 0% animation',
states: {
'#xmas': {
indeterminate: '',
style: 'animation-delay: 0s; animation-play-state: paused;'
}
},
fill: [ 346, 0 ],
fillColor: { ...baseColor, a: 255}
},
{
label: 'indeterminate 12.5% animation',
states: {
'#xmas': {
indeterminate: '',
style: 'animation-delay: -0.75s; animation-play-state: paused;'
}
},
fill: [ 166, 75 ],
fillColor: { ...baseColor, a: [192, 255]}
},
{
label: 'indeterminate 25% animation',
states: {
'#xmas': {
indeterminate: '',
style: 'animation-delay: -1.5s; animation-play-state: paused;'
}
},
fill: [ 256.5, 270 ],
fillColor: { ...baseColor, a: 255}
},
{
label: 'indeterminate 50% animation',
states: {
'#xmas': {
indeterminate: '',
style: 'animation-delay: -3s; animation-play-state: paused;'
}
},
fill: [ 166, 180 ],
fillColor: { ...baseColor, a: 255}
},
{
label: 'indeterminate 75% animation',
states: {
'#xmas': {
indeterminate: '',
style: 'animation-delay: -4.5s; animation-play-state: paused;'
}
},
fill: [ 76.5, 90 ],
fillColor: { ...baseColor, a: 255}
},
{
label: 'indeterminate 100% animation',
states: {
'#xmas': {
indeterminate: '',
style: 'animation-delay: -6s; animation-play-state: paused;'
}
},
fill: [ 346, 0 ],
fillColor: { ...baseColor, a: 255}
},
{
label: 'customized & indeterminate 0% animation',
states: {
'#xmas': {
indeterminate: '',
style: '--matter-primary-rgb: 255, 0, 0;animation-delay: 0s; animation-play-state: paused;'
}
},
fill: [ 346, 0 ],
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/circular/progress-circular', 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`, () => {
// fill
const fl = suite.fillColor;
// intermediate
const im = { };
const slice = [
tp, tp, tp, tp, tp, tp, tp, tp, tp, tp,
tp, tp, tp, tp, tp, tp, tp, tp, tp, tp,
tp, tp, tp, tp, tp, tp, tp, tp, tp, tp,
tp, tp, tp, tp, tp, tp, tp, tp, tp, tp,
tp, tp, tp, tp, tp, tp, tp, im, im, fl,
fl, fl, fl, fl, fl, fl, fl, fl, fl, im,
im, im, tp, tp, tp, tp, tp, tp, tp, tp,
tp, tp, tp, tp, tp, tp, tp, tp, tp, tp,
tp, tp, tp, tp, tp, tp, tp, tp, tp, tp,
tp, tp, tp, tp, tp, tp, tp, tp, tp, tp,
tp, tp, tp, tp, tp, tp, tp, tp, tp, tp,
tp, tp, tp, tp, tp, tp, tp, tp, tp, tp
];
const indicator = context.getImageData3x(-4, -4, 56, 56);
isBrowserNot('Safari') && expect(indicator).toResembleCircularShape(slice, ...suite.fill);
});
it('should have no shadow', () => {
// intermediate
const im = { };
const slice = [
tp, tp, tp, tp, tp, tp, tp, tp, tp, tp,
tp, tp, tp, tp, tp, tp, tp, tp, tp, tp,
tp, tp, tp, tp, tp, tp, tp, tp, tp, tp,
tp, tp, tp, tp, tp, tp, tp, tp, tp, tp,
tp, tp, tp, tp, tp, tp, tp, im, im, im,
im, im, im, im, im, im, im, im, im, im,
im, im, tp, tp, tp, tp, tp, tp, tp, tp,
tp, tp, tp, tp, tp, tp, tp, tp, tp, tp,
tp, tp, tp, tp, tp, tp, tp, tp, tp, tp,
tp, tp, tp, tp, tp, tp, tp, tp, tp, tp,
tp, tp, tp, tp, tp, tp, tp, tp, tp, tp,
tp, tp, tp, tp, tp, tp, tp, tp, tp, tp
];
const indicator = context.getImageData3x(-4, -4, 56, 56);
expect(indicator).toResembleCircularShape(slice);
});
});
});
describe('in smaller size', () => {
let style;
let progress;
let width;
let height;
let context;
beforeAll(async () => {
style = setUp('src/components/progress/circular/progress-circular', {
'#sized': {
indeterminate: '',
style: 'font-size: 12px; animation-delay: 0s; animation-play-state: paused;'
}
});
progress = document.querySelector('#sized');
const rect = progress.getBoundingClientRect();
width = rect.width;
height = rect.height;
context = await capture3x(progress, style, SPACING);
});
afterAll(() => {
tearDown();
});
it(`should have corresponding fill`, () => {
// fill
const fl = { ...baseColor, a: 255 };
// intermediate
const im = { };
const slice = [
tp, tp, tp, tp, tp, tp, tp, tp, tp, tp,
tp, tp, tp, tp, tp, tp, tp, tp, tp, tp,
tp, tp, tp, tp, tp, tp, tp, tp, tp, tp,
tp, tp, tp, tp, tp, tp, im, im, fl, fl,
fl, fl, fl, fl, fl, im, im, tp, tp, tp,
tp, tp, tp, tp, tp, tp, tp, tp, tp, tp,
tp, tp, tp, tp, tp, tp, tp, tp, tp, tp,
tp, tp, tp, tp, tp, tp, tp, tp, tp, tp,
tp, tp, tp, tp, tp, tp, tp, tp, tp, tp,
tp, tp, tp, tp, tp, tp, tp, tp, tp, tp,
];
const indicator = context.getImageData3x(-4, -4, 44, 44);
isBrowserNot('Safari') && expect(indicator).toResembleCircularShape(slice, 346.5, 0);
});
it('should have no shadow', () => {
// intermediate
const im = { };
const slice = [
tp, tp, tp, tp, tp, tp, tp, tp, tp, tp,
tp, tp, tp, tp, tp, tp, tp, tp, tp, tp,
tp, tp, tp, tp, tp, tp, tp, tp, tp, tp,
tp, tp, tp, tp, tp, tp, im, im, im, im,
im, im, im, im, im, im, im, tp, tp, tp,
tp, tp, tp, tp, tp, tp, tp, tp, tp, tp,
tp, tp, tp, tp, tp, tp, tp, tp, tp, tp,
tp, tp, tp, tp, tp, tp, tp, tp, tp, tp,
tp, tp, tp, tp, tp, tp, tp, tp, tp, tp,
tp, tp, tp, tp, tp, tp, tp, tp, tp, tp
];
const indicator = context.getImageData3x(-4, -4, 44, 44);
expect(indicator).toResembleCircularShape(slice);
});
});
});