mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
tests: Add minimal test for util.random that checks that it returns the number of bytes requested
This commit is contained in:
parent
c9d425731d
commit
7c238f0426
2 changed files with 11 additions and 0 deletions
|
@ -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");
|
||||
|
|
10
tests/test_util_random.lua
Normal file
10
tests/test_util_random.lua
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue