friendica/tests/src/Core/SystemTest.php

75 lines
2.0 KiB
PHP
Raw Normal View History

2018-07-09 21:38:16 +02:00
<?php
2020-02-09 15:45:36 +01:00
/**
2021-03-29 08:40:20 +02:00
* @copyright Copyright (C) 2010-2021, 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;
use Dice\Dice;
use Friendica\App\BaseURL;
2018-07-09 21:38:16 +02:00
use Friendica\Core\System;
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()
{
$baseUrl = \Mockery::mock(BaseURL::class);
$baseUrl->shouldReceive('getHostname')->andReturn('friendica.local')->once();
$dice = \Mockery::mock(Dice::class);
$dice->shouldReceive('create')->with(BaseURL::class)->andReturn($baseUrl);
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);
self::assertRegExp("/^" . $prefix . "[a-z0-9]{" . $length . "}?$/", $guid);
2018-07-09 21:38:16 +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();
self::assertGuid($guid, 16);
2018-07-09 21:38:16 +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);
self::assertGuid($guid, 32);
2018-07-09 21:40:38 +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);
self::assertGuid($guid, 64);
2018-07-09 21:38:16 +02:00
}
2018-07-09 22:15:11 +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');
self::assertGuid($guid, 23, 'test');
2018-07-09 22:15:11 +02:00
}
}