]> git.openstreetmap.org Git - rails.git/blobdiff - test/models/acl_test.rb
Merge remote-tracking branch 'upstream/pull/2167'
[rails.git] / test / models / acl_test.rb
index 9d843191206640bcd6a402e3b9119c32e4421019..d3d8f26feeb45b9dcb4617ceaa791239ce42d4b2 100644 (file)
@@ -1,8 +1,22 @@
-require 'test_helper'
+require "test_helper"
 
 class AclTest < ActiveSupport::TestCase
-  # Replace this with your real tests.
-  def test_truth
-    assert true
+  def test_k_required
+    acl = create(:acl)
+    assert acl.valid?
+    acl.k = nil
+    assert_not acl.valid?
+  end
+
+  def test_no_account_creation_by_subnet
+    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_not Acl.no_account_creation("192.168.1.1", "example.com")
+    create(:acl, :domain => "example.com", :k => "no_account_creation")
+    assert Acl.no_account_creation("192.168.1.1", "example.com")
   end
 end