X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=tests%2Fsrc%2FCore%2FSystemTest.php;h=f37d2a2937bf54c520d3fb458ee5a292fc1f5929;hb=6fb3fa5875af2905a0668cfe0af39724237a5a52;hp=a385d1b35284feee92da2f55dd2b38d5ef05a54d;hpb=4c4ed63dca13cc0382af9020e69980c63f988b47;p=friendica.git diff --git a/tests/src/Core/SystemTest.php b/tests/src/Core/SystemTest.php index a385d1b352..f37d2a2937 100644 --- a/tests/src/Core/SystemTest.php +++ b/tests/src/Core/SystemTest.php @@ -1,36 +1,74 @@ . + * + */ namespace Friendica\Test\src\Core; +use Dice\Dice; +use Friendica\App\BaseURL; use Friendica\Core\System; +use Friendica\DI; use PHPUnit\Framework\TestCase; class SystemTest extends TestCase { + 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); + } + private function assertGuid($guid, $length, $prefix = '') { $length -= strlen($prefix); - $this->assertRegExp("/^" . $prefix . "[a-z0-9]{" . $length . "}?$/", $guid); + self::assertRegExp("/^" . $prefix . "[a-z0-9]{" . $length . "}?$/", $guid); } - function testGuidWithoutParameter() + public function testGuidWithoutParameter() { + $this->useBaseUrl(); $guid = System::createGUID(); - $this->assertGuid($guid, 16); + self::assertGuid($guid, 16); } - function testGuidWithSize32() { + public function testGuidWithSize32() + { + $this->useBaseUrl(); $guid = System::createGUID(32); - $this->assertGuid($guid, 32); + self::assertGuid($guid, 32); } - function testGuidWithSize64() { + public function testGuidWithSize64() + { + $this->useBaseUrl(); $guid = System::createGUID(64); - $this->assertGuid($guid, 64); + self::assertGuid($guid, 64); } - function testGuidWithPrefix() { + public function testGuidWithPrefix() + { $guid = System::createGUID(23, 'test'); - $this->assertGuid($guid, 23, 'test'); + self::assertGuid($guid, 23, 'test'); } }