1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
<?php
/**
* Matomo - free/libre analytics platform
*
* @link https://matomo.org
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*/
namespace Piwik\Plugins\Login\tests\Integration;
use Piwik\Container\StaticContainer;
use Piwik\Plugins\Login\API;
use Piwik\Tests\Framework\Mock\FakeAccess;
use Piwik\Tests\Framework\TestCase\IntegrationTestCase;
/**
* @group API
* @group APITest
*/
class APITest extends IntegrationTestCase
{
/**
* @var API
*/
private $api;
public function setUp(): void
{
parent::setUp();
$this->api = API::getInstance();
}
public function testUnblockBruteForceIPsRequiresSuperUser()
{
$this->expectException(\Exception::class);
$this->expectExceptionMessage('checkUserHasSuperUserAccess');
FakeAccess::clearAccess(false, array(1,2,3));
$this->api->unblockBruteForceIPs();
}
public function testUnblockBruteForceIPsDoesNotFailWhenNothingToRemove()
{
self::expectNotToPerformAssertions();
$this->api->unblockBruteForceIPs();
}
public function testUnblockBruteForceIPsRemovesBlockedIps()
{
$bruteForce = StaticContainer::get('Piwik\Plugins\Login\Security\BruteForceDetection');
$bruteForce->addFailedAttempt('127.2.3.4');
for ($i = 0; $i < 22; $i++) {
$bruteForce->addFailedAttempt('127.2.3.5');
}
$this->assertCount(23, $bruteForce->getAll());
$this->api->unblockBruteForceIPs();
$this->assertCount(1, $bruteForce->getAll());
}
public function provideContainerConfig()
{
return array(
'Piwik\Access' => new FakeAccess(),
);
}
}
|