public function get($cat, $key);
/**
- * Stores a config value ($value) in the category ($family) under the key ($key)
- * for the user_id $uid.
+ * Stores a config value ($value) in the category ($family) under the key ($key).
*
* Note: Please do not store booleans - convert to 0/1 integer values!
*
* @return bool
*/
public function isConnected();
+
+ /**
+ * Checks, if a config value ($value) in the category ($cat) is already loaded.
+ *
+ * @param string $cat The configuration category
+ * @param string $key The configuration key
+ *
+ * @return bool
+ */
+ public function isLoaded($cat, $key);
}
* @return bool
*/
public function isConnected();
+
+ /**
+ * Checks, if a config value ($value) in the category ($cat) is already loaded for the user_id $uid.
+ *
+ * @param string $uid The user_id
+ * @param string $cat The configuration category
+ * @param string $key The configuration key
+ *
+ * @return bool
+ */
+ public function isLoaded($uid, $cat, $key);
}
return $result;
}
+
+ /**
+ * {@inheritdoc}
+ */
+ public function isLoaded($cat, $key)
+ {
+ if (!$this->isConnected()) {
+ return false;
+ }
+
+ return (isset($this->in_db[$cat][$key])) && $this->in_db[$cat][$key];
+ }
}
}
} else if ($cat != 'config') {
// Negative caching
- $return[null] = "!<unset>!";
+ $return = "!<unset>!";
}
DBA::close($pconfigs);
return $result;
}
+
+ /**
+ * {@inheritdoc}
+ */
+ public function isLoaded($uid, $cat, $key)
+ {
+ if (!$this->isConnected()) {
+ return false;
+ }
+
+ return (isset($this->in_db[$uid][$cat][$key])) && $this->in_db[$uid][$cat][$key];
+ }
}
$configs = DBA::select('config', ['cat', 'v', 'k']);
while ($config = DBA::fetch($configs)) {
- $return[$config['k']] = $config['v'];
+ $return[$config['cat']][$config['k']] = $config['v'];
}
DBA::close($configs);
$this->config_loaded = true;
- return [$cat => $return];
+ return $return;
}
/**
return $result;
}
+
+ /**
+ * {@inheritdoc}
+ */
+ public function isLoaded($cat, $key)
+ {
+ if (!$this->isConnected()) {
+ return false;
+ }
+
+ return $this->config_loaded;
+ }
}
$pconfigs = DBA::select('pconfig', ['cat', 'v', 'k'], ['uid' => $uid]);
while ($pconfig = DBA::fetch($pconfigs)) {
- $return[$pconfig['k']] = $pconfig['v'];
+ $return[$pconfig['cat']][$pconfig['k']] = $pconfig['v'];
}
DBA::close($pconfigs);
$this->config_loaded = true;
- return [$cat => $return];
+ return $return;
}
/**
return $result;
}
+
+ /**
+ * {@inheritdoc}
+ */
+ public function isLoaded($uid, $cat, $key)
+ {
+ if (!$this->isConnected()) {
+ return false;
+ }
+
+ return $this->config_loaded;
+ }
}
*/
public function get($cat, $key, $default_value = null, $refresh = false)
{
- // Return the value of the cache if found and no refresh is forced
- if (!$refresh && $this->configCache->has($cat, $key)) {
- return $this->configCache->get($cat, $key);
+ // if the value isn't loaded or refresh is needed, load it to the cache
+ if ($this->configAdapter->isConnected() &&
+ (!$this->configAdapter->isLoaded($cat, $key) ||
+ $refresh)) {
+ $dbvalue = $this->configAdapter->get($cat, $key);
+
+ if ($dbvalue !== '!<unset>!') {
+ $this->configCache->set($cat, $key, $dbvalue);
+ }
}
- // if we don't find the value in the cache and the adapter isn't ready, return the default value
- if (!$this->configAdapter->isConnected()) {
- return $default_value;
- }
-
- // load DB value to cache
- $dbvalue = $this->configAdapter->get($cat, $key);
-
- if ($dbvalue !== '!<unset>!') {
- $this->configCache->set($cat, $key, $dbvalue);
- return $dbvalue;
+ // use the config cache for return
+ if ($this->configCache->has($cat, $key)) {
+ return $this->configCache->get($cat, $key);
} else {
return $default_value;
}
*/
public function get($uid, $cat, $key, $default_value = null, $refresh = false)
{
- // Return the value of the cache if found and no refresh is forced
- if (!$refresh && $this->configCache->hasP($uid, $cat, $key)) {
- return $this->configCache->getP($uid, $cat, $key);
+ // if the value isn't loaded or refresh is needed, load it to the cache
+ if ($this->configAdapter->isConnected() &&
+ (!$this->configAdapter->isLoaded($uid, $cat, $key) ||
+ $refresh)) {
+ $dbValue = $this->configAdapter->get($uid, $cat, $key);
+
+ if ($dbValue !== '!<unset>!') {
+ $this->configCache->setP($uid, $cat, $key, $dbValue);
+ }
}
- // if we don't find the value in the cache and the adapter isn't ready, return the default value
- if (!$this->configAdapter->isConnected()) {
- return $default_value;
- }
-
- // load DB value to cache
- $dbvalue = $this->configAdapter->get($uid, $cat, $key);
-
- if ($dbvalue !== '!<unset>!') {
- $this->configCache->setP($uid, $cat, $key, $dbvalue);
- return $dbvalue;
+ // use the config cache for return
+ if ($this->configCache->hasP($uid, $cat, $key)) {
+ return $this->configCache->getP($uid, $cat, $key);
} else {
return $default_value;
}
*
* @param LoggerInterface $logger The Logger instance of this Application
*/
- public static function setLogger($logger)
+ public static function init($logger)
{
self::$logger = $logger;
}
static::addStreamHandler($logger, $stream, $loglevel);
}
- Logger::setLogger($logger);
+ Logger::init($logger);
return $logger;
}
class ConfigurationTest extends MockedTest
{
+ public function dataTests()
+ {
+ return [
+ 'string' => ['data' => 'it'],
+ 'boolTrue' => ['data' => true],
+ 'boolFalse' => ['data' => false],
+ 'integer' => ['data' => 235],
+ 'decimal' => ['data' => 2.456],
+ 'array' => ['data' => ['1', 2, '3', true, false]],
+ 'boolIntTrue' => ['data' => 1],
+ 'boolIntFalse' => ['Data' => 0],
+ ];
+ }
+
/**
* Test the configuration initialization
*/
}
/**
- * Test if the configuration load() method
+ * Test the configuration load() method
*/
public function testCacheLoad()
{
$configCache = new ConfigCache();
$configAdapter = \Mockery::mock('Friendica\Core\Config\Adapter\IConfigAdapter');
- $configAdapter->shouldReceive('isConnected')->andReturn(true)->twice();
+ $configAdapter->shouldReceive('isConnected')->andReturn(true)->times(3);
// constructor loading
$configAdapter->shouldReceive('load')->andReturn([])->once();
// expected loading
$configAdapter->shouldReceive('load')->andReturn(['testing' => ['test' => 'it']])->once();
+ $configAdapter->shouldReceive('isLoaded')->with('testing', 'test')->andReturn(true)->once();
$configuration = new Configuration($configCache, $configAdapter);
$configuration->load('testing');
}
/**
- * Test if the configuration load() method with overwrite
+ * Test the configuration load() method with overwrite
*/
public function testCacheLoadDouble()
{
$configCache = new ConfigCache();
$configAdapter = \Mockery::mock('Friendica\Core\Config\Adapter\IConfigAdapter');
- $configAdapter->shouldReceive('isConnected')->andReturn(true)->times(3);
+ $configAdapter->shouldReceive('isConnected')->andReturn(true)->times(5);
// constructor loading
$configAdapter->shouldReceive('load')->andReturn([])->once();
// expected loading
$configAdapter->shouldReceive('load')->andReturn(['testing' => ['test' => 'it']])->once();
+ $configAdapter->shouldReceive('isLoaded')->with('testing', 'test')->andReturn(true)->twice();
// expected next loading
$configAdapter->shouldReceive('load')->andReturn(['testing' => ['test' => 'again']])->once();
}
/**
- * Test if the configuration get() and set() methods without adapter
+ * Test the configuration get() and set() methods without adapter
+ * @dataProvider dataTests
*/
- public function testSetGetWithoutDB()
+ public function testSetGetWithoutDB($data)
{
$configCache = new ConfigCache();
$configAdapter = \Mockery::mock('Friendica\Core\Config\Adapter\IConfigAdapter');
- $configAdapter->shouldReceive('isConnected')->andReturn(false)->twice();
+ $configAdapter->shouldReceive('isConnected')->andReturn(false)->times(3);
$configuration = new Configuration($configCache, $configAdapter);
- $this->assertTrue($configuration->set('test', 'it', 'now'));
+ $this->assertTrue($configuration->set('test', 'it', $data));
- $this->assertEquals('now', $configuration->get('test', 'it'));
- $this->assertEquals('now', $configuration->getCache()->get('test', 'it'));
+ $this->assertEquals($data, $configuration->get('test', 'it'));
+ $this->assertEquals($data, $configuration->getCache()->get('test', 'it'));
}
/**
- * Test if the configuration get() and set() methods with adapter
+ * Test the configuration get() and set() methods with adapter
+ * @dataProvider dataTests
*/
- public function testSetGetWithDB()
+ public function testSetGetWithDB($data)
{
$configCache = new ConfigCache();
$configAdapter = \Mockery::mock('Friendica\Core\Config\Adapter\IConfigAdapter');
- $configAdapter->shouldReceive('isConnected')->andReturn(true)->twice();
+ $configAdapter->shouldReceive('isConnected')->andReturn(true)->times(3);
// constructor loading
$configAdapter->shouldReceive('load')->andReturn([])->once();
- $configAdapter->shouldReceive('set')->with('test', 'it', 'now')->andReturn(true)->once();
+ $configAdapter->shouldReceive('isLoaded')->with('test', 'it')->andReturn(true)->once();
+ $configAdapter->shouldReceive('set')->with('test', 'it', $data)->andReturn(true)->once();
$configuration = new Configuration($configCache, $configAdapter);
- $this->assertTrue($configuration->set('test', 'it', 'now'));
+ $this->assertTrue($configuration->set('test', 'it', $data));
- $this->assertEquals('now', $configuration->get('test', 'it'));
- $this->assertEquals('now', $configuration->getCache()->get('test', 'it'));
+ $this->assertEquals($data, $configuration->get('test', 'it'));
+ $this->assertEquals($data, $configuration->getCache()->get('test', 'it'));
}
/**
/**
* Test the configuration get() method with refresh
+ * @dataProvider dataTests
*/
- public function testGetWithRefresh()
+ public function testGetWithRefresh($data)
{
$configCache = new ConfigCache(['test' => ['it' => 'now']]);
$configAdapter = \Mockery::mock('Friendica\Core\Config\Adapter\IConfigAdapter');
- $configAdapter->shouldReceive('isConnected')->andReturn(true)->times(3);
+ $configAdapter->shouldReceive('isConnected')->andReturn(true)->times(4);
// constructor loading
$configAdapter->shouldReceive('load')->andReturn([])->once();
- $configAdapter->shouldReceive('get')->with('test', 'it')->andReturn('again')->once();
+ $configAdapter->shouldReceive('isLoaded')->with('test', 'it')->andReturn(true)->twice();
+ $configAdapter->shouldReceive('get')->with('test', 'it')->andReturn($data)->once();
+ $configAdapter->shouldReceive('isLoaded')->with('test', 'not')->andReturn(false)->once();
$configAdapter->shouldReceive('get')->with('test', 'not')->andReturn('!<unset>!')->once();
$configuration = new Configuration($configCache, $configAdapter);
$this->assertEquals('now', $configuration->getCache()->get('test', 'it'));
// with refresh
- $this->assertEquals('again', $configuration->get('test', 'it', null, true));
- $this->assertEquals('again', $configuration->getCache()->get('test', 'it'));
+ $this->assertEquals($data, $configuration->get('test', 'it', null, true));
+ $this->assertEquals($data, $configuration->getCache()->get('test', 'it'));
// without refresh and wrong value and default
$this->assertEquals('default', $configuration->get('test', 'not', 'default'));
}
/**
- * Test the configuration delete() method without adapter
+ * Test the configuration get() method with different isLoaded settings
+ * @dataProvider dataTests
*/
- public function testDeleteWithoutDB()
+ public function testGetWithoutLoaded($data)
{
$configCache = new ConfigCache(['test' => ['it' => 'now']]);
$configAdapter = \Mockery::mock('Friendica\Core\Config\Adapter\IConfigAdapter');
- $configAdapter->shouldReceive('isConnected')->andReturn(false)->times(3);
+ $configAdapter->shouldReceive('isConnected')->andReturn(true)->times(4);
+ // constructor loading
+ $configAdapter->shouldReceive('load')->andReturn([])->once();
+
+ $configAdapter->shouldReceive('isLoaded')->with('test', 'it')->andReturn(false)->once();
+ $configAdapter->shouldReceive('get')->with('test', 'it')->andReturn('!<unset>!')->once();
+
+ $configAdapter->shouldReceive('isLoaded')->with('test', 'it')->andReturn(false)->once();
+ $configAdapter->shouldReceive('get')->with('test', 'it')->andReturn($data)->once();
+
+ $configAdapter->shouldReceive('isLoaded')->with('test', 'it')->andReturn(true)->once();
$configuration = new Configuration($configCache, $configAdapter);
+ // first run is not loaded and no data is found in the DB
$this->assertEquals('now', $configuration->get('test', 'it'));
$this->assertEquals('now', $configuration->getCache()->get('test', 'it'));
+ // second run is not loaded, but now data is found in the db (overwrote cache)
+ $this->assertEquals($data, $configuration->get('test', 'it'));
+ $this->assertEquals($data, $configuration->getCache()->get('test', 'it'));
+
+ // third run is loaded and therefore cache is used
+ $this->assertEquals($data, $configuration->get('test', 'it'));
+ $this->assertEquals($data, $configuration->getCache()->get('test', 'it'));
+ }
+
+ /**
+ * Test the configuration delete() method without adapter
+ * @dataProvider dataTests
+ */
+ public function testDeleteWithoutDB($data)
+ {
+ $configCache = new ConfigCache(['test' => ['it' => $data]]);
+ $configAdapter = \Mockery::mock('Friendica\Core\Config\Adapter\IConfigAdapter');
+ $configAdapter->shouldReceive('isConnected')->andReturn(false)->times(4);
+
+ $configuration = new Configuration($configCache, $configAdapter);
+
+ $this->assertEquals($data, $configuration->get('test', 'it'));
+ $this->assertEquals($data, $configuration->getCache()->get('test', 'it'));
+
$this->assertTrue($configuration->delete('test', 'it'));
$this->assertNull($configuration->get('test', 'it'));
$this->assertEquals('!<unset>!', $configuration->getCache()->get('test', 'it'));
{
$configCache = new ConfigCache(['test' => ['it' => 'now', 'quarter' => 'true']]);
$configAdapter = \Mockery::mock('Friendica\Core\Config\Adapter\IConfigAdapter');
- $configAdapter->shouldReceive('isConnected')->andReturn(true)->times(5);
+ $configAdapter->shouldReceive('isConnected')->andReturn(true)->times(6);
// constructor loading
$configAdapter->shouldReceive('load')->andReturn([])->once();
+ $configAdapter->shouldReceive('isLoaded')->with('test', 'it')->andReturn(true)->once();
+
$configAdapter->shouldReceive('delete')->with('test', 'it')->andReturn(false)->once();
$configAdapter->shouldReceive('delete')->with('test', 'second')->andReturn(true)->once();
class PConfigurationTest extends MockedTest
{
+ public function dataTests()
+ {
+ return [
+ 'string' => ['data' => 'it'],
+ 'boolTrue' => ['data' => true],
+ 'boolFalse' => ['data' => false],
+ 'integer' => ['data' => 235],
+ 'decimal' => ['data' => 2.456],
+ 'array' => ['data' => ['1', 2, '3', true, false]],
+ 'boolIntTrue' => ['data' => 1],
+ 'boolIntFalse' => ['Data' => 0],
+ ];
+ }
+
/**
- * Test if the configuration load() method
+ * Test the configuration load() method
*/
public function testCacheLoad()
{
$uid = 234;
$configCache = new ConfigCache();
$configAdapter = \Mockery::mock('Friendica\Core\Config\Adapter\IPConfigAdapter');
- $configAdapter->shouldReceive('isConnected')->andReturn(true)->once();
+ $configAdapter->shouldReceive('isConnected')->andReturn(true)->twice();
// expected loading
- $configAdapter->shouldReceive('load')->andReturn(['testing' => ['test' => 'it']])->once();
+ $configAdapter->shouldReceive('load')
+ ->with($uid, 'testing')
+ ->andReturn(['testing' => ['test' => 'it']])
+ ->once();
+ $configAdapter->shouldReceive('isLoaded')->with($uid, 'testing', 'test')->andReturn(true)->once();
$configuration = new PConfiguration($configCache, $configAdapter);
$configuration->load($uid, 'testing');
}
/**
- * Test if the configuration load() method with overwrite
+ * Test the configuration load() method with overwrite
*/
public function testCacheLoadDouble()
{
$uid = 234;
$configCache = new ConfigCache();
$configAdapter = \Mockery::mock('Friendica\Core\Config\Adapter\IPConfigAdapter');
- $configAdapter->shouldReceive('isConnected')->andReturn(true)->twice();
+ $configAdapter->shouldReceive('isConnected')->andReturn(true)->times(4);
// expected loading
- $configAdapter->shouldReceive('load')->andReturn(['testing' => ['test' => 'it']])->once();
+ $configAdapter->shouldReceive('load')->with($uid, 'testing')->andReturn(['testing' => ['test' => 'it']])->once();
+ $configAdapter->shouldReceive('isLoaded')->with($uid, 'testing', 'test')->andReturn(true)->twice();
// expected next loading
$configAdapter->shouldReceive('load')->andReturn(['testing' => ['test' => 'again']])->once();
}
/**
- * Test if the configuration get() and set() methods without adapter
+ * Test the configuration get() and set() methods without adapter
+ * @dataProvider dataTests
*/
- public function testSetGetWithoutDB()
+ public function testSetGetWithoutDB($data)
{
$uid = 234;
$configCache = new ConfigCache();
$configAdapter = \Mockery::mock('Friendica\Core\Config\Adapter\IPConfigAdapter');
- $configAdapter->shouldReceive('isConnected')->andReturn(false)->once();
+ $configAdapter->shouldReceive('isConnected')->andReturn(false)->times(2);
$configuration = new PConfiguration($configCache, $configAdapter);
- $this->assertTrue($configuration->set($uid, 'test', 'it', 'now'));
+ $this->assertTrue($configuration->set($uid, 'test', 'it', $data));
- $this->assertEquals('now', $configuration->get($uid, 'test', 'it'));
+ $this->assertEquals($data, $configuration->get($uid, 'test', 'it'));
}
/**
- * Test if the configuration get() and set() methods with adapter
+ * Test the configuration get() and set() methods with adapter
+ * @dataProvider dataTests
*/
- public function testSetGetWithDB()
+ public function testSetGetWithDB($data)
{
$uid = 234;
$configCache = new ConfigCache();
$configAdapter = \Mockery::mock('Friendica\Core\Config\Adapter\IPConfigAdapter');
- $configAdapter->shouldReceive('isConnected')->andReturn(true)->once();
- $configAdapter->shouldReceive('set')->with($uid, 'test', 'it', 'now')->andReturn(true)->once();
+ $configAdapter->shouldReceive('isConnected')->andReturn(true)->times(2);
+ $configAdapter->shouldReceive('isLoaded')->with($uid, 'test', 'it')->andReturn(true)->once();
+ $configAdapter->shouldReceive('set')->with($uid, 'test', 'it', $data)->andReturn(true)->once();
$configuration = new PConfiguration($configCache, $configAdapter);
- $this->assertTrue($configuration->set($uid, 'test', 'it', 'now'));
+ $this->assertTrue($configuration->set($uid, 'test', 'it', $data));
- $this->assertEquals('now', $configuration->get($uid, 'test', 'it'));
+ $this->assertEquals($data, $configuration->get($uid, 'test', 'it'));
}
/**
/**
* Test the configuration get() method with refresh
+ * @dataProvider dataTests
*/
- public function testGetWithRefresh()
+ public function testGetWithRefresh($data)
{
$uid = 234;
$configCache = new ConfigCache();
$configAdapter = \Mockery::mock('Friendica\Core\Config\Adapter\IPConfigAdapter');
- $configAdapter->shouldReceive('isConnected')->andReturn(true)->times(3);
+ $configAdapter->shouldReceive('isConnected')->andReturn(true)->times(4);
+ $configAdapter->shouldReceive('isLoaded')->with($uid, 'test', 'it')->andReturn(false)->once();
$configAdapter->shouldReceive('get')->with($uid, 'test', 'it')->andReturn('now')->once();
- $configAdapter->shouldReceive('get')->with($uid, 'test', 'it')->andReturn('again')->once();
+ $configAdapter->shouldReceive('isLoaded')->with($uid, 'test', 'it')->andReturn(true)->twice();
+ $configAdapter->shouldReceive('get')->with($uid, 'test', 'it')->andReturn($data)->once();
+ $configAdapter->shouldReceive('isLoaded')->with($uid, 'test', 'not')->andReturn(false)->once();
$configAdapter->shouldReceive('get')->with($uid, 'test', 'not')->andReturn('!<unset>!')->once();
$configuration = new PConfiguration($configCache, $configAdapter);
$this->assertEquals('now', $configuration->get($uid, 'test', 'it'));
// with refresh (and load the second value out of the db)
- $this->assertEquals('again', $configuration->get($uid, 'test', 'it', null, true));
+ $this->assertEquals($data, $configuration->get($uid, 'test', 'it', null, true));
// without refresh and wrong value and default
$this->assertEquals('default', $configuration->get($uid, 'test', 'not', 'default'));
}
+ /**
+ * Test the configuration get() method with different isLoaded settings
+ * @dataProvider dataTests
+ */
+ public function testGetWithoutLoaded($data)
+ {
+ $uid = 234;
+ $configCache = new ConfigCache();
+ $configAdapter = \Mockery::mock('Friendica\Core\Config\Adapter\IPConfigAdapter');
+ $configAdapter->shouldReceive('isConnected')->andReturn(true)->times(3);
+
+ $configAdapter->shouldReceive('isLoaded')->with($uid, 'test', 'it')->andReturn(false)->once();
+ $configAdapter->shouldReceive('get')->with($uid, 'test', 'it')->andReturn('!<unset>!')->once();
+
+ $configAdapter->shouldReceive('isLoaded')->with($uid, 'test', 'it')->andReturn(false)->once();
+ $configAdapter->shouldReceive('get')->with($uid, 'test', 'it')->andReturn($data)->once();
+
+ $configAdapter->shouldReceive('isLoaded')->with($uid, 'test', 'it')->andReturn(true)->once();
+
+ $configuration = new PConfiguration($configCache, $configAdapter);
+
+ // first run is not loaded and no data is found in the DB
+ $this->assertNull($configuration->get($uid, 'test', 'it'));
+
+ // second run is not loaded, but now data is found in the db (overwrote cache)
+ $this->assertEquals($data, $configuration->get($uid,'test', 'it'));
+
+ // third run is loaded and therefore cache is used
+ $this->assertEquals($data, $configuration->get($uid,'test', 'it'));
+ }
+
/**
* Test the configuration delete() method without adapter
+ * @dataProvider dataTests
*/
- public function testDeleteWithoutDB()
+ public function testDeleteWithoutDB($data)
{
$uid = 234;
$configCache = new ConfigCache();
$configAdapter = \Mockery::mock('Friendica\Core\Config\Adapter\IPConfigAdapter');
- $configAdapter->shouldReceive('isConnected')->andReturn(false)->times(3);
+ $configAdapter->shouldReceive('isConnected')->andReturn(false)->times(4);
$configuration = new PConfiguration($configCache, $configAdapter);
- $this->assertTrue($configuration->set($uid, 'test', 'it', 'now'));
- $this->assertEquals('now', $configuration->get($uid, 'test', 'it'));
+ $this->assertTrue($configuration->set($uid, 'test', 'it', $data));
+ $this->assertEquals($data, $configuration->get($uid, 'test', 'it'));
$this->assertTrue($configuration->delete($uid, 'test', 'it'));
$this->assertNull($configuration->get($uid, 'test', 'it'));
$uid = 234;
$configCache = new ConfigCache();
$configAdapter = \Mockery::mock('Friendica\Core\Config\Adapter\IPConfigAdapter');
- $configAdapter->shouldReceive('isConnected')->andReturn(true)->times(5);
+ $configAdapter->shouldReceive('isConnected')->andReturn(true)->times(6);
$configAdapter->shouldReceive('set')->with($uid, 'test', 'it', 'now')->andReturn(false)->once();
+ $configAdapter->shouldReceive('isLoaded')->with($uid, 'test', 'it')->andReturn(true)->once();
+
$configAdapter->shouldReceive('delete')->with($uid, 'test', 'it')->andReturn(false)->once();
$configAdapter->shouldReceive('delete')->with($uid, 'test', 'second')->andReturn(true)->once();