mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
Merge 0.11->trunk
This commit is contained in:
commit
c69c7e8d8e
2 changed files with 58 additions and 1 deletions
56
spec/net_websocket_frames_spec.lua
Normal file
56
spec/net_websocket_frames_spec.lua
Normal file
|
@ -0,0 +1,56 @@
|
|||
describe("net.websocket.frames", function ()
|
||||
local nwf = require "net.websocket.frames";
|
||||
|
||||
local test_frames = {
|
||||
simple_empty = {
|
||||
["opcode"] = 0;
|
||||
["length"] = 0;
|
||||
["data"] = "";
|
||||
["FIN"] = false;
|
||||
["MASK"] = false;
|
||||
["RSV1"] = false;
|
||||
["RSV2"] = false;
|
||||
["RSV3"] = false;
|
||||
};
|
||||
simple_data = {
|
||||
["opcode"] = 0;
|
||||
["length"] = 5;
|
||||
["data"] = "hello";
|
||||
["FIN"] = false;
|
||||
["MASK"] = false;
|
||||
["RSV1"] = false;
|
||||
["RSV2"] = false;
|
||||
["RSV3"] = false;
|
||||
};
|
||||
simple_fin = {
|
||||
["opcode"] = 0;
|
||||
["length"] = 0;
|
||||
["data"] = "";
|
||||
["FIN"] = true;
|
||||
["MASK"] = false;
|
||||
["RSV1"] = false;
|
||||
["RSV2"] = false;
|
||||
["RSV3"] = false;
|
||||
};
|
||||
}
|
||||
|
||||
describe("build", function ()
|
||||
local build = nwf.build;
|
||||
it("works", 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));
|
||||
end);
|
||||
end);
|
||||
|
||||
describe("parse", function ()
|
||||
local parse = nwf.parse;
|
||||
it("works", 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"));
|
||||
end);
|
||||
end);
|
||||
|
||||
end);
|
||||
|
|
@ -5,7 +5,8 @@ CFLAGS+=-I$(LUA_INCDIR)
|
|||
INSTALL_DATA=install -m644
|
||||
TARGET?=../util/
|
||||
|
||||
ALL=encodings.so hashes.so net.so pposix.so signal.so table.so ringbuffer.so time.so
|
||||
ALL=encodings.so hashes.so net.so pposix.so signal.so table.so \
|
||||
ringbuffer.so time.so poll.so compat.so
|
||||
|
||||
.ifdef $(RANDOM)
|
||||
ALL+=crand.so
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue