]> git.openstreetmap.org Git - rails.git/commitdiff
Add test for no_note_comment ACLs
authorTom Hughes <tom@compton.nu>
Tue, 19 Dec 2023 11:59:12 +0000 (11:59 +0000)
committerTom Hughes <tom@compton.nu>
Tue, 19 Dec 2023 12:03:08 +0000 (12:03 +0000)
test/models/acl_test.rb

index ecf150c6d2e329d217017c09da93ec085919a7b1..088fee20279dbfedd52bc0c22df721c6d0c436d1 100644 (file)
@@ -47,4 +47,12 @@ class AclTest < ActiveSupport::TestCase
     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
 end