|
|
|
@ -221,6 +221,24 @@ class Test_Preferences_Object extends PHPUnit_Framework_TestCase { |
|
|
|
|
$this->assertEquals('someothervalue', $values['AnotherUser']); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public function testGetValueUsers() |
|
|
|
|
{ |
|
|
|
|
// Prepare data |
|
|
|
|
$query = \OC_DB::prepare('INSERT INTO `*PREFIX*preferences` VALUES(?, ?, ?, ?)'); |
|
|
|
|
$query->execute(array('SomeUser', 'testGetUsersForValue', 'somekey', 'somevalue')); |
|
|
|
|
$query->execute(array('AnotherUser', 'testGetUsersForValue', 'somekey', 'someothervalue')); |
|
|
|
|
$query->execute(array('AUser', 'testGetUsersForValue', 'somekey', 'somevalue')); |
|
|
|
|
|
|
|
|
|
$preferences = new OC\Preferences(\OC_DB::getConnection()); |
|
|
|
|
$result = $preferences->getUsersForValue('testGetUsersForValue', 'somekey', 'somevalue'); |
|
|
|
|
sort($result); |
|
|
|
|
$this->assertEquals(array('AUser', 'SomeUser'), $result); |
|
|
|
|
|
|
|
|
|
// Clean DB after the test |
|
|
|
|
$query = \OC_DB::prepare('DELETE FROM `*PREFIX*preferences` WHERE `appid` = ?'); |
|
|
|
|
$query->execute(array('testGetUsersForValue')); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public function testDeleteKey() |
|
|
|
|
{ |
|
|
|
|
$connectionMock = $this->getMock('\OC\DB\Connection', array(), array(), '', false); |
|
|
|
|