]> git.mxchange.org Git - friendica.git/blobdiff - tests/src/Core/SystemTest.php
Adapt test for mockery assertion
[friendica.git] / tests / src / Core / SystemTest.php
index 189e880107d00102e10b97565195c5ff2296f5b4..2f01df3446ae4b598b75f59add6b63b9b68eab0c 100644 (file)
@@ -2,24 +2,54 @@
 
 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 assertGuid($guid, $length)
+       private function useBaseUrl()
        {
-               $this->assertRegExp("/^[a-z0-9]{" . $length . "}?$/", $guid);
+               $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);
        }
 
        function testGuidWithoutParameter()
        {
+               $this->useBaseUrl();
                $guid = System::createGUID();
                $this->assertGuid($guid, 16);
        }
 
-       function testGuidWithSize() {
-               $guid = System::createGUID(20);
-               $this->assertGuid($guid, 20);
+       function testGuidWithSize32()
+       {
+               $this->useBaseUrl();
+               $guid = System::createGUID(32);
+               $this->assertGuid($guid, 32);
+       }
+
+       function testGuidWithSize64()
+       {
+               $this->useBaseUrl();
+               $guid = System::createGUID(64);
+               $this->assertGuid($guid, 64);
+       }
+
+       function testGuidWithPrefix()
+       {
+               $guid = System::createGUID(23, 'test');
+               $this->assertGuid($guid, 23, 'test');
        }
-}
\ No newline at end of file
+}