From 1ba78c3f63c239dd083485801116d1143f354a06 Mon Sep 17 00:00:00 2001 From: Nicholas can Oudtshoorn Date: Fri, 12 Jan 2018 18:14:59 +0000 Subject: [PATCH] Bug 14407: Unit tests for in_ipset TEST PLAN --------- 1) apply all pathches 2) sudo koha-shell -c bash kohadev prove t/Auth.t -- should run. 3) run koha qa test tools Signed-off-by: Mark Tompsett --- t/Auth.t | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 t/Auth.t diff --git a/t/Auth.t b/t/Auth.t new file mode 100644 index 0000000000..606a454762 --- /dev/null +++ b/t/Auth.t @@ -0,0 +1,36 @@ +# This file is part of Koha. +# +# Copyright (C) 2017 Nicholas van Oudtshoorn +# +# Koha is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. +# +# Koha is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Koha; if not, see . + +use Modern::Perl; +use Test::More tests => 10; + +use C4::Auth qw / in_ipset /; +use warnings; + +$ENV{REMOTE_ADDR} = '192.168.1.30'; +my $ipset1 = "192.168.1.30"; + +ok(in_ipset("192.168.1.30"), 'simple single ip matching remote ip'); +ok(!in_ipset("192.168.1.31"), 'simple single ip not match remote ip'); +ok(in_ipset("192.168.1.1/24"), 'simple ip range/24 with remote ip in it'); +ok(!in_ipset("192.168.2.1/24"), 'simple ip range/24 with remote ip not in it'); +ok(in_ipset("192.168.2.1/16"), 'simple ip range/16 with remote ip in it'); +ok(!in_ipset("192.168.1.10-30"), 'invalidly represented IP range with remote ip in it'); +ok(in_ipset("192.168.1.10-192.168.1.30"), 'validly represented ip range with remote ip in it'); +ok(in_ipset("127.0.0.1 192.168.1.30 192.168.2.10-192.168.2.25"), 'multiple ips and ranges, including the remote ip'); +ok(!in_ipset("127.0.0.1 8.8.8.8 192.168.2.1/24 192.168.3.1/24 192.168.1.1-192.168.1.29"), "multiple ip and ip ranges, with the remote ip in none of them"); +ok(in_ipset(""), "blank list given, no preference set - implies everything goes through."); -- 2.11.0