connection = \OC::$server->getDatabaseConnection(); return new \OC\Lock\DBLockingProvider($this->connection, $this->timeFactory, 3600, false); } public function testDoubleShared(): void { $this->instance->acquireLock('foo', ILockingProvider::LOCK_SHARED); $this->instance->acquireLock('foo', ILockingProvider::LOCK_SHARED); $this->assertEquals(2, $this->getLockValue('foo')); $this->instance->releaseLock('foo', ILockingProvider::LOCK_SHARED); $this->assertEquals(1, $this->getLockValue('foo')); $this->instance->releaseLock('foo', ILockingProvider::LOCK_SHARED); $this->assertEquals(0, $this->getLockValue('foo')); } }