mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net.websocket.frames: Add test case for masked data
ASCI is pretty neat in how lower case alphabet XOR space is upper case
This commit is contained in:
parent
09aca12997
commit
0563faba73
1 changed files with 13 additions and 0 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue