2018-07-09 15:38:16 -04:00
|
|
|
<?php
|
2020-02-09 09:45:36 -05:00
|
|
|
/**
|
|
|
|
* @copyright Copyright (C) 2020, Friendica
|
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
2018-07-09 15:38:16 -04:00
|
|
|
|
|
|
|
namespace Friendica\Test\src\Core;
|
|
|
|
|
2019-12-21 15:15:16 -05:00
|
|
|
use Dice\Dice;
|
|
|
|
use Friendica\App\BaseURL;
|
2018-07-09 15:38:16 -04:00
|
|
|
use Friendica\Core\System;
|
2019-12-21 15:15:16 -05:00
|
|
|
use Friendica\DI;
|
2018-07-09 15:38:16 -04:00
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
|
|
|
|
class SystemTest extends TestCase
|
|
|
|
{
|
2019-12-21 18:22:43 -05:00
|
|
|
private function useBaseUrl()
|
2019-12-21 15:15:16 -05:00
|
|
|
{
|
|
|
|
$baseUrl = \Mockery::mock(BaseURL::class);
|
|
|
|
$baseUrl->shouldReceive('getHostname')->andReturn('friendica.local')->once();
|
|
|
|
$dice = \Mockery::mock(Dice::class);
|
2020-01-18 07:48:29 -05:00
|
|
|
$dice->shouldReceive('create')->with(BaseURL::class)->andReturn($baseUrl);
|
2019-12-21 15:15:16 -05:00
|
|
|
|
|
|
|
DI::init($dice);
|
|
|
|
}
|
|
|
|
|
2018-07-09 16:15:11 -04:00
|
|
|
private function assertGuid($guid, $length, $prefix = '')
|
2018-07-09 15:38:16 -04:00
|
|
|
{
|
2018-07-09 16:15:11 -04:00
|
|
|
$length -= strlen($prefix);
|
2020-10-17 08:19:57 -04:00
|
|
|
self::assertRegExp("/^" . $prefix . "[a-z0-9]{" . $length . "}?$/", $guid);
|
2018-07-09 15:38:16 -04:00
|
|
|
}
|
|
|
|
|
2020-10-18 14:31:57 -04:00
|
|
|
public function testGuidWithoutParameter()
|
2018-07-09 15:38:16 -04:00
|
|
|
{
|
2019-12-21 18:22:43 -05:00
|
|
|
$this->useBaseUrl();
|
2018-07-09 15:38:16 -04:00
|
|
|
$guid = System::createGUID();
|
2020-10-17 08:19:57 -04:00
|
|
|
self::assertGuid($guid, 16);
|
2018-07-09 15:38:16 -04:00
|
|
|
}
|
|
|
|
|
2020-10-18 14:31:57 -04:00
|
|
|
public function testGuidWithSize32()
|
2019-12-21 18:22:43 -05:00
|
|
|
{
|
|
|
|
$this->useBaseUrl();
|
2018-07-09 15:40:38 -04:00
|
|
|
$guid = System::createGUID(32);
|
2020-10-17 08:19:57 -04:00
|
|
|
self::assertGuid($guid, 32);
|
2018-07-09 15:40:38 -04:00
|
|
|
}
|
|
|
|
|
2020-10-18 14:31:57 -04:00
|
|
|
public function testGuidWithSize64()
|
2019-12-21 18:22:43 -05:00
|
|
|
{
|
|
|
|
$this->useBaseUrl();
|
2018-07-09 15:40:38 -04:00
|
|
|
$guid = System::createGUID(64);
|
2020-10-17 08:19:57 -04:00
|
|
|
self::assertGuid($guid, 64);
|
2018-07-09 15:38:16 -04:00
|
|
|
}
|
2018-07-09 16:15:11 -04:00
|
|
|
|
2020-10-18 14:31:57 -04:00
|
|
|
public function testGuidWithPrefix()
|
2019-12-21 18:22:43 -05:00
|
|
|
{
|
2018-07-09 16:15:11 -04:00
|
|
|
$guid = System::createGUID(23, 'test');
|
2020-10-17 08:19:57 -04:00
|
|
|
self::assertGuid($guid, 23, 'test');
|
2018-07-09 16:15:11 -04:00
|
|
|
}
|
2018-10-23 06:17:41 -04:00
|
|
|
}
|