Variant for user ACL test

This commit is contained in:
Mickael Remond 2016-04-06 14:48:43 +02:00
parent 47039aed15
commit eb36440c2e
1 changed files with 11 additions and 0 deletions

View File

@ -30,6 +30,10 @@ defmodule ACLTest do
:ok = :acl.start
end
setup do
:acl.clear
end
test "simple user access rule matches" do
:acl.add(:global, :basic_acl_1, {:user, "test1"})
:acl.add_access(:global, :basic_rule_1, [{:basic_acl_1, :allow}])
@ -38,5 +42,12 @@ defmodule ACLTest do
# We match on user part only for local domain. As an implicit rule remote domain are not matched
assert :acl.match_rule(:global, :basic_rule_1, :jid.from_string("test1@otherdomain")) == :deny
assert :acl.match_rule(:global, :basic_rule_1, :jid.from_string("test11@domain1")) == :deny
:acl.add(:global, :basic_acl_2, {:user, {"test2", "domain1"}})
:acl.add_access(:global, :basic_rule_2, [{:basic_acl_2, :allow}])
assert :acl.match_rule(:global, :basic_rule_2, :jid.from_string("test2@domain1")) == :allow
assert :acl.match_rule(:global, :basic_rule_2, :jid.from_string("test2@domain2")) == :deny
assert :acl.match_rule(:global, :basic_rule_2, :jid.from_string("test2@otherdomain")) == :deny
end
end