-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathmesh2d.test.js
59 lines (55 loc) · 1.54 KB
/
mesh2d.test.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
import {initHtml} from './utils';
describe('mesh2d', () => {
beforeAll(async () => {
await page.setContent(initHtml);
await page.evaluate(() => {
window.drawMesh = cb => {
const renderer = new Renderer(canvas);
const figure = new Figure2D();
figure.rect(50, 50, 100, 100);
const mesh = new Mesh2D(figure, canvas);
cb(mesh);
renderer.drawMeshes([mesh]);
return canvas.toDataURL();
};
});
});
it('setFill', async () => {
const result = await page.evaluate(() => {
return drawMesh(mesh => {
mesh.setFill({color: [1, 0, 0, 1]});
});
});
expect(result).toMatchSnapshot();
});
it('setRadialGradient', async () => {
const result = await page.evaluate(() => {
return drawMesh(mesh => {
mesh.setRadialGradient({
vector: [0, 0, 0, 0, 0, 50],
colors: [
{offset: 0, color: [1, 0, 1, 1]},
{offset: 0.5, color: [0, 1, 1, 1]},
{offset: 1, color: [1, 0, 1, 1]},
],
});
});
});
expect(result).toMatchSnapshot();
});
it('setLinearGradient', async () => {
const result = await page.evaluate(() => {
return drawMesh(mesh => {
mesh.setLinearGradient({
vector: [0, 0, 200, 200],
colors: [
{offset: 0, color: [1, 0, 0, 1]},
{offset: 0.5, color: [0, 1, 0, 1]},
{offset: 1, color: [0, 0, 1, 1]},
],
});
});
});
expect(result).toMatchSnapshot();
});
});