Welcome to mirror list, hosted at ThFree Co, Russian Federation.

APITest.php « Integration « tests « Login « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9c09ccfa92c1be4aa5b8efe6fb32efa9e54804af (plain)
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
<?php
/**
 * Piwik - free/libre analytics platform
 *
 * @link https://matomo.org
 * @license http://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()
    {
        parent::setUp();

        $this->api = API::getInstance();
    }

    /**
     * @expectedException \Exception
     * @expectedExceptionMessage checkUserHasSuperUserAccess
     */
    public function test_unblockBruteForceIPs_requiresSuperUser()
    {
        FakeAccess::clearAccess(false, array(1,2,3));
        $this->api->unblockBruteForceIPs();
    }

    public function test_unblockBruteForceIPs_doesNotFailWhenNothingToRemove()
    {
        $this->api->unblockBruteForceIPs();
        $this->assertTrue(true);
    }

    public function test_unblockBruteForceIPs_removesBlockedIps()
    {
        $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()
        );
    }
}