X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=tests%2Fsrc%2FCore%2FSystemTest.php;h=3f06ab6d23d5ec778ac557bec2eb276c914edf9a;hb=cb647b5b6c07b5db9a402fbb1852b627b1268a51;hp=a385d1b35284feee92da2f55dd2b38d5ef05a54d;hpb=6759e0c193b7ecc1d3e192a057ade4a50d65ea88;p=friendica.git diff --git a/tests/src/Core/SystemTest.php b/tests/src/Core/SystemTest.php index a385d1b352..3f06ab6d23 100644 --- a/tests/src/Core/SystemTest.php +++ b/tests/src/Core/SystemTest.php @@ -1,12 +1,44 @@ . + * + */ 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); @@ -15,21 +47,27 @@ class SystemTest extends TestCase function testGuidWithoutParameter() { + $this->useBaseUrl(); $guid = System::createGUID(); $this->assertGuid($guid, 16); } - function testGuidWithSize32() { + function testGuidWithSize32() + { + $this->useBaseUrl(); $guid = System::createGUID(32); $this->assertGuid($guid, 32); } - function testGuidWithSize64() { + function testGuidWithSize64() + { + $this->useBaseUrl(); $guid = System::createGUID(64); $this->assertGuid($guid, 64); } - function testGuidWithPrefix() { + function testGuidWithPrefix() + { $guid = System::createGUID(23, 'test'); $this->assertGuid($guid, 23, 'test'); }