aboutsummaryrefslogtreecommitdiffstats
path: root/spec/util_uuid_spec.lua
diff options
context:
space:
mode:
authorWaqas Hussain <waqas20@gmail.com>2017-09-15 17:07:57 -0400
committerWaqas Hussain <waqas20@gmail.com>2017-09-15 17:07:57 -0400
commitf9ead37d008e58daf1e3263298cfd4a1ab54d09c (patch)
treeb5cd2d09f0ee7e1e9e13feec26defe4f7d9f5003 /spec/util_uuid_spec.lua
parent2547ccfe3d26fbf57e0ecddf5cfd5d21377c3633 (diff)
downloadprosody-f9ead37d008e58daf1e3263298cfd4a1ab54d09c.tar.gz
prosody-f9ead37d008e58daf1e3263298cfd4a1ab54d09c.zip
Port tests to the `busted` test runner
Diffstat (limited to 'spec/util_uuid_spec.lua')
-rw-r--r--spec/util_uuid_spec.lua31
1 files changed, 31 insertions, 0 deletions
diff --git a/spec/util_uuid_spec.lua b/spec/util_uuid_spec.lua
new file mode 100644
index 00000000..6ebaf06d
--- /dev/null
+++ b/spec/util_uuid_spec.lua
@@ -0,0 +1,31 @@
+-- This tests the format, not the randomness
+
+local uuid = require "util.uuid";
+
+describe("util.uuid", function()
+ describe("#generate()", function()
+ it("should work follow the UUID pattern", function()
+ -- https://tools.ietf.org/html/rfc4122#section-4.4
+
+ local pattern = "^" .. table.concat({
+ string.rep("%x", 8),
+ string.rep("%x", 4),
+ "4" .. -- version
+ string.rep("%x", 3),
+ "[89ab]" .. -- reserved bits of 1 and 0
+ string.rep("%x", 3),
+ string.rep("%x", 12),
+ }, "%-") .. "$";
+
+ for _ = 1, 100 do
+ assert.is_string(uuid.generate():match(pattern));
+ end
+ end);
+ end);
+
+ describe("#seed()", function()
+ it("should return nothing", function()
+ assert.is_nil(uuid.seed("random string here"), "seed doesn't return anything");
+ end);
+ end);
+end);