]> git.proxmox.com Git - mirror_novnc.git/blame - tests/test.display.js
Remove unused properties and variables
[mirror_novnc.git] / tests / test.display.js
CommitLineData
2b5f94fa 1const expect = chai.expect;
1e13775b 2
dfae3209
SR
3import Base64 from '../core/base64.js';
4import Display from '../core/display.js';
dfae3209 5
1e13775b 6describe('Display/Canvas Helper', function () {
2b5f94fa 7 const checked_data = new Uint8Array([
1e13775b
SR
8 0x00, 0x00, 0xff, 255, 0x00, 0x00, 0xff, 255, 0x00, 0xff, 0x00, 255, 0x00, 0xff, 0x00, 255,
9 0x00, 0x00, 0xff, 255, 0x00, 0x00, 0xff, 255, 0x00, 0xff, 0x00, 255, 0x00, 0xff, 0x00, 255,
10 0x00, 0xff, 0x00, 255, 0x00, 0xff, 0x00, 255, 0x00, 0x00, 0xff, 255, 0x00, 0x00, 0xff, 255,
11 0x00, 0xff, 0x00, 255, 0x00, 0xff, 0x00, 255, 0x00, 0x00, 0xff, 255, 0x00, 0x00, 0xff, 255
2b5f94fa 12 ]);
1e13775b 13
2b5f94fa 14 const basic_data = new Uint8Array([0xff, 0x00, 0x00, 255, 0x00, 0xff, 0x00, 255, 0x00, 0x00, 0xff, 255, 0xff, 0xff, 0xff, 255]);
1e13775b 15
2c5491e1 16 function make_image_canvas(input_data) {
2b5f94fa 17 const canvas = document.createElement('canvas');
1e13775b
SR
18 canvas.width = 4;
19 canvas.height = 4;
2b5f94fa
JD
20 const ctx = canvas.getContext('2d');
21 const data = ctx.createImageData(4, 4);
22 for (let i = 0; i < checked_data.length; i++) { data.data[i] = input_data[i]; }
1e13775b
SR
23 ctx.putImageData(data, 0, 0);
24 return canvas;
25 }
26
2c5491e1 27 function make_image_png(input_data) {
2b5f94fa
JD
28 const canvas = make_image_canvas(input_data);
29 const url = canvas.toDataURL();
30 const data = url.split(",")[1];
74e39051
PO
31 return Base64.decode(data);
32 }
33
1e13775b 34 describe('viewport handling', function () {
2b5f94fa 35 let display;
1e13775b 36 beforeEach(function () {
747b4623 37 display = new Display(document.createElement('canvas'));
0460e5fd 38 display.clipViewport = true;
1e13775b 39 display.resize(5, 5);
636be753 40 display.viewportChangeSize(3, 3);
41 display.viewportChangePos(1, 1);
1e13775b
SR
42 });
43
44 it('should take viewport location into consideration when drawing images', function () {
e549ae07 45 display.resize(4, 4);
636be753 46 display.viewportChangeSize(2, 2);
1e13775b 47 display.drawImage(make_image_canvas(basic_data), 1, 1);
2ba767a7 48 display.flip();
1e13775b 49
2b5f94fa
JD
50 const expected = new Uint8Array(16);
51 for (let i = 0; i < 8; i++) { expected[i] = basic_data[i]; }
52 for (let i = 8; i < 16; i++) { expected[i] = 0; }
1e13775b
SR
53 expect(display).to.have.displayed(expected);
54 });
55
2c5491e1 56 it('should resize the target canvas when resizing the viewport', function () {
2ba767a7 57 display.viewportChangeSize(2, 2);
3f781f2a
PO
58 expect(display._target.width).to.equal(2);
59 expect(display._target.height).to.equal(2);
1e13775b
SR
60 });
61
2c5491e1 62 it('should move the viewport if necessary', function () {
adf345fd
PO
63 display.viewportChangeSize(5, 5);
64 expect(display.absX(0)).to.equal(0);
65 expect(display.absY(0)).to.equal(0);
66 expect(display._target.width).to.equal(5);
67 expect(display._target.height).to.equal(5);
68 });
69
2c5491e1 70 it('should limit the viewport to the framebuffer size', function () {
adf345fd
PO
71 display.viewportChangeSize(6, 6);
72 expect(display._target.width).to.equal(5);
73 expect(display._target.height).to.equal(5);
74 });
75
2ba767a7
PO
76 it('should redraw when moving the viewport', function () {
77 display.flip = sinon.spy();
78 display.viewportChangePos(-1, 1);
79 expect(display.flip).to.have.been.calledOnce;
1e13775b
SR
80 });
81
2ba767a7
PO
82 it('should redraw when resizing the viewport', function () {
83 display.flip = sinon.spy();
84 display.viewportChangeSize(2, 2);
85 expect(display.flip).to.have.been.calledOnce;
1e13775b 86 });
fdedbafb 87
2c5491e1 88 it('should show the entire framebuffer when disabling the viewport', function () {
0460e5fd 89 display.clipViewport = false;
adf345fd
PO
90 expect(display.absX(0)).to.equal(0);
91 expect(display.absY(0)).to.equal(0);
92 expect(display._target.width).to.equal(5);
93 expect(display._target.height).to.equal(5);
94 });
95
2c5491e1 96 it('should ignore viewport changes when the viewport is disabled', function () {
0460e5fd 97 display.clipViewport = false;
adf345fd
PO
98 display.viewportChangeSize(2, 2);
99 display.viewportChangePos(1, 1);
100 expect(display.absX(0)).to.equal(0);
101 expect(display.absY(0)).to.equal(0);
102 expect(display._target.width).to.equal(5);
103 expect(display._target.height).to.equal(5);
104 });
105
2c5491e1 106 it('should show the entire framebuffer just after enabling the viewport', function () {
0460e5fd
PO
107 display.clipViewport = false;
108 display.clipViewport = true;
adf345fd
PO
109 expect(display.absX(0)).to.equal(0);
110 expect(display.absY(0)).to.equal(0);
111 expect(display._target.width).to.equal(5);
112 expect(display._target.height).to.equal(5);
113 });
fdedbafb 114 });
115
1e13775b 116 describe('resizing', function () {
2b5f94fa 117 let display;
1e13775b 118 beforeEach(function () {
747b4623 119 display = new Display(document.createElement('canvas'));
0460e5fd 120 display.clipViewport = false;
adf345fd 121 display.resize(4, 4);
1e13775b
SR
122 });
123
124 it('should change the size of the logical canvas', function () {
125 display.resize(5, 7);
126 expect(display._fb_width).to.equal(5);
127 expect(display._fb_height).to.equal(7);
128 });
129
2ba767a7 130 it('should keep the framebuffer data', function () {
adf345fd 131 display.fillRect(0, 0, 4, 4, [0, 0, 0xff]);
2ba767a7
PO
132 display.resize(2, 2);
133 display.flip();
2b5f94fa
JD
134 const expected = [];
135 for (let i = 0; i < 4 * 2*2; i += 4) {
2ba767a7
PO
136 expected[i] = 0xff;
137 expected[i+1] = expected[i+2] = 0;
138 expected[i+3] = 0xff;
139 }
140 expect(display).to.have.displayed(new Uint8Array(expected));
141 });
adf345fd
PO
142
143 describe('viewport', function () {
144 beforeEach(function () {
0460e5fd 145 display.clipViewport = true;
adf345fd
PO
146 display.viewportChangeSize(3, 3);
147 display.viewportChangePos(1, 1);
148 });
149
150 it('should keep the viewport position and size if possible', function () {
151 display.resize(6, 6);
152 expect(display.absX(0)).to.equal(1);
153 expect(display.absY(0)).to.equal(1);
154 expect(display._target.width).to.equal(3);
155 expect(display._target.height).to.equal(3);
156 });
157
158 it('should move the viewport if necessary', function () {
159 display.resize(3, 3);
160 expect(display.absX(0)).to.equal(0);
161 expect(display.absY(0)).to.equal(0);
162 expect(display._target.width).to.equal(3);
163 expect(display._target.height).to.equal(3);
164 });
165
166 it('should shrink the viewport if necessary', function () {
167 display.resize(2, 2);
168 expect(display.absX(0)).to.equal(0);
169 expect(display.absY(0)).to.equal(0);
170 expect(display._target.width).to.equal(2);
171 expect(display._target.height).to.equal(2);
172 });
173 });
1e13775b
SR
174 });
175
72747869 176 describe('rescaling', function () {
2b5f94fa
JD
177 let display;
178 let canvas;
72747869
SR
179
180 beforeEach(function () {
3d7bb020 181 canvas = document.createElement('canvas');
747b4623 182 display = new Display(canvas);
0460e5fd 183 display.clipViewport = true;
adf345fd
PO
184 display.resize(4, 4);
185 display.viewportChangeSize(3, 3);
186 display.viewportChangePos(1, 1);
72747869
SR
187 document.body.appendChild(canvas);
188 });
189
190 afterEach(function () {
191 document.body.removeChild(canvas);
192 });
193
194 it('should not change the bitmap size of the canvas', function () {
747b4623 195 display.scale = 2.0;
adf345fd 196 expect(canvas.width).to.equal(3);
72747869
SR
197 expect(canvas.height).to.equal(3);
198 });
199
200 it('should change the effective rendered size of the canvas', function () {
747b4623 201 display.scale = 2.0;
adf345fd
PO
202 expect(canvas.clientWidth).to.equal(6);
203 expect(canvas.clientHeight).to.equal(6);
204 });
205
206 it('should not change when resizing', function () {
747b4623 207 display.scale = 2.0;
adf345fd 208 display.resize(5, 5);
747b4623 209 expect(display.scale).to.equal(2.0);
adf345fd
PO
210 expect(canvas.width).to.equal(3);
211 expect(canvas.height).to.equal(3);
212 expect(canvas.clientWidth).to.equal(6);
213 expect(canvas.clientHeight).to.equal(6);
72747869
SR
214 });
215 });
216
217 describe('autoscaling', function () {
2b5f94fa
JD
218 let display;
219 let canvas;
72747869
SR
220
221 beforeEach(function () {
3d7bb020 222 canvas = document.createElement('canvas');
747b4623 223 display = new Display(canvas);
0460e5fd 224 display.clipViewport = true;
72747869 225 display.resize(4, 3);
9886d595 226 display.viewportChangeSize(4, 3);
72747869
SR
227 document.body.appendChild(canvas);
228 });
229
230 afterEach(function () {
231 document.body.removeChild(canvas);
232 });
233
234 it('should preserve aspect ratio while autoscaling', function () {
235 display.autoscale(16, 9);
236 expect(canvas.clientWidth / canvas.clientHeight).to.equal(4 / 3);
237 });
238
239 it('should use width to determine scale when the current aspect ratio is wider than the target', function () {
280676c7
SM
240 display.autoscale(9, 16);
241 expect(display.absX(9)).to.equal(4);
242 expect(display.absY(18)).to.equal(8);
72747869
SR
243 expect(canvas.clientWidth).to.equal(9);
244 expect(canvas.clientHeight).to.equal(7); // round 9 / (4 / 3)
245 });
246
247 it('should use height to determine scale when the current aspect ratio is taller than the target', function () {
280676c7
SM
248 display.autoscale(16, 9);
249 expect(display.absX(9)).to.equal(3);
250 expect(display.absY(18)).to.equal(6);
72747869
SR
251 expect(canvas.clientWidth).to.equal(12); // 16 * (4 / 3)
252 expect(canvas.clientHeight).to.equal(9);
253
254 });
255
256 it('should not change the bitmap size of the canvas', function () {
257 display.autoscale(16, 9);
258 expect(canvas.width).to.equal(4);
259 expect(canvas.height).to.equal(3);
260 });
72747869
SR
261 });
262
1e13775b
SR
263 describe('drawing', function () {
264
265 // TODO(directxman12): improve the tests for each of the drawing functions to cover more than just the
266 // basic cases
2b5f94fa 267 let display;
134ec26e
PO
268 beforeEach(function () {
269 display = new Display(document.createElement('canvas'));
270 display.resize(4, 4);
271 });
1e13775b 272
134ec26e
PO
273 it('should not draw directly on the target canvas', function () {
274 display.fillRect(0, 0, 4, 4, [0, 0, 0xff]);
275 display.flip();
276 display.fillRect(0, 0, 4, 4, [0, 0xff, 0]);
2b5f94fa
JD
277 const expected = [];
278 for (let i = 0; i < 4 * display._fb_width * display._fb_height; i += 4) {
134ec26e
PO
279 expected[i] = 0xff;
280 expected[i+1] = expected[i+2] = 0;
281 expected[i+3] = 0xff;
282 }
283 expect(display).to.have.displayed(new Uint8Array(expected));
284 });
1e13775b 285
134ec26e
PO
286 it('should support filling a rectangle with particular color via #fillRect', function () {
287 display.fillRect(0, 0, 4, 4, [0, 0xff, 0]);
288 display.fillRect(0, 0, 2, 2, [0xff, 0, 0]);
289 display.fillRect(2, 2, 2, 2, [0xff, 0, 0]);
290 display.flip();
291 expect(display).to.have.displayed(checked_data);
292 });
74e39051 293
134ec26e
PO
294 it('should support copying an portion of the canvas via #copyImage', function () {
295 display.fillRect(0, 0, 4, 4, [0, 0xff, 0]);
296 display.fillRect(0, 0, 2, 2, [0xff, 0, 0x00]);
297 display.copyImage(0, 0, 2, 2, 2, 2);
298 display.flip();
299 expect(display).to.have.displayed(checked_data);
300 });
1e13775b 301
134ec26e 302 it('should support drawing images via #imageRect', function (done) {
c4eb4ddc 303 display.imageRect(0, 0, 4, 4, "image/png", make_image_png(checked_data));
134ec26e 304 display.flip();
651c23ec 305 display.onflush = () => {
1e13775b 306 expect(display).to.have.displayed(checked_data);
134ec26e 307 done();
747b4623 308 };
134ec26e
PO
309 display.flush();
310 });
1e13775b 311
134ec26e
PO
312 it('should support drawing tile data with a background color and sub tiles', function () {
313 display.startTile(0, 0, 4, 4, [0, 0xff, 0]);
314 display.subTile(0, 0, 2, 2, [0xff, 0, 0]);
315 display.subTile(2, 2, 2, 2, [0xff, 0, 0]);
316 display.finishTile();
317 display.flip();
318 expect(display).to.have.displayed(checked_data);
319 });
1e13775b 320
1f9d0cb1
PO
321 // We have a special cache for 16x16 tiles that we need to test
322 it('should support drawing a 16x16 tile', function () {
2b5f94fa 323 const large_checked_data = new Uint8Array(16*16*4);
1f9d0cb1
PO
324 display.resize(16, 16);
325
326 for (let y = 0;y < 16;y++) {
327 for (let x = 0;x < 16;x++) {
328 let pixel;
329 if ((x < 4) && (y < 4)) {
af4deba8
SR
330 // NB: of course IE11 doesn't support #slice on ArrayBufferViews...
331 pixel = Array.prototype.slice.call(checked_data, (y*4+x)*4, (y*4+x+1)*4);
1f9d0cb1
PO
332 } else {
333 pixel = [0, 0xff, 0, 255];
334 }
335 large_checked_data.set(pixel, (y*16+x)*4);
336 }
337 }
338
339 display.startTile(0, 0, 16, 16, [0, 0xff, 0]);
340 display.subTile(0, 0, 2, 2, [0xff, 0, 0]);
341 display.subTile(2, 2, 2, 2, [0xff, 0, 0]);
342 display.finishTile();
343 display.flip();
344 expect(display).to.have.displayed(large_checked_data);
345 });
346
134ec26e 347 it('should support drawing BGRX blit images with true color via #blitImage', function () {
2b5f94fa
JD
348 const data = [];
349 for (let i = 0; i < 16; i++) {
134ec26e
PO
350 data[i * 4] = checked_data[i * 4 + 2];
351 data[i * 4 + 1] = checked_data[i * 4 + 1];
352 data[i * 4 + 2] = checked_data[i * 4];
353 data[i * 4 + 3] = checked_data[i * 4 + 3];
354 }
355 display.blitImage(0, 0, 4, 4, data, 0);
356 display.flip();
357 expect(display).to.have.displayed(checked_data);
358 });
1e13775b 359
134ec26e 360 it('should support drawing RGB blit images with true color via #blitRgbImage', function () {
2b5f94fa
JD
361 const data = [];
362 for (let i = 0; i < 16; i++) {
134ec26e
PO
363 data[i * 3] = checked_data[i * 4];
364 data[i * 3 + 1] = checked_data[i * 4 + 1];
365 data[i * 3 + 2] = checked_data[i * 4 + 2];
366 }
367 display.blitRgbImage(0, 0, 4, 4, data, 0);
368 display.flip();
369 expect(display).to.have.displayed(checked_data);
370 });
371
372 it('should support drawing an image object via #drawImage', function () {
2b5f94fa 373 const img = make_image_canvas(checked_data);
134ec26e
PO
374 display.drawImage(img, 0, 0);
375 display.flip();
376 expect(display).to.have.displayed(checked_data);
377 });
1e13775b
SR
378 });
379
380 describe('the render queue processor', function () {
2b5f94fa 381 let display;
1e13775b 382 beforeEach(function () {
134ec26e 383 display = new Display(document.createElement('canvas'));
1e13775b
SR
384 display.resize(4, 4);
385 sinon.spy(display, '_scan_renderQ');
1e13775b
SR
386 });
387
1e13775b 388 it('should try to process an item when it is pushed on, if nothing else is on the queue', function () {
1578fa68 389 display._renderQ_push({ type: 'noop' }); // does nothing
1e13775b
SR
390 expect(display._scan_renderQ).to.have.been.calledOnce;
391 });
392
393 it('should not try to process an item when it is pushed on if we are waiting for other items', function () {
394 display._renderQ.length = 2;
1578fa68 395 display._renderQ_push({ type: 'noop' });
1e13775b
SR
396 expect(display._scan_renderQ).to.not.have.been.called;
397 });
398
399 it('should wait until an image is loaded to attempt to draw it and the rest of the queue', function () {
c4eb4ddc
PO
400 const img = { complete: false, width: 4, height: 4, addEventListener: sinon.spy() };
401 display._renderQ = [{ type: 'img', x: 3, y: 4, width: 4, height: 4, img: img },
1e13775b
SR
402 { type: 'fill', x: 1, y: 2, width: 3, height: 4, color: 5 }];
403 display.drawImage = sinon.spy();
404 display.fillRect = sinon.spy();
405
406 display._scan_renderQ();
407 expect(display.drawImage).to.not.have.been.called;
408 expect(display.fillRect).to.not.have.been.called;
bb6965f2 409 expect(img.addEventListener).to.have.been.calledOnce;
1e13775b
SR
410
411 display._renderQ[0].img.complete = true;
bb6965f2 412 display._scan_renderQ();
1e13775b
SR
413 expect(display.drawImage).to.have.been.calledOnce;
414 expect(display.fillRect).to.have.been.calledOnce;
bb6965f2 415 expect(img.addEventListener).to.have.been.calledOnce;
1e13775b
SR
416 });
417
c4eb4ddc
PO
418 it('should wait if an image is incorrectly loaded', function () {
419 const img = { complete: true, width: 0, height: 0, addEventListener: sinon.spy() };
420 display._renderQ = [{ type: 'img', x: 3, y: 4, width: 4, height: 4, img: img },
421 { type: 'fill', x: 1, y: 2, width: 3, height: 4, color: 5 }];
422 display.drawImage = sinon.spy();
423 display.fillRect = sinon.spy();
424
425 display._scan_renderQ();
426 expect(display.drawImage).to.not.have.been.called;
427 expect(display.fillRect).to.not.have.been.called;
428 expect(img.addEventListener).to.have.been.calledOnce;
429
430 display._renderQ[0].img.complete = true;
431 display._renderQ[0].img.width = 4;
432 display._renderQ[0].img.height = 4;
433 display._scan_renderQ();
434 expect(display.drawImage).to.have.been.calledOnce;
435 expect(display.fillRect).to.have.been.calledOnce;
436 expect(img.addEventListener).to.have.been.calledOnce;
437 });
438
3181a032 439 it('should call callback when queue is flushed', function () {
747b4623 440 display.onflush = sinon.spy();
3181a032 441 display.fillRect(0, 0, 4, 4, [0, 0xff, 0]);
747b4623 442 expect(display.onflush).to.not.have.been.called;
3181a032 443 display.flush();
747b4623 444 expect(display.onflush).to.have.been.calledOnce;
3181a032
PO
445 });
446
1e13775b
SR
447 it('should draw a blit image on type "blit"', function () {
448 display.blitImage = sinon.spy();
1578fa68 449 display._renderQ_push({ type: 'blit', x: 3, y: 4, width: 5, height: 6, data: [7, 8, 9] });
1e13775b
SR
450 expect(display.blitImage).to.have.been.calledOnce;
451 expect(display.blitImage).to.have.been.calledWith(3, 4, 5, 6, [7, 8, 9], 0);
452 });
453
454 it('should draw a blit RGB image on type "blitRgb"', function () {
455 display.blitRgbImage = sinon.spy();
1578fa68 456 display._renderQ_push({ type: 'blitRgb', x: 3, y: 4, width: 5, height: 6, data: [7, 8, 9] });
1e13775b
SR
457 expect(display.blitRgbImage).to.have.been.calledOnce;
458 expect(display.blitRgbImage).to.have.been.calledWith(3, 4, 5, 6, [7, 8, 9], 0);
459 });
460
461 it('should copy a region on type "copy"', function () {
462 display.copyImage = sinon.spy();
1578fa68 463 display._renderQ_push({ type: 'copy', x: 3, y: 4, width: 5, height: 6, old_x: 7, old_y: 8 });
1e13775b
SR
464 expect(display.copyImage).to.have.been.calledOnce;
465 expect(display.copyImage).to.have.been.calledWith(7, 8, 3, 4, 5, 6);
466 });
467
468 it('should fill a rect with a given color on type "fill"', function () {
469 display.fillRect = sinon.spy();
1578fa68 470 display._renderQ_push({ type: 'fill', x: 3, y: 4, width: 5, height: 6, color: [7, 8, 9]});
1e13775b
SR
471 expect(display.fillRect).to.have.been.calledOnce;
472 expect(display.fillRect).to.have.been.calledWith(3, 4, 5, 6, [7, 8, 9]);
473 });
474
475 it('should draw an image from an image object on type "img" (if complete)', function () {
476 display.drawImage = sinon.spy();
1578fa68 477 display._renderQ_push({ type: 'img', x: 3, y: 4, img: { complete: true } });
1e13775b
SR
478 expect(display.drawImage).to.have.been.calledOnce;
479 expect(display.drawImage).to.have.been.calledWith({ complete: true }, 3, 4);
480 });
481 });
482});