X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/1b675a6dee47ec5fd00bbab30d7f10a38d885109..5d1bc7a4fa3f21db35ca95292ec9a383476c3843:/test/models/acl_test.rb?ds=sidebyside diff --git a/test/models/acl_test.rb b/test/models/acl_test.rb index 33601df2b..ac3ea091c 100644 --- a/test/models/acl_test.rb +++ b/test/models/acl_test.rb @@ -28,16 +28,39 @@ class AclTest < ActiveSupport::TestCase assert Acl.no_account_creation("192.168.1.1", :mx => "mail.example.com") end - def test_allowed_account_creation - assert_not Acl.allow_account_creation("192.168.1.1", :domain => "example.com", :mx => "mail.example.com") - create(:acl, :address => "192.168.1.1", :domain => "example.com", :mx => "mail.example.com", :k => "allow_account_creation") - - assert_not Acl.allow_account_creation("192.168.1.2") + def test_allow_account_creation_by_subnet + assert_not Acl.allow_account_creation("192.168.1.1") + create(:acl, :address => "192.168.0.0/16", :k => "allow_account_creation") assert Acl.allow_account_creation("192.168.1.1") + end + + def test_allow_account_creation_by_domain + assert_not Acl.allow_account_creation("192.168.1.1", :domain => "example.com") + assert_not Acl.allow_account_creation("192.168.1.1", :domain => "test.example.com") + create(:acl, :domain => "example.com", :k => "allow_account_creation") + assert Acl.allow_account_creation("192.168.1.1", :domain => "example.com") + assert Acl.allow_account_creation("192.168.1.1", :domain => "test.example.com") + end + + def test_allow_account_creation_by_mx + assert_not Acl.allow_account_creation("192.168.1.1", :mx => "mail.example.com") + create(:acl, :mx => "mail.example.com", :k => "allow_account_creation") + assert Acl.allow_account_creation("192.168.1.1", :mx => "mail.example.com") + end + + def test_no_note_comment_by_domain + assert_not Acl.no_note_comment("192.168.1.1", "example.com") + assert_not Acl.no_note_comment("192.168.1.1", "test.example.com") + create(:acl, :domain => "example.com", :k => "no_note_comment") + assert Acl.no_note_comment("192.168.1.1", "example.com") + assert Acl.no_note_comment("192.168.1.1", "test.example.com") + end - assert_not Acl.allow_account_creation("192.168.1.2", :domain => "example.com", :mx => "mail.example.com") - assert_not Acl.allow_account_creation("192.168.1.1", :domain => "example1.com", :mx => "mail.example.com") - assert_not Acl.allow_account_creation("192.168.1.1", :domain => "example.com", :mx => "mail1.example.com") - assert Acl.allow_account_creation("192.168.1.1", :domain => "example.com", :mx => "mail.example.com") + def test_no_trace_download_by_domain + assert_not Acl.no_trace_download("192.168.1.1", "example.com") + assert_not Acl.no_trace_download("192.168.1.1", "test.example.com") + create(:acl, :domain => "example.com", :k => "no_trace_download") + assert Acl.no_trace_download("192.168.1.1", "example.com") + assert Acl.no_trace_download("192.168.1.1", "test.example.com") end end