]> git.mxchange.org Git - friendica.git/blob - tests/src/Security/TwoFactor/Model/TrustedBrowserTest.php
Add more special chars at tests
[friendica.git] / tests / src / Security / TwoFactor / Model / TrustedBrowserTest.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2023, the Friendica project
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 namespace Friendica\Test\src\Security\TwoFactor\Model;
23
24 use Friendica\Security\TwoFactor\Model\TrustedBrowser;
25 use Friendica\Test\MockedTest;
26 use Friendica\Util\DateTimeFormat;
27 use Friendica\Util\Strings;
28
29 class TrustedBrowserTest extends MockedTest
30 {
31         public function test__construct()
32         {
33                 $hash = Strings::getRandomHex();
34
35                 $trustedBrowser = new TrustedBrowser(
36                         $hash,
37                         42,
38                         'PHPUnit',
39                         true,
40                         DateTimeFormat::utcNow()
41                 );
42
43                 $this->assertEquals($hash, $trustedBrowser->cookie_hash);
44                 $this->assertEquals(42, $trustedBrowser->uid);
45                 $this->assertEquals('PHPUnit', $trustedBrowser->user_agent);
46                 $this->assertTrue($trustedBrowser->trusted);
47                 $this->assertNotEmpty($trustedBrowser->created);
48         }
49
50         public function testRecordUse()
51         {
52                 $hash = Strings::getRandomHex();
53                 $past = DateTimeFormat::utc('now - 5 minutes');
54
55                 $trustedBrowser = new TrustedBrowser(
56                         $hash,
57                         42,
58                         'PHPUnit',
59                         true,
60                         $past,
61                         $past
62                 );
63
64                 $trustedBrowser->recordUse();
65
66                 $this->assertEquals($past, $trustedBrowser->created);
67                 $this->assertGreaterThan($past, $trustedBrowser->last_used);
68         }
69 }