mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.roles: Add some more missing test cases
Found via mutation testing.
This commit is contained in:
parent
c1627c5d66
commit
e3d1958cc4
1 changed files with 18 additions and 0 deletions
|
@ -11,6 +11,24 @@ describe("util.roles", function ()
|
|||
assert.is_truthy(roles.is_role(test_role));
|
||||
end);
|
||||
describe("role object", function ()
|
||||
it("can be initialized with permissions", function ()
|
||||
local test_role_2 = roles.new({
|
||||
permissions = {
|
||||
perm1 = true;
|
||||
perm2 = false;
|
||||
};
|
||||
});
|
||||
assert.truthy(test_role_2:may("perm1"));
|
||||
assert.falsy(test_role_2:may("perm2"));
|
||||
end);
|
||||
it("has a sensible tostring", function ()
|
||||
local test_role_2 = roles.new({
|
||||
id = "test-role-2";
|
||||
name = "Test Role 2";
|
||||
});
|
||||
assert.truthy(tostring(test_role_2):find("test-role-2", 1, true));
|
||||
assert.truthy(tostring(test_role_2):find("Test Role 2", 1, true));
|
||||
end);
|
||||
it("is restrictive by default", function ()
|
||||
assert.falsy(test_role:may("my-permission"));
|
||||
end);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue