summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorPierre Ossman <ossman@cendio.se>2022-08-18 16:15:43 +0200
committerPierre Ossman <ossman@cendio.se>2022-08-18 16:26:33 +0200
commitdf8d005de960e2133ded0610656af591e92fc6b7 (patch)
tree063a081f67677576f830675fd9aabbae61ed1cee /tests
parent795494ade1bab6a14fd45e02dbaba52301df65f1 (diff)
downloadnovnc-df8d005de960e2133ded0610656af591e92fc6b7.tar.gz
VeNCrypt should handle classical types
VeNCrypt is a superset of the original security types, so it should be fine to send any of the classical values here as well.
Diffstat (limited to 'tests')
-rw-r--r--tests/test.rfb.js58
1 files changed, 55 insertions, 3 deletions
diff --git a/tests/test.rfb.js b/tests/test.rfb.js
index 0e46ff4..75d1e11 100644
--- a/tests/test.rfb.js
+++ b/tests/test.rfb.js
@@ -1463,18 +1463,70 @@ describe('Remote Frame Buffer Protocol Client', function () {
expect(client._fail).to.have.been.calledOnce;
});
- it('should fail if the Plain authentication is not present', function () {
+ it('should fail if there are no supported subtypes', function () {
// VeNCrypt version
client._sock._websocket._receiveData(new Uint8Array([0, 2]));
expect(client._sock).to.have.sent(new Uint8Array([0, 2]));
// Server ACK.
client._sock._websocket._receiveData(new Uint8Array([0]));
- // Subtype list, only list subtype 1.
+ // Subtype list
sinon.spy(client, "_fail");
- client._sock._websocket._receiveData(new Uint8Array([1, 0, 0, 0, 1]));
+ client._sock._websocket._receiveData(new Uint8Array([2, 0, 0, 0, 9, 0, 0, 1, 4]));
expect(client._fail).to.have.been.calledOnce;
});
+ it('should support standard types', function () {
+ // VeNCrypt version
+ client._sock._websocket._receiveData(new Uint8Array([0, 2]));
+ expect(client._sock).to.have.sent(new Uint8Array([0, 2]));
+ // Server ACK.
+ client._sock._websocket._receiveData(new Uint8Array([0]));
+ // Subtype list
+ client._sock._websocket._receiveData(new Uint8Array([2, 0, 0, 0, 2, 0, 0, 1, 4]));
+
+ let expectedResponse = [];
+ push32(expectedResponse, 2); // Chosen subtype.
+
+ expect(client._sock).to.have.sent(new Uint8Array(expectedResponse));
+ });
+
+ it('should respect server preference order', function () {
+ // VeNCrypt version
+ client._sock._websocket._receiveData(new Uint8Array([0, 2]));
+ expect(client._sock).to.have.sent(new Uint8Array([0, 2]));
+ // Server ACK.
+ client._sock._websocket._receiveData(new Uint8Array([0]));
+ // Subtype list
+ let subtypes = [ 6 ];
+ push32(subtypes, 79);
+ push32(subtypes, 30);
+ push32(subtypes, 188);
+ push32(subtypes, 256);
+ push32(subtypes, 6);
+ push32(subtypes, 1);
+ client._sock._websocket._receiveData(new Uint8Array(subtypes));
+
+ let expectedResponse = [];
+ push32(expectedResponse, 30); // Chosen subtype.
+
+ expect(client._sock).to.have.sent(new Uint8Array(expectedResponse));
+ });
+
+ it('should ignore redundant VeNCrypt subtype', function () {
+ // VeNCrypt version
+ client._sock._websocket._receiveData(new Uint8Array([0, 2]));
+ expect(client._sock).to.have.sent(new Uint8Array([0, 2]));
+ // Server ACK.
+ client._sock._websocket._receiveData(new Uint8Array([0]));
+ // Subtype list
+ client._sock._websocket._receiveData(new Uint8Array([2, 0, 0, 0, 19, 0, 0, 0, 2]));
+
+ let expectedResponse = [];
+ push32(expectedResponse, 2); // Chosen subtype.
+
+ expect(client._sock).to.have.sent(new Uint8Array(expectedResponse));
+ });
+
it('should support Plain authentication', function () {
client._rfbCredentials = { username: 'username', password: 'password' };
// VeNCrypt version