123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- # Copyright (C) 2013-2016 Alex Schroeder <alex@gnu.org>
- #
- # This program 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.
- #
- # This program 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
- # this program. If not, see <http://www.gnu.org/licenses/>.
- require './t/test.pl';
- package OddMuse;
- use Test::More;
- use Net::IP;
- add_module('ban-contributors.pl');
- # 0-255
- is(BanContributors::get_regexp_ip('185.244.214.0', '185.244.214.255'),
- '^185\.244\.214\.',
- '185.244.214.0 - 185.244.214.255');
- # 48.0-63.255
- is(BanContributors::get_regexp_ip('42.118.48.0', '42.118.63.255'),
- '^42\.118\.(4[8-9]|5[0-9]|6[0-3])\.',
- '42.118.48.0 - 42.118.63.255');
- # 192.0-223.255
- is(BanContributors::get_regexp_ip('118.71.192.0', '118.71.223.255'),
- '^118\.71\.(19[2-9]|2[0-1][0-9]|22[0-3])\.',
- '118.71.192.0 - 118.71.223.255');
- # 56.180-57.70
- is(BanContributors::get_regexp_ip('77.56.180.0', '77.57.70.255'),
- '^77\.(56\.(1[8-9][0-9]|2[0-4][0-9]|25[0-5])|57\.([0-9]|[1-6][0-9]|70)\.',
- '77.56.180.0 - 77.57.70.255');
- # 45.87.2.128 - 45.87.2.255
- is(BanContributors::get_regexp_ip('45.87.2.128', '45.87.2.255'),
- '^45\.87\.2\.(12[8-9]|1[3-9][0-9]|2[0-4][0-9]|25[0-5])',
- '45.87.2.128 - 45.87.2.255');
- # 191.101.0.0/16
- # verify that Net::IP works as intended
- my $ip = Net::IP->new('191.101.0.0/16');
- ok($ip, 'Net::IP parsed CIDR');
- is($ip->ip, '191.101.0.0', 'First IP in range');
- is($ip->last_ip, '191.101.255.255', 'Last IP in range');
- $localhost = '127.0.0.1';
- $ENV{'REMOTE_ADDR'} = $localhost;
- update_page('Test', 'insults');
- test_page_negative(get_page('action=admin id=Test'), 'Ban contributors');
- test_page(get_page('action=admin id=Test pwd=foo'), 'Ban contributors');
- test_page(get_page('action=ban id=Test pwd=foo'), $localhost, 'Ban!');
- test_page(get_page("action=ban id=Test regexp=$localhost pwd=foo"),
- 'Location: http://localhost/wiki.pl/BannedHosts');
- test_page(get_page('BannedHosts'), $localhost, 'Test');
- clear_pages();
- add_module('ban-contributors.pl');
- update_page('Test', 'no spam');
- ok(get_page('action=browse id=Test raw=2')
- =~ /(\d+) # Do not delete this line/,
- 'raw=2 returns timestamp');
- $to = $1;
- ok($to, 'timestamp stored');
- sleep(1);
- update_page('Test', "http://spam/amoxil/ http://spam/doxycycline/");
- test_page(get_page("action=rollback id=Test to=$to pwd=foo"),
- 'Rolling back changes', 'These URLs were rolled back',
- 'amoxil', 'doxycycline', 'Consider banning the IP number');
- test_page(get_page("action=ban id=Test content=amoxil pwd=foo"),
- 'Location: http://localhost/wiki.pl/BannedContent');
- test_page(get_page('BannedContent'), 'amoxil', 'Test');
- update_page('Test', "http://spam/amoxil/ http://spam/doxycycline/");
- $page = get_page("action=rollback id=Test to=$to pwd=foo");
- test_page($page, 'Rolling back changes', 'These URLs were rolled back',
- 'doxycycline');
- test_page_negative($page, 'amoxil');
- test_page(get_page("action=ban id=Test"),
- 'Ban Contributors to Test',
- quotemeta('127.0.0.1 () [127.0.0.0 - 127.255.255.255]'));
- SKIP: {
- skip "Net::Whois::Parser doesn't always return the same result", 4;
- $ENV{'REMOTE_ADDR'} = '46.101.109.194';
- update_page('Test', "this is phone number spam");
- test_page(get_page("action=ban id=Test"),
- 'Ban Contributors to Test',
- quotemeta('^46\.101\.([0-9]|[1-9][0-9]|1[0-1][0-9]|12[0-7])'));
- test_page(get_page('action=ban id=Test regexp="^46\.101\.([0-9]|[1-9][0-9]|1[0-1][0-9]|12[0-7])" range="[46.101.0.0 - 46.101.127.255]" recent_edit=on pwd=foo'),
- 'Location: http://localhost/wiki.pl/BannedHosts');
- test_page(get_page('BannedHosts'),
- quotemeta('^46\.101\.([0-9]|[1-9][0-9]|1[0-1][0-9]|12[0-7]) # '
- . CalcDay($Now)
- . ' [46.101.0.0 - 46.101.127.255] Test'));
- }
- done_testing();
|