2018-07-09 21:38:16 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Friendica\Test\src\Core;
|
|
|
|
|
2019-12-21 21:15:16 +01:00
|
|
|
use Dice\Dice;
|
|
|
|
use Friendica\App\BaseURL;
|
2018-07-09 21:38:16 +02:00
|
|
|
use Friendica\Core\System;
|
2019-12-21 21:15:16 +01:00
|
|
|
use Friendica\DI;
|
2018-07-09 21:38:16 +02:00
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
|
|
|
|
class SystemTest extends TestCase
|
|
|
|
{
|
2019-12-22 00:22:43 +01:00
|
|
|
private function useBaseUrl()
|
2019-12-21 21:15:16 +01:00
|
|
|
{
|
|
|
|
$baseUrl = \Mockery::mock(BaseURL::class);
|
|
|
|
$baseUrl->shouldReceive('getHostname')->andReturn('friendica.local')->once();
|
|
|
|
$dice = \Mockery::mock(Dice::class);
|
2020-01-18 13:48:29 +01:00
|
|
|
$dice->shouldReceive('create')->with(BaseURL::class)->andReturn($baseUrl);
|
2019-12-21 21:15:16 +01:00
|
|
|
|
|
|
|
DI::init($dice);
|
|
|
|
}
|
|
|
|
|
2018-07-09 22:15:11 +02:00
|
|
|
private function assertGuid($guid, $length, $prefix = '')
|
2018-07-09 21:38:16 +02:00
|
|
|
{
|
2018-07-09 22:15:11 +02:00
|
|
|
$length -= strlen($prefix);
|
|
|
|
$this->assertRegExp("/^" . $prefix . "[a-z0-9]{" . $length . "}?$/", $guid);
|
2018-07-09 21:38:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function testGuidWithoutParameter()
|
|
|
|
{
|
2019-12-22 00:22:43 +01:00
|
|
|
$this->useBaseUrl();
|
2018-07-09 21:38:16 +02:00
|
|
|
$guid = System::createGUID();
|
|
|
|
$this->assertGuid($guid, 16);
|
|
|
|
}
|
|
|
|
|
2019-12-22 00:22:43 +01:00
|
|
|
function testGuidWithSize32()
|
|
|
|
{
|
|
|
|
$this->useBaseUrl();
|
2018-07-09 21:40:38 +02:00
|
|
|
$guid = System::createGUID(32);
|
|
|
|
$this->assertGuid($guid, 32);
|
|
|
|
}
|
|
|
|
|
2019-12-22 00:22:43 +01:00
|
|
|
function testGuidWithSize64()
|
|
|
|
{
|
|
|
|
$this->useBaseUrl();
|
2018-07-09 21:40:38 +02:00
|
|
|
$guid = System::createGUID(64);
|
|
|
|
$this->assertGuid($guid, 64);
|
2018-07-09 21:38:16 +02:00
|
|
|
}
|
2018-07-09 22:15:11 +02:00
|
|
|
|
2019-12-22 00:22:43 +01:00
|
|
|
function testGuidWithPrefix()
|
|
|
|
{
|
2018-07-09 22:15:11 +02:00
|
|
|
$guid = System::createGUID(23, 'test');
|
|
|
|
$this->assertGuid($guid, 23, 'test');
|
|
|
|
}
|
2018-10-23 12:17:41 +02:00
|
|
|
}
|