From b8113b688bc2733f28f2b7df611575214ec6f35f Mon Sep 17 00:00:00 2001 From: Alexander Fuhr Date: Wed, 12 Nov 2014 17:13:15 +0100 Subject: [PATCH] Update User\Store\IniStoreTest --- .../library/Icinga/User/Store/IniStoreTest.php | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/test/php/library/Icinga/User/Store/IniStoreTest.php b/test/php/library/Icinga/User/Store/IniStoreTest.php index d6637d2f2..e3ed9f8e0 100644 --- a/test/php/library/Icinga/User/Store/IniStoreTest.php +++ b/test/php/library/Icinga/User/Store/IniStoreTest.php @@ -32,13 +32,15 @@ class IniStoreTest extends BaseTestCase public function testWhetherPreferenceChangesAreApplied() { $store = $this->getStore(); - $store->setPreferences(array('key1' => '1')); + $store->setPreferences(array('testsection' => array('key1' => '1'))); $store->save( - Mockery::mock('Icinga\User\Preferences', array('toArray' => array('key1' => '11', 'key2' => '2'))) + Mockery::mock('Icinga\User\Preferences', array( + 'toArray' => array('testsection' => array('key1' => '11', 'key2' => '2')) + )) ); $this->assertEquals( - array('key1' => '11', 'key2' => '2'), + array('testsection' => array('key1' => '11', 'key2' => '2')), $store->getPreferences(), 'IniStore::save does not properly apply changed preferences' ); @@ -47,10 +49,13 @@ class IniStoreTest extends BaseTestCase public function testWhetherPreferenceDeletionsAreApplied() { $store = $this->getStore(); - $store->setPreferences(array('key' => 'value')); + $store->setPreferences(array('testsection' => array('key' => 'value'))); - $store->save(Mockery::mock('Icinga\User\Preferences', array('toArray' => array()))); - $this->assertEmpty($store->getPreferences(), 'IniStore::save does not delete removed preferences'); + $store->save(Mockery::mock('Icinga\User\Preferences', array('toArray' => array('testsection' => array())))); + + $result = $store->getPreferences(); + + $this->assertEmpty($result['testsection'], 'IniStore::save does not delete removed preferences'); } protected function getStore()