]> git.mxchange.org Git - friendica.git/blobdiff - tests/src/Core/SystemTest.php
Improved logging
[friendica.git] / tests / src / Core / SystemTest.php
index 3f06ab6d23d5ec778ac557bec2eb276c914edf9a..c47539c79f18d574494e47546581c4c4bea6cf81 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2020, Friendica
+ * @copyright Copyright (C) 2010-2023, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -32,43 +32,43 @@ class SystemTest extends TestCase
        private function useBaseUrl()
        {
                $baseUrl = \Mockery::mock(BaseURL::class);
-               $baseUrl->shouldReceive('getHostname')->andReturn('friendica.local')->once();
+               $baseUrl->shouldReceive('getHost')->andReturn('friendica.local')->once();
                $dice = \Mockery::mock(Dice::class);
                $dice->shouldReceive('create')->with(BaseURL::class)->andReturn($baseUrl);
 
-               DI::init($dice);
+               DI::init($dice, true);
        }
 
        private function assertGuid($guid, $length, $prefix = '')
        {
                $length -= strlen($prefix);
-               $this->assertRegExp("/^" . $prefix . "[a-z0-9]{" . $length . "}?$/", $guid);
+               self::assertMatchesRegularExpression("/^" . $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');
        }
 }