File: ModelTest.php

package info (click to toggle)
matomo 5.8.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 95,068 kB
  • sloc: php: 289,425; xml: 127,249; javascript: 112,130; python: 202; sh: 178; makefile: 20; sql: 10
file content (142 lines) | stat: -rw-r--r-- 6,506 bytes parent folder | download
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<?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\Common;
use Piwik\Db;
use Piwik\Option;
use Piwik\Date;
use Piwik\Plugins\Login\Model;
use Piwik\Plugins\Login\Security\BruteForceDetection;
use Piwik\Tests\Framework\TestCase\IntegrationTestCase;

class ModelTest extends IntegrationTestCase
{
    /**
     * @var Model
     */
    private $testInstance;

    public function setUp(): void
    {
        parent::setUp();
        $this->testInstance = new Model();
    }

    public function testGetTotalLoginAttemptsInLastHourForLoginReturnsDistinctCountOfIpForTheRightLogin()
    {
        Date::$now = strtotime('2020-02-03 05:00:00');

        // brute_force_log
        $this->insertAttempt(['ip_address' => '10.20.30.40', 'attempted_at' => '2020-02-03 04:05:00', 'login' => 'theuser']);
        $this->insertAttempt(['ip_address' => '10.20.30.41', 'attempted_at' => '2020-02-03 04:25:00', 'login' => 'athirduser']);
        $this->insertAttempt(['ip_address' => '10.20.30.42', 'attempted_at' => '2020-02-03 02:36:00', 'login' => 'theuser']);
        $this->insertAttempt(['ip_address' => '10.20.30.43', 'attempted_at' => '2020-02-03 04:41:00', 'login' => 'anotheruser']);
        $this->insertAttempt(['ip_address' => '10.20.30.44', 'attempted_at' => '2020-02-03 04:09:00', 'login' => 'stillanotheruser']);
        $this->insertAttempt(['ip_address' => '10.20.30.45', 'attempted_at' => '2020-02-03 04:21:00', 'login' => 'theuser']);

        $count = $this->testInstance->getTotalLoginAttemptsInLastHourForLogin('theuser');
        $this->assertEquals(2, $count);
    }

    public function testGetTotalLoginAttemptsInlastHourForLoginReturnsZeroIfAllAttemptsAreBeforeLastHour()
    {
        Date::$now = strtotime('2020-02-03 05:00:00');

        // brute_force_log
        $this->insertAttempt(['ip_address' => '10.20.30.40', 'attempted_at' => '2020-02-03 02:05:00', 'login' => 'theuser']);
        $this->insertAttempt(['ip_address' => '10.20.30.41', 'attempted_at' => '2020-02-03 02:25:00', 'login' => 'athirduser']);
        $this->insertAttempt(['ip_address' => '10.20.30.42', 'attempted_at' => '2020-02-03 02:36:00', 'login' => 'theuser']);
        $this->insertAttempt(['ip_address' => '10.20.30.43', 'attempted_at' => '2020-02-03 02:41:00', 'login' => 'anotheruser']);
        $this->insertAttempt(['ip_address' => '10.20.30.44', 'attempted_at' => '2020-02-03 04:59:00', 'login' => 'stillanotheruser']);
        $this->insertAttempt(['ip_address' => '10.20.30.45', 'attempted_at' => '2020-02-03 02:21:00', 'login' => 'theuser']);

        $count = $this->testInstance->getTotalLoginAttemptsInLastHourForLogin('theuser');
        $this->assertEquals(0, $count);
    }

    public function testHasNotifiedUserAboutSuspiciousLoginsReturnsFalseIfJsonValueIsBroken()
    {
        $optionName = 'BruteForceDetection.suspiciousLoginCountNotified.theuser';
        Option::set($optionName, 'aslkdfjsadlkfj');

        $result = $this->testInstance->hasNotifiedUserAboutSuspiciousLogins('theuser');
        $this->assertFalse($result);
    }

    public function testHasNotifiedUserAboutSuspiciousLoginsReturnsFalseIfJsonValueIsNegative()
    {
        $optionName = 'BruteForceDetection.suspiciousLoginCountNotified.theuser';
        Option::set($optionName, '-5');

        $result = $this->testInstance->hasNotifiedUserAboutSuspiciousLogins('theuser');
        $this->assertFalse($result);
    }

    public function testHasNotifiedUserAboutSuspiciousLoginsReturnsFalseIfThereWasNoLastTimeSent()
    {
        $result = $this->testInstance->hasNotifiedUserAboutSuspiciousLogins('theuser');
        $this->assertFalse($result);
    }

    public function testHasNotifiedUserAboutSuspiciousLoginsReturnsFalseIfLastTimeSentIsBeforeTwoWeeks()
    {
        $optionName = 'BruteForceDetection.suspiciousLoginCountNotified.theuser';
        Option::set($optionName, \Piwik\Date::now()->subWeek(3)->getTimestamp());

        $result = $this->testInstance->hasNotifiedUserAboutSuspiciousLogins('theuser');
        $this->assertFalse($result);
    }

    public function testHasNotifiedUserAboutSuspiciousLoginsReturnsTrueIfLastTimeSentIsWithinTwoWeeks()
    {
        $optionName = 'BruteForceDetection.suspiciousLoginCountNotified.theuser';
        Option::set($optionName, \Piwik\Date::now()->subWeek(1)->getTimestamp());

        $result = $this->testInstance->hasNotifiedUserAboutSuspiciousLogins('theuser');
        $this->assertTrue($result);
    }

    public function testGetDistinctIpsAttemptingLoginsInLastHourReturnsCountOfDistinctIpsOfFailedLoginsForUserInLastHour()
    {
        Date::$now = strtotime('2020-02-03 05:00:00');

        // brute_force_log
        $this->insertAttempt(['ip_address' => '10.20.30.40', 'attempted_at' => '2020-02-03 04:05:00', 'login' => 'theuser']);
        $this->insertAttempt(['ip_address' => '10.20.30.41', 'attempted_at' => '2020-02-03 04:25:00', 'login' => 'theuser']);
        $this->insertAttempt(['ip_address' => '10.20.30.42', 'attempted_at' => '2020-02-03 02:36:00', 'login' => 'theuser']);
        $this->insertAttempt(['ip_address' => '10.20.30.43', 'attempted_at' => '2020-02-03 04:41:00', 'login' => 'anotheruser']);
        $this->insertAttempt(['ip_address' => '10.20.30.41', 'attempted_at' => '2020-02-03 04:09:00', 'login' => 'theuser']);
        $this->insertAttempt(['ip_address' => '10.20.30.45', 'attempted_at' => '2020-02-03 04:21:00', 'login' => 'theuser']);

        $count = $this->testInstance->getDistinctIpsAttemptingLoginsInLastHour('theuser');
        $this->assertEquals(3, $count);
    }

    public function testMarkSuspiciousLoginsNotifiedEmailSentSetsTheOptionValueToNow()
    {
        Date::$now = strtotime('2020-02-03 05:00:00');

        $this->testInstance->markSuspiciousLoginsNotifiedEmailSent('theuser');

        $optionName = 'BruteForceDetection.suspiciousLoginCountNotified.theuser';
        $this->assertEquals('2020-02-03 05:00:00', Date::factory(Option::get($optionName))->getDatetime());
    }

    private function insertAttempt($params)
    {
        $sql = "INSERT INTO " . Common::prefixTable(BruteForceDetection::TABLE_NAME) . " (ip_address, attempted_at, login) VALUES (?, ?, ?)";
        Db::query($sql, [
            $params['ip_address'],
            $params['attempted_at'],
            $params['login'],
        ]);
    }
}