Split decoder tests to separate files
							parent
							
								
									212e0f1a10
								
							
						
					
					
						commit
						6fd1035fb1
					
				@ -0,0 +1,58 @@
 | 
			
		||||
const expect = chai.expect;
 | 
			
		||||
 | 
			
		||||
import Websock from '../core/websock.js';
 | 
			
		||||
import Display from '../core/display.js';
 | 
			
		||||
 | 
			
		||||
import CopyRectDecoder from '../core/decoders/copyrect.js';
 | 
			
		||||
 | 
			
		||||
import FakeWebSocket from './fake.websocket.js';
 | 
			
		||||
 | 
			
		||||
function testDecodeRect(decoder, x, y, width, height, data, display, depth) {
 | 
			
		||||
    let sock;
 | 
			
		||||
 | 
			
		||||
    sock = new Websock;
 | 
			
		||||
    sock.open("ws://example.com");
 | 
			
		||||
 | 
			
		||||
    sock.on('message', () => {
 | 
			
		||||
        decoder.decodeRect(x, y, width, height, sock, display, depth);
 | 
			
		||||
    });
 | 
			
		||||
 | 
			
		||||
    sock._websocket._receiveData(new Uint8Array(data));
 | 
			
		||||
 | 
			
		||||
    display.flip();
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
describe('CopyRect Decoder', function () {
 | 
			
		||||
    let decoder;
 | 
			
		||||
    let display;
 | 
			
		||||
 | 
			
		||||
    before(FakeWebSocket.replace);
 | 
			
		||||
    after(FakeWebSocket.restore);
 | 
			
		||||
 | 
			
		||||
    beforeEach(function () {
 | 
			
		||||
        decoder = new CopyRectDecoder();
 | 
			
		||||
        display = new Display(document.createElement('canvas'));
 | 
			
		||||
        display.resize(4, 4);
 | 
			
		||||
    });
 | 
			
		||||
 | 
			
		||||
    it('should handle the CopyRect encoding', function () {
 | 
			
		||||
        let targetData = new Uint8Array([
 | 
			
		||||
            0x00, 0x00, 0xff, 255, 0x00, 0x00, 0xff, 255, 0x00, 0xff, 0x00, 255, 0x00, 0xff, 0x00, 255,
 | 
			
		||||
            0x00, 0x00, 0xff, 255, 0x00, 0x00, 0xff, 255, 0x00, 0xff, 0x00, 255, 0x00, 0xff, 0x00, 255,
 | 
			
		||||
            0x00, 0xff, 0x00, 255, 0x00, 0xff, 0x00, 255, 0x00, 0x00, 0xff, 255, 0x00, 0x00, 0xff, 255,
 | 
			
		||||
            0x00, 0xff, 0x00, 255, 0x00, 0xff, 0x00, 255, 0x00, 0x00, 0xff, 255, 0x00, 0x00, 0xff, 255
 | 
			
		||||
        ]);
 | 
			
		||||
 | 
			
		||||
        // seed some initial data to copy
 | 
			
		||||
        display.blitRgbxImage(0, 0, 4, 2, new Uint8Array(targetData.slice(0, 32)), 0);
 | 
			
		||||
 | 
			
		||||
        testDecodeRect(decoder, 0, 2, 2, 2,
 | 
			
		||||
                       [0x00, 0x02, 0x00, 0x00],
 | 
			
		||||
                       display, 24);
 | 
			
		||||
        testDecodeRect(decoder, 2, 2, 2, 2,
 | 
			
		||||
                       [0x00, 0x00, 0x00, 0x00],
 | 
			
		||||
                       display, 24);
 | 
			
		||||
 | 
			
		||||
        expect(display).to.have.displayed(targetData);
 | 
			
		||||
    });
 | 
			
		||||
});
 | 
			
		||||
@ -0,0 +1,208 @@
 | 
			
		||||
const expect = chai.expect;
 | 
			
		||||
 | 
			
		||||
import Websock from '../core/websock.js';
 | 
			
		||||
import Display from '../core/display.js';
 | 
			
		||||
 | 
			
		||||
import HextileDecoder from '../core/decoders/hextile.js';
 | 
			
		||||
 | 
			
		||||
import FakeWebSocket from './fake.websocket.js';
 | 
			
		||||
 | 
			
		||||
function testDecodeRect(decoder, x, y, width, height, data, display, depth) {
 | 
			
		||||
    let sock;
 | 
			
		||||
 | 
			
		||||
    sock = new Websock;
 | 
			
		||||
    sock.open("ws://example.com");
 | 
			
		||||
 | 
			
		||||
    sock.on('message', () => {
 | 
			
		||||
        decoder.decodeRect(x, y, width, height, sock, display, depth);
 | 
			
		||||
    });
 | 
			
		||||
 | 
			
		||||
    sock._websocket._receiveData(new Uint8Array(data));
 | 
			
		||||
 | 
			
		||||
    display.flip();
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
function push32(arr, num) {
 | 
			
		||||
    arr.push((num >> 24) & 0xFF,
 | 
			
		||||
             (num >> 16) & 0xFF,
 | 
			
		||||
             (num >>  8) & 0xFF,
 | 
			
		||||
             num & 0xFF);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
describe('Hextile Decoder', function () {
 | 
			
		||||
    let decoder;
 | 
			
		||||
    let display;
 | 
			
		||||
 | 
			
		||||
    before(FakeWebSocket.replace);
 | 
			
		||||
    after(FakeWebSocket.restore);
 | 
			
		||||
 | 
			
		||||
    beforeEach(function () {
 | 
			
		||||
        decoder = new HextileDecoder();
 | 
			
		||||
        display = new Display(document.createElement('canvas'));
 | 
			
		||||
        display.resize(4, 4);
 | 
			
		||||
    });
 | 
			
		||||
 | 
			
		||||
    it('should handle a tile with fg, bg specified, normal subrects', function () {
 | 
			
		||||
        let data = [];
 | 
			
		||||
        data.push(0x02 | 0x04 | 0x08); // bg spec, fg spec, anysubrects
 | 
			
		||||
        push32(data, 0xff00ff); // becomes 00ff00ff --> #00FF00 bg color
 | 
			
		||||
        data.push(0xff); // becomes ff0000ff --> #0000FF fg color
 | 
			
		||||
        data.push(0x00);
 | 
			
		||||
        data.push(0x00);
 | 
			
		||||
        data.push(0xff);
 | 
			
		||||
        data.push(2); // 2 subrects
 | 
			
		||||
        data.push(0); // x: 0, y: 0
 | 
			
		||||
        data.push(1 | (1 << 4)); // width: 2, height: 2
 | 
			
		||||
        data.push(2 | (2 << 4)); // x: 2, y: 2
 | 
			
		||||
        data.push(1 | (1 << 4)); // width: 2, height: 2
 | 
			
		||||
 | 
			
		||||
        testDecodeRect(decoder, 0, 0, 4, 4, data, display, 24);
 | 
			
		||||
 | 
			
		||||
        let targetData = new Uint8Array([
 | 
			
		||||
            0x00, 0x00, 0xff, 255, 0x00, 0x00, 0xff, 255, 0x00, 0xff, 0x00, 255, 0x00, 0xff, 0x00, 255,
 | 
			
		||||
            0x00, 0x00, 0xff, 255, 0x00, 0x00, 0xff, 255, 0x00, 0xff, 0x00, 255, 0x00, 0xff, 0x00, 255,
 | 
			
		||||
            0x00, 0xff, 0x00, 255, 0x00, 0xff, 0x00, 255, 0x00, 0x00, 0xff, 255, 0x00, 0x00, 0xff, 255,
 | 
			
		||||
            0x00, 0xff, 0x00, 255, 0x00, 0xff, 0x00, 255, 0x00, 0x00, 0xff, 255, 0x00, 0x00, 0xff, 255
 | 
			
		||||
        ]);
 | 
			
		||||
 | 
			
		||||
        expect(display).to.have.displayed(targetData);
 | 
			
		||||
    });
 | 
			
		||||
 | 
			
		||||
    it('should handle a raw tile', function () {
 | 
			
		||||
        let targetData = new Uint8Array([
 | 
			
		||||
            0x00, 0x00, 0xff, 255, 0x00, 0x00, 0xff, 255, 0x00, 0xff, 0x00, 255, 0x00, 0xff, 0x00, 255,
 | 
			
		||||
            0x00, 0x00, 0xff, 255, 0x00, 0x00, 0xff, 255, 0x00, 0xff, 0x00, 255, 0x00, 0xff, 0x00, 255,
 | 
			
		||||
            0x00, 0xff, 0x00, 255, 0x00, 0xff, 0x00, 255, 0x00, 0x00, 0xff, 255, 0x00, 0x00, 0xff, 255,
 | 
			
		||||
            0x00, 0xff, 0x00, 255, 0x00, 0xff, 0x00, 255, 0x00, 0x00, 0xff, 255, 0x00, 0x00, 0xff, 255
 | 
			
		||||
        ]);
 | 
			
		||||
 | 
			
		||||
        let data = [];
 | 
			
		||||
        data.push(0x01); // raw
 | 
			
		||||
        for (let i = 0; i < targetData.length; i += 4) {
 | 
			
		||||
            data.push(targetData[i + 2]);
 | 
			
		||||
            data.push(targetData[i + 1]);
 | 
			
		||||
            data.push(targetData[i]);
 | 
			
		||||
            data.push(targetData[i + 3]);
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        testDecodeRect(decoder, 0, 0, 4, 4, data, display, 24);
 | 
			
		||||
 | 
			
		||||
        expect(display).to.have.displayed(targetData);
 | 
			
		||||
    });
 | 
			
		||||
 | 
			
		||||
    it('should handle a tile with only bg specified (solid bg)', function () {
 | 
			
		||||
        let data = [];
 | 
			
		||||
        data.push(0x02);
 | 
			
		||||
        push32(data, 0xff00ff); // becomes 00ff00ff --> #00FF00 bg color
 | 
			
		||||
 | 
			
		||||
        testDecodeRect(decoder, 0, 0, 4, 4, data, display, 24);
 | 
			
		||||
 | 
			
		||||
        let expected = [];
 | 
			
		||||
        for (let i = 0; i < 16; i++) {
 | 
			
		||||
            push32(expected, 0xff00ff);
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        expect(display).to.have.displayed(new Uint8Array(expected));
 | 
			
		||||
    });
 | 
			
		||||
 | 
			
		||||
    it('should handle a tile with only bg specified and an empty frame afterwards', function () {
 | 
			
		||||
        // set the width so we can have two tiles
 | 
			
		||||
        display.resize(8, 4);
 | 
			
		||||
 | 
			
		||||
        let data = [];
 | 
			
		||||
 | 
			
		||||
        // send a bg frame
 | 
			
		||||
        data.push(0x02);
 | 
			
		||||
        push32(data, 0xff00ff); // becomes 00ff00ff --> #00FF00 bg color
 | 
			
		||||
 | 
			
		||||
        // send an empty frame
 | 
			
		||||
        data.push(0x00);
 | 
			
		||||
 | 
			
		||||
        testDecodeRect(decoder, 0, 0, 32, 4, data, display, 24);
 | 
			
		||||
 | 
			
		||||
        let expected = [];
 | 
			
		||||
        for (let i = 0; i < 16; i++) {
 | 
			
		||||
            push32(expected, 0xff00ff);     // rect 1: solid
 | 
			
		||||
        }
 | 
			
		||||
        for (let i = 0; i < 16; i++) {
 | 
			
		||||
            push32(expected, 0xff00ff);    // rect 2: same bkground color
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        expect(display).to.have.displayed(new Uint8Array(expected));
 | 
			
		||||
    });
 | 
			
		||||
 | 
			
		||||
    it('should handle a tile with bg and coloured subrects', function () {
 | 
			
		||||
        let data = [];
 | 
			
		||||
        data.push(0x02 | 0x08 | 0x10); // bg spec, anysubrects, colouredsubrects
 | 
			
		||||
        push32(data, 0xff00ff); // becomes 00ff00ff --> #00FF00 bg color
 | 
			
		||||
        data.push(2); // 2 subrects
 | 
			
		||||
        data.push(0xff); // becomes ff0000ff --> #0000FF fg color
 | 
			
		||||
        data.push(0x00);
 | 
			
		||||
        data.push(0x00);
 | 
			
		||||
        data.push(0xff);
 | 
			
		||||
        data.push(0); // x: 0, y: 0
 | 
			
		||||
        data.push(1 | (1 << 4)); // width: 2, height: 2
 | 
			
		||||
        data.push(0xff); // becomes ff0000ff --> #0000FF fg color
 | 
			
		||||
        data.push(0x00);
 | 
			
		||||
        data.push(0x00);
 | 
			
		||||
        data.push(0xff);
 | 
			
		||||
        data.push(2 | (2 << 4)); // x: 2, y: 2
 | 
			
		||||
        data.push(1 | (1 << 4)); // width: 2, height: 2
 | 
			
		||||
 | 
			
		||||
        testDecodeRect(decoder, 0, 0, 4, 4, data, display, 24);
 | 
			
		||||
 | 
			
		||||
        let targetData = new Uint8Array([
 | 
			
		||||
            0x00, 0x00, 0xff, 255, 0x00, 0x00, 0xff, 255, 0x00, 0xff, 0x00, 255, 0x00, 0xff, 0x00, 255,
 | 
			
		||||
            0x00, 0x00, 0xff, 255, 0x00, 0x00, 0xff, 255, 0x00, 0xff, 0x00, 255, 0x00, 0xff, 0x00, 255,
 | 
			
		||||
            0x00, 0xff, 0x00, 255, 0x00, 0xff, 0x00, 255, 0x00, 0x00, 0xff, 255, 0x00, 0x00, 0xff, 255,
 | 
			
		||||
            0x00, 0xff, 0x00, 255, 0x00, 0xff, 0x00, 255, 0x00, 0x00, 0xff, 255, 0x00, 0x00, 0xff, 255
 | 
			
		||||
        ]);
 | 
			
		||||
 | 
			
		||||
        expect(display).to.have.displayed(targetData);
 | 
			
		||||
    });
 | 
			
		||||
 | 
			
		||||
    it('should carry over fg and bg colors from the previous tile if not specified', function () {
 | 
			
		||||
        display.resize(4, 17);
 | 
			
		||||
 | 
			
		||||
        let data = [];
 | 
			
		||||
        data.push(0x02 | 0x04 | 0x08); // bg spec, fg spec, anysubrects
 | 
			
		||||
        push32(data, 0xff00ff); // becomes 00ff00ff --> #00FF00 bg color
 | 
			
		||||
        data.push(0xff); // becomes ff0000ff --> #0000FF fg color
 | 
			
		||||
        data.push(0x00);
 | 
			
		||||
        data.push(0x00);
 | 
			
		||||
        data.push(0xff);
 | 
			
		||||
        data.push(8); // 8 subrects
 | 
			
		||||
        for (let i = 0; i < 4; i++) {
 | 
			
		||||
            data.push((0 << 4) | (i * 4)); // x: 0, y: i*4
 | 
			
		||||
            data.push(1 | (1 << 4)); // width: 2, height: 2
 | 
			
		||||
            data.push((2 << 4) | (i * 4 + 2)); // x: 2, y: i * 4 + 2
 | 
			
		||||
            data.push(1 | (1 << 4)); // width: 2, height: 2
 | 
			
		||||
        }
 | 
			
		||||
        data.push(0x08); // anysubrects
 | 
			
		||||
        data.push(1); // 1 subrect
 | 
			
		||||
        data.push(0); // x: 0, y: 0
 | 
			
		||||
        data.push(1 | (1 << 4)); // width: 2, height: 2
 | 
			
		||||
 | 
			
		||||
        testDecodeRect(decoder, 0, 0, 4, 17, data, display, 24);
 | 
			
		||||
 | 
			
		||||
        let targetData = [
 | 
			
		||||
            0x00, 0x00, 0xff, 255, 0x00, 0x00, 0xff, 255, 0x00, 0xff, 0x00, 255, 0x00, 0xff, 0x00, 255,
 | 
			
		||||
            0x00, 0x00, 0xff, 255, 0x00, 0x00, 0xff, 255, 0x00, 0xff, 0x00, 255, 0x00, 0xff, 0x00, 255,
 | 
			
		||||
            0x00, 0xff, 0x00, 255, 0x00, 0xff, 0x00, 255, 0x00, 0x00, 0xff, 255, 0x00, 0x00, 0xff, 255,
 | 
			
		||||
            0x00, 0xff, 0x00, 255, 0x00, 0xff, 0x00, 255, 0x00, 0x00, 0xff, 255, 0x00, 0x00, 0xff, 255
 | 
			
		||||
        ];
 | 
			
		||||
 | 
			
		||||
        let expected = [];
 | 
			
		||||
        for (let i = 0; i < 4; i++) {
 | 
			
		||||
            expected = expected.concat(targetData);
 | 
			
		||||
        }
 | 
			
		||||
        expected = expected.concat(targetData.slice(0, 16));
 | 
			
		||||
 | 
			
		||||
        expect(display).to.have.displayed(new Uint8Array(expected));
 | 
			
		||||
    });
 | 
			
		||||
 | 
			
		||||
    it('should fail on an invalid subencoding', function () {
 | 
			
		||||
        let data = [45];  // an invalid subencoding
 | 
			
		||||
        expect(() => testDecodeRect(decoder, 0, 0, 4, 4, data, display, 24)).to.throw();
 | 
			
		||||
    });
 | 
			
		||||
});
 | 
			
		||||
@ -0,0 +1,89 @@
 | 
			
		||||
const expect = chai.expect;
 | 
			
		||||
 | 
			
		||||
import Websock from '../core/websock.js';
 | 
			
		||||
import Display from '../core/display.js';
 | 
			
		||||
 | 
			
		||||
import RawDecoder from '../core/decoders/raw.js';
 | 
			
		||||
 | 
			
		||||
import FakeWebSocket from './fake.websocket.js';
 | 
			
		||||
 | 
			
		||||
function testDecodeRect(decoder, x, y, width, height, data, display, depth) {
 | 
			
		||||
    let sock;
 | 
			
		||||
 | 
			
		||||
    sock = new Websock;
 | 
			
		||||
    sock.open("ws://example.com");
 | 
			
		||||
 | 
			
		||||
    sock.on('message', () => {
 | 
			
		||||
        decoder.decodeRect(x, y, width, height, sock, display, depth);
 | 
			
		||||
    });
 | 
			
		||||
 | 
			
		||||
    sock._websocket._receiveData(new Uint8Array(data));
 | 
			
		||||
 | 
			
		||||
    display.flip();
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
describe('Raw Decoder', function () {
 | 
			
		||||
    let decoder;
 | 
			
		||||
    let display;
 | 
			
		||||
 | 
			
		||||
    before(FakeWebSocket.replace);
 | 
			
		||||
    after(FakeWebSocket.restore);
 | 
			
		||||
 | 
			
		||||
    beforeEach(function () {
 | 
			
		||||
        decoder = new RawDecoder();
 | 
			
		||||
        display = new Display(document.createElement('canvas'));
 | 
			
		||||
        display.resize(4, 4);
 | 
			
		||||
    });
 | 
			
		||||
 | 
			
		||||
    it('should handle the Raw encoding', function () {
 | 
			
		||||
        testDecodeRect(decoder, 0, 0, 2, 2,
 | 
			
		||||
                       [0x00, 0x00, 0xff, 0, 0x00, 0xff, 0x00, 0,
 | 
			
		||||
                        0x00, 0xff, 0x00, 0, 0x00, 0x00, 0xff, 0],
 | 
			
		||||
                       display, 24);
 | 
			
		||||
        testDecodeRect(decoder, 2, 0, 2, 2,
 | 
			
		||||
                       [0xff, 0x00, 0x00, 0, 0xff, 0x00, 0x00, 0,
 | 
			
		||||
                        0xff, 0x00, 0x00, 0, 0xff, 0x00, 0x00, 0],
 | 
			
		||||
                       display, 24);
 | 
			
		||||
        testDecodeRect(decoder, 0, 2, 4, 1,
 | 
			
		||||
                       [0xff, 0x00, 0xee, 0, 0xff, 0xee, 0x00, 0,
 | 
			
		||||
                        0xff, 0xee, 0xaa, 0, 0xff, 0xee, 0xab, 0],
 | 
			
		||||
                       display, 24);
 | 
			
		||||
        testDecodeRect(decoder, 0, 3, 4, 1,
 | 
			
		||||
                       [0xff, 0x00, 0xee, 0, 0xff, 0xee, 0x00, 0,
 | 
			
		||||
                        0xff, 0xee, 0xaa, 0, 0xff, 0xee, 0xab, 0],
 | 
			
		||||
                       display, 24);
 | 
			
		||||
 | 
			
		||||
        let targetData = new Uint8Array([
 | 
			
		||||
            0xff, 0x00, 0x00, 255, 0x00, 0xff, 0x00, 255, 0x00, 0x00, 0xff, 255, 0x00, 0x00, 0xff, 255,
 | 
			
		||||
            0x00, 0xff, 0x00, 255, 0xff, 0x00, 0x00, 255, 0x00, 0x00, 0xff, 255, 0x00, 0x00, 0xff, 255,
 | 
			
		||||
            0xee, 0x00, 0xff, 255, 0x00, 0xee, 0xff, 255, 0xaa, 0xee, 0xff, 255, 0xab, 0xee, 0xff, 255,
 | 
			
		||||
            0xee, 0x00, 0xff, 255, 0x00, 0xee, 0xff, 255, 0xaa, 0xee, 0xff, 255, 0xab, 0xee, 0xff, 255
 | 
			
		||||
        ]);
 | 
			
		||||
 | 
			
		||||
        expect(display).to.have.displayed(targetData);
 | 
			
		||||
    });
 | 
			
		||||
 | 
			
		||||
    it('should handle the Raw encoding in low colour mode', function () {
 | 
			
		||||
        testDecodeRect(decoder, 0, 0, 2, 2,
 | 
			
		||||
                       [0x03, 0x03, 0x03, 0x03],
 | 
			
		||||
                       display, 8);
 | 
			
		||||
        testDecodeRect(decoder, 2, 0, 2, 2,
 | 
			
		||||
                       [0x0c, 0x0c, 0x0c, 0x0c],
 | 
			
		||||
                       display, 8);
 | 
			
		||||
        testDecodeRect(decoder, 0, 2, 4, 1,
 | 
			
		||||
                       [0x0c, 0x0c, 0x03, 0x03],
 | 
			
		||||
                       display, 8);
 | 
			
		||||
        testDecodeRect(decoder, 0, 3, 4, 1,
 | 
			
		||||
                       [0x0c, 0x0c, 0x03, 0x03],
 | 
			
		||||
                       display, 8);
 | 
			
		||||
 | 
			
		||||
        let targetData = new Uint8Array([
 | 
			
		||||
            0x00, 0x00, 0xff, 255, 0x00, 0x00, 0xff, 255, 0x00, 0xff, 0x00, 255, 0x00, 0xff, 0x00, 255,
 | 
			
		||||
            0x00, 0x00, 0xff, 255, 0x00, 0x00, 0xff, 255, 0x00, 0xff, 0x00, 255, 0x00, 0xff, 0x00, 255,
 | 
			
		||||
            0x00, 0xff, 0x00, 255, 0x00, 0xff, 0x00, 255, 0x00, 0x00, 0xff, 255, 0x00, 0x00, 0xff, 255,
 | 
			
		||||
            0x00, 0xff, 0x00, 255, 0x00, 0xff, 0x00, 255, 0x00, 0x00, 0xff, 255, 0x00, 0x00, 0xff, 255
 | 
			
		||||
        ]);
 | 
			
		||||
 | 
			
		||||
        expect(display).to.have.displayed(targetData);
 | 
			
		||||
    });
 | 
			
		||||
});
 | 
			
		||||
@ -0,0 +1,84 @@
 | 
			
		||||
const expect = chai.expect;
 | 
			
		||||
 | 
			
		||||
import Websock from '../core/websock.js';
 | 
			
		||||
import Display from '../core/display.js';
 | 
			
		||||
 | 
			
		||||
import RREDecoder from '../core/decoders/rre.js';
 | 
			
		||||
 | 
			
		||||
import FakeWebSocket from './fake.websocket.js';
 | 
			
		||||
 | 
			
		||||
function testDecodeRect(decoder, x, y, width, height, data, display, depth) {
 | 
			
		||||
    let sock;
 | 
			
		||||
 | 
			
		||||
    sock = new Websock;
 | 
			
		||||
    sock.open("ws://example.com");
 | 
			
		||||
 | 
			
		||||
    sock.on('message', () => {
 | 
			
		||||
        decoder.decodeRect(x, y, width, height, sock, display, depth);
 | 
			
		||||
    });
 | 
			
		||||
 | 
			
		||||
    sock._websocket._receiveData(new Uint8Array(data));
 | 
			
		||||
 | 
			
		||||
    display.flip();
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
function push16(arr, num) {
 | 
			
		||||
    arr.push((num >> 8) & 0xFF,
 | 
			
		||||
             num & 0xFF);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
function push32(arr, num) {
 | 
			
		||||
    arr.push((num >> 24) & 0xFF,
 | 
			
		||||
             (num >> 16) & 0xFF,
 | 
			
		||||
             (num >>  8) & 0xFF,
 | 
			
		||||
             num & 0xFF);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
describe('RRE Decoder', function () {
 | 
			
		||||
    let decoder;
 | 
			
		||||
    let display;
 | 
			
		||||
 | 
			
		||||
    before(FakeWebSocket.replace);
 | 
			
		||||
    after(FakeWebSocket.restore);
 | 
			
		||||
 | 
			
		||||
    beforeEach(function () {
 | 
			
		||||
        decoder = new RREDecoder();
 | 
			
		||||
        display = new Display(document.createElement('canvas'));
 | 
			
		||||
        display.resize(4, 4);
 | 
			
		||||
    });
 | 
			
		||||
 | 
			
		||||
    // TODO(directxman12): test rre_chunk_sz?
 | 
			
		||||
 | 
			
		||||
    it('should handle the RRE encoding', function () {
 | 
			
		||||
        let data = [];
 | 
			
		||||
        push32(data, 2); // 2 subrects
 | 
			
		||||
        push32(data, 0xff00ff); // becomes 00ff00ff --> #00FF00 bg color
 | 
			
		||||
        data.push(0xff); // becomes ff0000ff --> #0000FF color
 | 
			
		||||
        data.push(0x00);
 | 
			
		||||
        data.push(0x00);
 | 
			
		||||
        data.push(0xff);
 | 
			
		||||
        push16(data, 0); // x: 0
 | 
			
		||||
        push16(data, 0); // y: 0
 | 
			
		||||
        push16(data, 2); // width: 2
 | 
			
		||||
        push16(data, 2); // height: 2
 | 
			
		||||
        data.push(0xff); // becomes ff0000ff --> #0000FF color
 | 
			
		||||
        data.push(0x00);
 | 
			
		||||
        data.push(0x00);
 | 
			
		||||
        data.push(0xff);
 | 
			
		||||
        push16(data, 2); // x: 2
 | 
			
		||||
        push16(data, 2); // y: 2
 | 
			
		||||
        push16(data, 2); // width: 2
 | 
			
		||||
        push16(data, 2); // height: 2
 | 
			
		||||
 | 
			
		||||
        testDecodeRect(decoder, 0, 0, 4, 4, data, display, 24);
 | 
			
		||||
 | 
			
		||||
        let targetData = new Uint8Array([
 | 
			
		||||
            0x00, 0x00, 0xff, 255, 0x00, 0x00, 0xff, 255, 0x00, 0xff, 0x00, 255, 0x00, 0xff, 0x00, 255,
 | 
			
		||||
            0x00, 0x00, 0xff, 255, 0x00, 0x00, 0xff, 255, 0x00, 0xff, 0x00, 255, 0x00, 0xff, 0x00, 255,
 | 
			
		||||
            0x00, 0xff, 0x00, 255, 0x00, 0xff, 0x00, 255, 0x00, 0x00, 0xff, 255, 0x00, 0x00, 0xff, 255,
 | 
			
		||||
            0x00, 0xff, 0x00, 255, 0x00, 0xff, 0x00, 255, 0x00, 0x00, 0xff, 255, 0x00, 0x00, 0xff, 255
 | 
			
		||||
        ]);
 | 
			
		||||
 | 
			
		||||
        expect(display).to.have.displayed(targetData);
 | 
			
		||||
    });
 | 
			
		||||
});
 | 
			
		||||
@ -0,0 +1,41 @@
 | 
			
		||||
const expect = chai.expect;
 | 
			
		||||
 | 
			
		||||
import Websock from '../core/websock.js';
 | 
			
		||||
import Display from '../core/display.js';
 | 
			
		||||
 | 
			
		||||
import TightDecoder from '../core/decoders/tight.js';
 | 
			
		||||
 | 
			
		||||
import FakeWebSocket from './fake.websocket.js';
 | 
			
		||||
 | 
			
		||||
function testDecodeRect(decoder, x, y, width, height, data, display, depth) {
 | 
			
		||||
    let sock;
 | 
			
		||||
 | 
			
		||||
    sock = new Websock;
 | 
			
		||||
    sock.open("ws://example.com");
 | 
			
		||||
 | 
			
		||||
    sock.on('message', () => {
 | 
			
		||||
        decoder.decodeRect(x, y, width, height, sock, display, depth);
 | 
			
		||||
    });
 | 
			
		||||
 | 
			
		||||
    sock._websocket._receiveData(new Uint8Array(data));
 | 
			
		||||
 | 
			
		||||
    display.flip();
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
describe('Tight Decoder', function () {
 | 
			
		||||
    let decoder;
 | 
			
		||||
    let display;
 | 
			
		||||
 | 
			
		||||
    before(FakeWebSocket.replace);
 | 
			
		||||
    after(FakeWebSocket.restore);
 | 
			
		||||
 | 
			
		||||
    beforeEach(function () {
 | 
			
		||||
        decoder = new TightDecoder();
 | 
			
		||||
        display = new Display(document.createElement('canvas'));
 | 
			
		||||
        display.resize(4, 4);
 | 
			
		||||
    });
 | 
			
		||||
 | 
			
		||||
    it.skip('should handle the Tight encoding', function () {
 | 
			
		||||
        // TODO(directxman12): test this
 | 
			
		||||
    });
 | 
			
		||||
});
 | 
			
		||||
@ -0,0 +1,41 @@
 | 
			
		||||
const expect = chai.expect;
 | 
			
		||||
 | 
			
		||||
import Websock from '../core/websock.js';
 | 
			
		||||
import Display from '../core/display.js';
 | 
			
		||||
 | 
			
		||||
import TightPngDecoder from '../core/decoders/tightpng.js';
 | 
			
		||||
 | 
			
		||||
import FakeWebSocket from './fake.websocket.js';
 | 
			
		||||
 | 
			
		||||
function testDecodeRect(decoder, x, y, width, height, data, display, depth) {
 | 
			
		||||
    let sock;
 | 
			
		||||
 | 
			
		||||
    sock = new Websock;
 | 
			
		||||
    sock.open("ws://example.com");
 | 
			
		||||
 | 
			
		||||
    sock.on('message', () => {
 | 
			
		||||
        decoder.decodeRect(x, y, width, height, sock, display, depth);
 | 
			
		||||
    });
 | 
			
		||||
 | 
			
		||||
    sock._websocket._receiveData(new Uint8Array(data));
 | 
			
		||||
 | 
			
		||||
    display.flip();
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
describe('TightPng Decoder', function () {
 | 
			
		||||
    let decoder;
 | 
			
		||||
    let display;
 | 
			
		||||
 | 
			
		||||
    before(FakeWebSocket.replace);
 | 
			
		||||
    after(FakeWebSocket.restore);
 | 
			
		||||
 | 
			
		||||
    beforeEach(function () {
 | 
			
		||||
        decoder = new TightPngDecoder();
 | 
			
		||||
        display = new Display(document.createElement('canvas'));
 | 
			
		||||
        display.resize(4, 4);
 | 
			
		||||
    });
 | 
			
		||||
 | 
			
		||||
    it.skip('should handle the TightPng encoding', function () {
 | 
			
		||||
        // TODO(directxman12): test this
 | 
			
		||||
    });
 | 
			
		||||
});
 | 
			
		||||
					Loading…
					
					
				
		Reference in New Issue