2018-07-09 21:38:16 +02:00
|
|
|
<?php
|
2020-02-09 15:45:36 +01:00
|
|
|
/**
|
2023-01-01 15:36:24 +01:00
|
|
|
* @copyright Copyright (C) 2010-2023, the Friendica project
|
2020-02-09 15:45:36 +01:00
|
|
|
*
|
|
|
|
* @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 21:38:16 +02:00
|
|
|
|
|
|
|
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);
|
2023-02-18 20:49:51 +01:00
|
|
|
$baseUrl->shouldReceive('getHost')->andReturn('friendica.local')->once();
|
2019-12-21 21:15:16 +01:00
|
|
|
$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
|
|
|
|
2023-02-05 00:15:01 +01:00
|
|
|
DI::init($dice, true);
|
2019-12-21 21:15:16 +01:00
|
|
|
}
|
|
|
|
|
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);
|
2021-12-12 20:19:52 +01:00
|
|
|
self::assertMatchesRegularExpression("/^" . $prefix . "[a-z0-9]{" . $length . "}?$/", $guid);
|
2018-07-09 21:38:16 +02:00
|
|
|
}
|
|
|
|
|
2020-10-18 20:31:57 +02:00
|
|
|
public function testGuidWithoutParameter()
|
2018-07-09 21:38:16 +02:00
|
|
|
{
|
2019-12-22 00:22:43 +01:00
|
|
|
$this->useBaseUrl();
|
2018-07-09 21:38:16 +02:00
|
|
|
$guid = System::createGUID();
|
2020-10-17 14:19:57 +02:00
|
|
|
self::assertGuid($guid, 16);
|
2018-07-09 21:38:16 +02:00
|
|
|
}
|
|
|
|
|
2020-10-18 20:31:57 +02:00
|
|
|
public function testGuidWithSize32()
|
2019-12-22 00:22:43 +01:00
|
|
|
{
|
|
|
|
$this->useBaseUrl();
|
2018-07-09 21:40:38 +02:00
|
|
|
$guid = System::createGUID(32);
|
2020-10-17 14:19:57 +02:00
|
|
|
self::assertGuid($guid, 32);
|
2018-07-09 21:40:38 +02:00
|
|
|
}
|
|
|
|
|
2020-10-18 20:31:57 +02:00
|
|
|
public function testGuidWithSize64()
|
2019-12-22 00:22:43 +01:00
|
|
|
{
|
|
|
|
$this->useBaseUrl();
|
2018-07-09 21:40:38 +02:00
|
|
|
$guid = System::createGUID(64);
|
2020-10-17 14:19:57 +02:00
|
|
|
self::assertGuid($guid, 64);
|
2018-07-09 21:38:16 +02:00
|
|
|
}
|
2018-07-09 22:15:11 +02:00
|
|
|
|
2020-10-18 20:31:57 +02:00
|
|
|
public function testGuidWithPrefix()
|
2019-12-22 00:22:43 +01:00
|
|
|
{
|
2018-07-09 22:15:11 +02:00
|
|
|
$guid = System::createGUID(23, 'test');
|
2020-10-17 14:19:57 +02:00
|
|
|
self::assertGuid($guid, 23, 'test');
|
2018-07-09 22:15:11 +02:00
|
|
|
}
|
2018-10-23 12:17:41 +02:00
|
|
|
}
|