62 lines
1.5 KiB
PHP
62 lines
1.5 KiB
PHP
<?php
|
|
|
|
namespace Friendica\Test\src\Security\TwoFactor\Factory;
|
|
|
|
use Friendica\Security\TwoFactor\Factory\TrustedBrowser;
|
|
use Friendica\Util\DateTimeFormat;
|
|
use Friendica\Util\Logger\VoidLogger;
|
|
use Friendica\Util\Strings;
|
|
|
|
class TrustedBrowserTest extends \PHPUnit_Framework_TestCase
|
|
{
|
|
public function testCreateFromTableRowSuccess()
|
|
{
|
|
$factory = new TrustedBrowser(new VoidLogger());
|
|
|
|
$row = [
|
|
'cookie_hash' => Strings::getRandomHex(),
|
|
'uid' => 42,
|
|
'user_agent' => 'PHPUnit',
|
|
'created' => DateTimeFormat::utcNow(),
|
|
'last_used' => null,
|
|
];
|
|
|
|
$trustedBrowser = $factory->createFromTableRow($row);
|
|
|
|
$this->assertEquals($row, $trustedBrowser->toArray());
|
|
}
|
|
|
|
public function testCreateFromTableRowMissingData()
|
|
{
|
|
$this->expectException(\TypeError::class);
|
|
|
|
$factory = new TrustedBrowser(new VoidLogger());
|
|
|
|
$row = [
|
|
'cookie_hash' => null,
|
|
'uid' => null,
|
|
'user_agent' => null,
|
|
'created' => null,
|
|
'last_used' => null,
|
|
];
|
|
|
|
$trustedBrowser = $factory->createFromTableRow($row);
|
|
|
|
$this->assertEquals($row, $trustedBrowser->toArray());
|
|
}
|
|
|
|
public function testCreateForUserWithUserAgent()
|
|
{
|
|
$factory = new TrustedBrowser(new VoidLogger());
|
|
|
|
$uid = 42;
|
|
$userAgent = 'PHPUnit';
|
|
|
|
$trustedBrowser = $factory->createForUserWithUserAgent($uid, $userAgent);
|
|
|
|
$this->assertNotEmpty($trustedBrowser->cookie_hash);
|
|
$this->assertEquals($uid, $trustedBrowser->uid);
|
|
$this->assertEquals($userAgent, $trustedBrowser->user_agent);
|
|
$this->assertNotEmpty($trustedBrowser->created);
|
|
}
|
|
}
|