tests: Add minimal test for util.random that checks that it returns the number of bytes requested

This commit is contained in:
Kim Alvefur 2016-02-21 18:05:54 +01:00
parent c9d425731d
commit 7c238f0426
2 changed files with 11 additions and 0 deletions

View file

@ -23,6 +23,7 @@ function run_all_tests()
dotest "util.cache"
dotest "util.throttle"
dotest "util.uuid"
dotest "util.random"
dosingletest("test_sasl.lua", "latin1toutf8");
dosingletest("test_utf8.lua", "valid");

View file

@ -0,0 +1,10 @@
-- Makes no attempt at testing how random the bytes are,
-- just that it returns the number of bytes requested
function bytes(bytes)
assert_is(bytes(16));
for i = 1, 255 do
assert_equal(i, #bytes(i));
end
end