2015-08-15 18:32:31 +02:00
|
|
|
<?php
|
2016-07-21 17:09:48 +02:00
|
|
|
|
2021-06-08 22:01:29 +02:00
|
|
|
use PrivateBin\Data\Filesystem;
|
|
|
|
use PrivateBin\Persistence\ServerSalt;
|
2016-08-09 11:54:42 +02:00
|
|
|
use PrivateBin\Persistence\TrafficLimiter;
|
2016-07-21 17:09:48 +02:00
|
|
|
|
2016-08-09 11:54:42 +02:00
|
|
|
class TrafficLimiterTest extends PHPUnit_Framework_TestCase
|
2015-08-15 18:32:31 +02:00
|
|
|
{
|
|
|
|
private $_path;
|
|
|
|
|
|
|
|
public function setUp()
|
|
|
|
{
|
|
|
|
/* Setup Routine */
|
|
|
|
$this->_path = sys_get_temp_dir() . DIRECTORY_SEPARATOR . 'trafficlimit';
|
2021-06-09 19:16:22 +02:00
|
|
|
$store = Filesystem::getInstance(array('dir' => $this->_path));
|
2021-06-08 22:01:29 +02:00
|
|
|
ServerSalt::setStore($store);
|
|
|
|
TrafficLimiter::setStore($store);
|
2015-08-15 18:32:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function tearDown()
|
|
|
|
{
|
|
|
|
/* Tear Down Routine */
|
2016-08-09 11:54:42 +02:00
|
|
|
Helper::rmDir($this->_path . DIRECTORY_SEPARATOR);
|
2015-08-15 18:32:31 +02:00
|
|
|
}
|
|
|
|
|
2021-06-08 22:01:29 +02:00
|
|
|
public function testHtaccess()
|
|
|
|
{
|
|
|
|
$htaccess = $this->_path . DIRECTORY_SEPARATOR . '.htaccess';
|
|
|
|
@unlink($htaccess);
|
|
|
|
$_SERVER['REMOTE_ADDR'] = 'foobar';
|
|
|
|
TrafficLimiter::canPass();
|
|
|
|
$this->assertFileExists($htaccess, 'htaccess recreated');
|
|
|
|
}
|
|
|
|
|
2015-08-15 18:32:31 +02:00
|
|
|
public function testTrafficGetsLimited()
|
|
|
|
{
|
2016-08-09 11:54:42 +02:00
|
|
|
TrafficLimiter::setLimit(4);
|
2015-09-26 17:57:46 +02:00
|
|
|
$_SERVER['REMOTE_ADDR'] = '127.0.0.1';
|
2016-08-09 11:54:42 +02:00
|
|
|
$this->assertTrue(TrafficLimiter::canPass(), 'first request may pass');
|
2016-07-06 09:01:10 +02:00
|
|
|
sleep(1);
|
2016-08-09 11:54:42 +02:00
|
|
|
$this->assertFalse(TrafficLimiter::canPass(), 'second request is to fast, may not pass');
|
2016-07-06 09:01:10 +02:00
|
|
|
sleep(4);
|
2016-08-09 11:54:42 +02:00
|
|
|
$this->assertTrue(TrafficLimiter::canPass(), 'third request waited long enough and may pass');
|
2015-09-26 17:57:46 +02:00
|
|
|
$_SERVER['REMOTE_ADDR'] = '2001:1620:2057:dead:beef::cafe:babe';
|
2016-08-09 11:54:42 +02:00
|
|
|
$this->assertTrue(TrafficLimiter::canPass(), 'fourth request has different ip and may pass');
|
2015-09-26 17:57:46 +02:00
|
|
|
$_SERVER['REMOTE_ADDR'] = '127.0.0.1';
|
2016-08-09 11:54:42 +02:00
|
|
|
$this->assertFalse(TrafficLimiter::canPass(), 'fifth request is to fast, may not pass');
|
2021-05-22 10:59:47 +02:00
|
|
|
|
|
|
|
// exempted IPs configuration
|
|
|
|
TrafficLimiter::setExemptedIp('1.2.3.4,10.10.10.0/24,2001:1620:2057::/48');
|
|
|
|
$this->assertFalse(TrafficLimiter::canPass(), 'still too fast and not exempted');
|
|
|
|
$_SERVER['REMOTE_ADDR'] = '10.10.10.10';
|
|
|
|
$this->assertTrue(TrafficLimiter::canPass(), 'IPv4 in exempted range');
|
|
|
|
$this->assertTrue(TrafficLimiter::canPass(), 'request is to fast, but IPv4 in exempted range');
|
|
|
|
$_SERVER['REMOTE_ADDR'] = '2001:1620:2057:dead:beef::cafe:babe';
|
|
|
|
$this->assertTrue(TrafficLimiter::canPass(), 'IPv6 in exempted range');
|
|
|
|
$this->assertTrue(TrafficLimiter::canPass(), 'request is to fast, but IPv6 in exempted range');
|
|
|
|
TrafficLimiter::setExemptedIp('127.*,foobar');
|
|
|
|
$this->assertFalse(TrafficLimiter::canPass(), 'request is to fast, invalid range');
|
|
|
|
$_SERVER['REMOTE_ADDR'] = 'foobar';
|
|
|
|
$this->assertTrue(TrafficLimiter::canPass(), 'non-IP address');
|
|
|
|
$this->assertTrue(TrafficLimiter::canPass(), 'request is to fast, but non-IP address matches exempted range');
|
2015-08-15 18:32:31 +02:00
|
|
|
}
|
|
|
|
}
|