mirror of
https://github.com/friendica/friendica
synced 2025-03-26 18:41:25 +00:00
164 lines
4.4 KiB
PHP
164 lines
4.4 KiB
PHP
<?php
|
|
/**
|
|
* @copyright Copyright (C) 2020, Friendica
|
|
*
|
|
* @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\PConfig;
|
|
|
|
use Friendica\Core\PConfig\JitPConfig;
|
|
|
|
class JitPConfigTest extends PConfigTest
|
|
{
|
|
public function getInstance()
|
|
{
|
|
return new JitPConfig($this->configCache, $this->configModel);
|
|
}
|
|
|
|
/**
|
|
* @dataProvider dataConfigLoad
|
|
*/
|
|
public function testLoad(int $uid, array $data, array $possibleCats, array $load)
|
|
{
|
|
$this->configModel->shouldReceive('isConnected')
|
|
->andReturn(true)
|
|
->times(count($load));
|
|
|
|
foreach ($load as $loadCat) {
|
|
$this->configModel->shouldReceive('load')
|
|
->with($uid, $loadCat)
|
|
->andReturn([$loadCat => $data[$loadCat]])
|
|
->once();
|
|
}
|
|
|
|
parent::testLoad($uid, $data, $possibleCats, $load);
|
|
}
|
|
|
|
/**
|
|
* @dataProvider dataDoubleLoad
|
|
*/
|
|
public function testCacheLoadDouble(int $uid, array $data1, array $data2, array $expect)
|
|
{
|
|
$this->configModel->shouldReceive('isConnected')
|
|
->andReturn(true)
|
|
->times(count($data1) + count($data2));
|
|
|
|
foreach ($data1 as $cat => $data) {
|
|
$this->configModel->shouldReceive('load')
|
|
->with($uid, $cat)
|
|
->andReturn([$cat => $data])
|
|
->once();
|
|
}
|
|
|
|
|
|
foreach ($data2 as $cat => $data) {
|
|
$this->configModel->shouldReceive('load')
|
|
->with($uid, $cat)
|
|
->andReturn([$cat => $data])
|
|
->once();
|
|
}
|
|
|
|
parent::testCacheLoadDouble($uid, $data1, $data2, $expect);
|
|
|
|
// Assert the expected categories
|
|
foreach ($data2 as $cat => $data) {
|
|
self::assertConfig($uid, $cat, $expect[$cat]);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @dataProvider dataTests
|
|
*/
|
|
public function testSetGetWithoutDB(int $uid, $data)
|
|
{
|
|
$this->configModel->shouldReceive('isConnected')
|
|
->andReturn(false)
|
|
->times(2);
|
|
|
|
parent::testSetGetWithoutDB($uid, $data);
|
|
}
|
|
|
|
/**
|
|
* @dataProvider dataTests
|
|
*/
|
|
public function testSetGetWithDB(int $uid, $data)
|
|
{
|
|
$this->configModel->shouldReceive('isConnected')
|
|
->andReturn(true)
|
|
->times(2);
|
|
|
|
parent::testSetGetWithDB($uid, $data);
|
|
}
|
|
|
|
/**
|
|
* @dataProvider dataTests
|
|
*/
|
|
public function testGetWithRefresh(int $uid, $data)
|
|
{
|
|
$this->configModel->shouldReceive('isConnected')
|
|
->andReturn(true)
|
|
->times(3);
|
|
|
|
// mocking one get without result
|
|
$this->configModel->shouldReceive('get')
|
|
->with($uid, 'test', 'it')
|
|
->andReturn(null)
|
|
->once();
|
|
|
|
// mocking the data get
|
|
$this->configModel->shouldReceive('get')
|
|
->with($uid, 'test', 'it')
|
|
->andReturn($data)
|
|
->once();
|
|
|
|
// mocking second get
|
|
$this->configModel->shouldReceive('get')
|
|
->with($uid, 'test', 'not')
|
|
->andReturn(null)
|
|
->once();
|
|
|
|
parent::testGetWithRefresh($uid, $data);
|
|
}
|
|
|
|
/**
|
|
* @dataProvider dataTests
|
|
*/
|
|
public function testDeleteWithoutDB(int $uid, $data)
|
|
{
|
|
$this->configModel->shouldReceive('isConnected')
|
|
->andReturn(false)
|
|
->times(3);
|
|
|
|
parent::testDeleteWithoutDB($uid, $data);
|
|
}
|
|
|
|
public function testDeleteWithDB()
|
|
{
|
|
$this->configModel->shouldReceive('isConnected')
|
|
->andReturn(true)
|
|
->times(5);
|
|
|
|
// mocking one get without result
|
|
$this->configModel->shouldReceive('get')
|
|
->with(42, 'test', 'it')
|
|
->andReturn(null)
|
|
->once();
|
|
|
|
parent::testDeleteWithDB();
|
|
}
|
|
}
|