aboutsummaryrefslogtreecommitdiffstats
path: root/spec/net_websocket_frames_spec.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2020-01-02 13:17:03 +0100
committerKim Alvefur <zash@zash.se>2020-01-02 13:17:03 +0100
commit0563faba739b930c600b52e13aca95101cdb8653 (patch)
treee199862b0e5a6061a79b8588aa341f05c413dd3c /spec/net_websocket_frames_spec.lua
parent09aca1299745f8a4d6a6da85c33f3ed12b6cc49d (diff)
downloadprosody-0563faba739b930c600b52e13aca95101cdb8653.tar.gz
prosody-0563faba739b930c600b52e13aca95101cdb8653.zip
net.websocket.frames: Add test case for masked data
ASCI is pretty neat in how lower case alphabet XOR space is upper case
Diffstat (limited to 'spec/net_websocket_frames_spec.lua')
-rw-r--r--spec/net_websocket_frames_spec.lua13
1 files changed, 13 insertions, 0 deletions
diff --git a/spec/net_websocket_frames_spec.lua b/spec/net_websocket_frames_spec.lua
index d4df3a54..6922d523 100644
--- a/spec/net_websocket_frames_spec.lua
+++ b/spec/net_websocket_frames_spec.lua
@@ -32,6 +32,17 @@ describe("net.websocket.frames", function ()
["RSV2"] = false;
["RSV3"] = false;
};
+ masked_data = {
+ ["opcode"] = 0;
+ ["length"] = 5;
+ ["data"] = "hello";
+ ["FIN"] = true;
+ ["MASK"] = true;
+ ["RSV1"] = false;
+ ["RSV2"] = false;
+ ["RSV3"] = false;
+ ["key"] = { 0x20, 0x20, 0x20, 0x20, };
+ };
}
describe("build", function ()
@@ -40,6 +51,7 @@ describe("net.websocket.frames", function ()
assert.equal("\0\0", build(test_frames.simple_empty));
assert.equal("\0\5hello", build(test_frames.simple_data));
assert.equal("\128\0", build(test_frames.simple_fin));
+ assert.equal("\128\133 HELLO", build(test_frames.masked_data));
end);
end);
@@ -49,6 +61,7 @@ describe("net.websocket.frames", function ()
assert.same(test_frames.simple_empty, parse("\0\0"));
assert.same(test_frames.simple_data, parse("\0\5hello"));
assert.same(test_frames.simple_fin, parse("\128\0"));
+ assert.same(test_frames.masked_data, parse("\128\133 HELLO"));
end);
end);