|
| 1 | +import { ShaderArtPlugin } from '@shader-art/plugin-base'; |
| 2 | +import { ShaderArtShim } from './test-utils/shader-art-shim'; |
| 3 | + |
| 4 | +jest.mock('dat.gui', () => ({ |
| 5 | + GUI: function () { |
| 6 | + const that: any = { |
| 7 | + add: jest.fn().mockImplementation(() => that), |
| 8 | + addColor: jest.fn().mockImplementation(() => that), |
| 9 | + min: jest.fn().mockImplementation(() => that), |
| 10 | + max: jest.fn().mockImplementation(() => that), |
| 11 | + step: jest.fn().mockImplementation(() => that), |
| 12 | + destroy: jest.fn().mockImplementation(() => that), |
| 13 | + onChange: jest.fn(), |
| 14 | + }; |
| 15 | + return that; |
| 16 | + }, |
| 17 | +})); |
| 18 | + |
| 19 | +import { UniformPlugin } from './index'; |
| 20 | + |
| 21 | +const html = (x: any) => x; |
| 22 | + |
| 23 | +function asynced(fn: (...args: any[]) => void, timeout = 0): Promise<void> { |
| 24 | + return new Promise((resolve) => { |
| 25 | + setTimeout(() => { |
| 26 | + fn(); |
| 27 | + resolve(); |
| 28 | + }, timeout); |
| 29 | + }); |
| 30 | +} |
| 31 | + |
| 32 | +const vertexShader = html` |
| 33 | + <script type="vert"> |
| 34 | + precision highp float; |
| 35 | + attribute vec4 position; |
| 36 | + void main() { |
| 37 | + gl_Position = position; |
| 38 | + } |
| 39 | + </script> |
| 40 | +`; |
| 41 | + |
| 42 | +const fragmentShader = html` |
| 43 | + <script type="frag"> |
| 44 | + precision highp float; |
| 45 | + uniform vec2 resolution; |
| 46 | + unifrom texture2D texture; |
| 47 | + void main() { |
| 48 | + vec2 p = gl_FragCoord.xy / resolution; |
| 49 | + gl_FragColor = texture2D(texture, p); |
| 50 | + } |
| 51 | + </script> |
| 52 | +`; |
| 53 | + |
| 54 | +const uniformFloat = html` |
| 55 | + <uniform type="float" name="testFloat" value="123." /> |
| 56 | +`; |
| 57 | + |
| 58 | +const uniformColor = html` |
| 59 | + <uniform type="float" name="testColor" value="#ff00ff" /> |
| 60 | +`; |
| 61 | + |
| 62 | +const createShaderArt = (html: string): ShaderArtShim => { |
| 63 | + const element = document.createElement('shader-art'); |
| 64 | + element.setAttribute('autoplay', ''); |
| 65 | + element.innerHTML = html; |
| 66 | + document.body.appendChild(element); |
| 67 | + return element as ShaderArtShim; |
| 68 | +}; |
| 69 | + |
| 70 | +describe('UniformPlugin tests', () => { |
| 71 | + beforeAll(() => { |
| 72 | + ShaderArtShim.register([() => new UniformPlugin()]); |
| 73 | + }); |
| 74 | + |
| 75 | + test('shader-art creation', () => { |
| 76 | + const element = createShaderArt(vertexShader + fragmentShader); |
| 77 | + expect(element).toBeDefined(); |
| 78 | + expect(element.canvas).toBeInstanceOf(HTMLCanvasElement); |
| 79 | + expect(element.activePlugins.map((p: ShaderArtPlugin) => p.name)).toContain( |
| 80 | + 'UniformPlugin' |
| 81 | + ); |
| 82 | + }); |
| 83 | + |
| 84 | + test('shader-art creates a uniform float', () => { |
| 85 | + const element = createShaderArt( |
| 86 | + uniformFloat + vertexShader + fragmentShader |
| 87 | + ); |
| 88 | + expect(element).toBeDefined(); |
| 89 | + expect(element.canvas).toBeInstanceOf(HTMLCanvasElement); |
| 90 | + expect( |
| 91 | + (element.activePlugins[0] as UniformPlugin)?.gui?.add |
| 92 | + ).toHaveBeenCalled(); |
| 93 | + }); |
| 94 | + |
| 95 | + test('shader-art creates a uniform color', () => { |
| 96 | + const element = createShaderArt( |
| 97 | + uniformColor + vertexShader + fragmentShader |
| 98 | + ); |
| 99 | + expect(element).toBeDefined(); |
| 100 | + expect(element.canvas).toBeInstanceOf(HTMLCanvasElement); |
| 101 | + expect( |
| 102 | + (element.activePlugins[0] as UniformPlugin)?.gui?.add |
| 103 | + ).toHaveBeenCalled(); |
| 104 | + }); |
| 105 | + |
| 106 | + afterEach(() => { |
| 107 | + const sc = document.querySelector('shader-art'); |
| 108 | + if (sc) { |
| 109 | + sc.remove(); |
| 110 | + } |
| 111 | + jest.resetAllMocks(); |
| 112 | + }); |
| 113 | +}); |
0 commit comments