X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/f6695c9079f4eeeecaa796c879868f797f97cd55..9018d1af07c53b03bf8caf0480b931dc25f57147:/test/models/acl_test.rb diff --git a/test/models/acl_test.rb b/test/models/acl_test.rb index 189f92677..49f065612 100644 --- a/test/models/acl_test.rb +++ b/test/models/acl_test.rb @@ -5,18 +5,26 @@ class AclTest < ActiveSupport::TestCase acl = create(:acl) assert acl.valid? acl.k = nil - assert !acl.valid? + assert_not acl.valid? end def test_no_account_creation_by_subnet - assert !Acl.no_account_creation("192.168.1.1") + assert_not Acl.no_account_creation("192.168.1.1") create(:acl, :address => "192.168.0.0/16", :k => "no_account_creation") assert Acl.no_account_creation("192.168.1.1") end def test_no_account_creation_by_domain - assert !Acl.no_account_creation("192.168.1.1", "example.com") + assert_not Acl.no_account_creation("192.168.1.1", :domain => "example.com") + assert_not Acl.no_account_creation("192.168.1.1", :domain => "test.example.com") create(:acl, :domain => "example.com", :k => "no_account_creation") - assert Acl.no_account_creation("192.168.1.1", "example.com") + assert Acl.no_account_creation("192.168.1.1", :domain => "example.com") + assert Acl.no_account_creation("192.168.1.1", :domain => "test.example.com") + end + + def test_no_account_creation_by_mx + assert_not Acl.no_account_creation("192.168.1.1", :mx => "mail.example.com") + create(:acl, :mx => "mail.example.com", :k => "no_account_creation") + assert Acl.no_account_creation("192.168.1.1", :mx => "mail.example.com") end end