From: Tom Hughes Date: Wed, 26 Oct 2016 14:34:49 +0000 (+0100) Subject: Merge remote-tracking branch 'openstreetmap/pull/1335' X-Git-Tag: live~3739 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/69fa4e9940fe2858c90ea39277ef6ffcd84a3ca6?hp=7725cd59b41a622a634a447d33fbda738a472748 Merge remote-tracking branch 'openstreetmap/pull/1335' --- diff --git a/app/models/acl.rb b/app/models/acl.rb index 8bb4ae4b9..529ccbe3b 100644 --- a/app/models/acl.rb +++ b/app/models/acl.rb @@ -1,4 +1,6 @@ class Acl < ActiveRecord::Base + validates :k, :presence => true + def self.match(address, domain = nil) if domain Acl.where("address >>= ? OR domain = ?", address, domain) diff --git a/test/factories/acls.rb b/test/factories/acls.rb new file mode 100644 index 000000000..3f91df3ab --- /dev/null +++ b/test/factories/acls.rb @@ -0,0 +1,5 @@ +FactoryGirl.define do + factory :acl do + sequence(:k) { |n| "Key #{n}" } + end +end diff --git a/test/fixtures/acls.yml b/test/fixtures/acls.yml deleted file mode 100644 index 399e08808..000000000 --- a/test/fixtures/acls.yml +++ /dev/null @@ -1,13 +0,0 @@ -# Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html - -one: - address: 1 - netmask: 1 - k: MyText - v: MyText - -two: - address: 1 - netmask: 1 - k: MyText - v: MyText diff --git a/test/models/acl_test.rb b/test/models/acl_test.rb index 4022b8adb..189f92677 100644 --- a/test/models/acl_test.rb +++ b/test/models/acl_test.rb @@ -1,8 +1,22 @@ 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 !acl.valid? + end + + def test_no_account_creation_by_subnet + assert !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") + create(:acl, :domain => "example.com", :k => "no_account_creation") + assert Acl.no_account_creation("192.168.1.1", "example.com") end end