]> git.mxchange.org Git - friendica.git/blobdiff - tests/src/Core/Lock/DatabaseLockDriverTest.php
Merge pull request #11195 from annando/issue-10966
[friendica.git] / tests / src / Core / Lock / DatabaseLockDriverTest.php
index f1c8376af155056705d98c5a8b3fc74d364d02c6..bd4cb9cc9bcece272ca0ecfe894831d916b84f7b 100644 (file)
@@ -1,14 +1,34 @@
 <?php
+/**
+ * @copyright Copyright (C) 2010-2022, the Friendica project
+ *
+ * @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/>.
+ *
+ */
 
 namespace Friendica\Test\src\Core\Lock;
 
-use Friendica\Core\Lock\DatabaseLockDriver;
-use Friendica\Factory\ConfigFactory;
+use Friendica\Core\Lock\Type\DatabaseLock;
+use Friendica\Core\Config\Factory\Config;
+use Friendica\DI;
 use Friendica\Test\DatabaseTestTrait;
 use Friendica\Test\Util\Database\StaticDatabase;
 use Friendica\Test\Util\VFSTrait;
-use Friendica\Util\ConfigFileLoader;
 use Friendica\Util\Profiler;
+use Mockery;
 use Psr\Log\NullLogger;
 
 class DatabaseLockDriverTest extends LockTest
@@ -18,26 +38,24 @@ class DatabaseLockDriverTest extends LockTest
 
        protected $pid = 123;
 
-       protected function setUp()
+       protected function setUp(): void
        {
                $this->setUpVfsDir();
 
+               $this->setUpDb();
+
                parent::setUp();
        }
 
        protected function getInstance()
        {
-               $logger   = new NullLogger();
-               $profiler = \Mockery::mock(Profiler::class);
-               $profiler->shouldReceive('saveTimestamp')->withAnyArgs()->andReturn(true);
-
-               // load real config to avoid mocking every config-entry which is related to the Database class
-               $configFactory = new ConfigFactory();
-               $loader        = new ConfigFileLoader($this->root->url());
-               $configCache   = $configFactory->createCache($loader);
+               return new DatabaseLock(DI::dba(), $this->pid);
+       }
 
-               $dba = new StaticDatabase($configCache, $profiler, $logger);
+       protected function tearDown(): void
+       {
+               $this->tearDownDb();
 
-               return new DatabaseLockDriver($dba, $this->pid);
+               parent::tearDown();
        }
 }