Convert OC_Appconfig to object interface

Implemented unittest for OC\AppConfig
This commit is contained in:
Bart Visscher 2013-03-02 17:17:11 +01:00
parent 2e79aab0ce
commit c546874159
3 changed files with 382 additions and 67 deletions

View File

@ -33,11 +33,21 @@
* *
*/ */
namespace OC;
use \OC\DB\Connection;
/** /**
* This class provides an easy way for apps to store config values in the * This class provides an easy way for apps to store config values in the
* database. * database.
*/ */
class OC_Appconfig{ class AppConfig {
protected $conn;
public function __construct(Connection $conn) {
$this->conn = $conn;
}
/** /**
* @brief Get all apps using the config * @brief Get all apps using the config
* @return array with app ids * @return array with app ids
@ -45,16 +55,14 @@ class OC_Appconfig{
* This function returns a list of all apps that have at least one * This function returns a list of all apps that have at least one
* entry in the appconfig table. * entry in the appconfig table.
*/ */
public static function getApps() { public function getApps() {
// No magic in here! $query = 'SELECT DISTINCT `appid` FROM `*PREFIX*appconfig`';
$query = OC_DB::prepare( 'SELECT DISTINCT `appid` FROM `*PREFIX*appconfig`' ); $result = $this->conn->executeQuery( $query );
$result = $query->execute();
$apps = array(); $apps = array();
while( $row = $result->fetchRow()) { while( $appid = $result->fetchColumn()) {
$apps[] = $row["appid"]; $apps[] = $appid;
} }
return $apps; return $apps;
} }
@ -66,14 +74,13 @@ class OC_Appconfig{
* This function gets all keys of an app. Please note that the values are * This function gets all keys of an app. Please note that the values are
* not returned. * not returned.
*/ */
public static function getKeys( $app ) { public function getKeys( $app ) {
// No magic in here as well $query = 'SELECT `configkey` FROM `*PREFIX*appconfig` WHERE `appid` = ?';
$query = OC_DB::prepare( 'SELECT `configkey` FROM `*PREFIX*appconfig` WHERE `appid` = ?' ); $result = $this->conn->executeQuery( $query, array( $app ));
$result = $query->execute( array( $app ));
$keys = array(); $keys = array();
while( $row = $result->fetchRow()) { while( $key = $result->fetchColumn()) {
$keys[] = $row["configkey"]; $keys[] = $key;
} }
return $keys; return $keys;
@ -89,15 +96,13 @@ class OC_Appconfig{
* This function gets a value from the appconfig table. If the key does * This function gets a value from the appconfig table. If the key does
* not exist the default value will be returned * not exist the default value will be returned
*/ */
public static function getValue( $app, $key, $default = null ) { public function getValue( $app, $key, $default = null ) {
// At least some magic in here :-) $query = 'SELECT `configvalue` FROM `*PREFIX*appconfig`'
$query = OC_DB::prepare( 'SELECT `configvalue` FROM `*PREFIX*appconfig`' .' WHERE `appid` = ? AND `configkey` = ?';
.' WHERE `appid` = ? AND `configkey` = ?' ); $row = $this->conn->fetchAssoc($query, array( $app, $key ));
$result = $query->execute( array( $app, $key ));
$row = $result->fetchRow();
if($row) { if($row) {
return $row["configvalue"]; return $row['configvalue'];
}else{ } else {
return $default; return $default;
} }
} }
@ -108,8 +113,8 @@ class OC_Appconfig{
* @param string $key * @param string $key
* @return bool * @return bool
*/ */
public static function hasKey($app, $key) { public function hasKey($app, $key) {
$exists = self::getKeys( $app ); $exists = $this->getKeys( $app );
return in_array( $key, $exists ); return in_array( $key, $exists );
} }
@ -118,21 +123,27 @@ class OC_Appconfig{
* @param string $app app * @param string $app app
* @param string $key key * @param string $key key
* @param string $value value * @param string $value value
* @return bool
* *
* Sets a value. If the key did not exist before it will be created. * Sets a value. If the key did not exist before it will be created.
*/ */
public static function setValue( $app, $key, $value ) { public function setValue( $app, $key, $value ) {
// Does the key exist? yes: update. No: insert // Does the key exist? no: insert, yes: update.
if(! self::hasKey($app, $key)) { if ( !$this->hasKey($app, $key)) {
$query = OC_DB::prepare( 'INSERT INTO `*PREFIX*appconfig` ( `appid`, `configkey`, `configvalue` )' $data = array(
.' VALUES( ?, ?, ? )' ); 'appid' => $app,
$query->execute( array( $app, $key, $value )); 'configkey' => $key,
} 'configvalue' => $value,
else{ );
$query = OC_DB::prepare( 'UPDATE `*PREFIX*appconfig` SET `configvalue` = ?' $this->conn->insert('*PREFIX*appconfig', $data);
.' WHERE `appid` = ? AND `configkey` = ?' ); } else {
$query->execute( array( $value, $app, $key )); $data = array(
'configvalue' => $value,
);
$where = array(
'appid' => $app,
'configkey' => $key,
);
$this->conn->update('*PREFIX*appconfig', $data, $where);
} }
} }
@ -144,12 +155,12 @@ class OC_Appconfig{
* *
* Deletes a key. * Deletes a key.
*/ */
public static function deleteKey( $app, $key ) { public function deleteKey( $app, $key ) {
// Boring! $where = array(
$query = OC_DB::prepare( 'DELETE FROM `*PREFIX*appconfig` WHERE `appid` = ? AND `configkey` = ?' ); 'appid' => $app,
$query->execute( array( $app, $key )); 'configkey' => $key,
);
return true; $this->conn->delete('*PREFIX*appconfig', $where);
} }
/** /**
@ -159,12 +170,11 @@ class OC_Appconfig{
* *
* Removes all keys in appconfig belonging to the app. * Removes all keys in appconfig belonging to the app.
*/ */
public static function deleteApp( $app ) { public function deleteApp( $app ) {
// Nothing special $where = array(
$query = OC_DB::prepare( 'DELETE FROM `*PREFIX*appconfig` WHERE `appid` = ?' ); 'appid' => $app,
$query->execute( array( $app )); );
$this->conn->delete('*PREFIX*appconfig', $where);
return true;
} }
/** /**
@ -173,31 +183,35 @@ class OC_Appconfig{
* @param key * @param key
* @return array * @return array
*/ */
public static function getValues($app, $key) { public function getValues($app, $key) {
if($app!==false and $key!==false) { if(($app!==false) == ($key!==false)) {
return false; return false;
} }
$fields='`configvalue`';
$where='WHERE'; $fields = '`configvalue`';
$params=array(); $where = 'WHERE';
$params = array();
if($app!==false) { if($app!==false) {
$fields.=', `configkey`'; $fields .= ', `configkey`';
$where.=' `appid` = ?'; $where .= ' `appid` = ?';
$params[]=$app; $params[] = $app;
$key='configkey'; $key = 'configkey';
}else{ }else{
$fields.=', `appid`'; $fields .= ', `appid`';
$where.=' `configkey` = ?'; $where .= ' `configkey` = ?';
$params[]=$key; $params[] = $key;
$key='appid'; $key = 'appid';
} }
$queryString='SELECT '.$fields.' FROM `*PREFIX*appconfig` '.$where; $query = 'SELECT '.$fields.' FROM `*PREFIX*appconfig` '.$where;
$query=OC_DB::prepare($queryString); $result = $this->conn->executeQuery( $query, $params );
$result=$query->execute($params);
$values=array(); $values = array();
while($row=$result->fetchRow()) { while( $row = $result->fetch((\PDO::FETCH_ASSOC))) {
$values[$row[$key]]=$row['configvalue']; $values[$row[$key]] = $row['configvalue'];
} }
return $values; return $values;
} }
} }
require_once __DIR__.'/legacy/'.basename(__FILE__);

120
lib/legacy/appconfig.php Normal file
View File

@ -0,0 +1,120 @@
<?php
/**
* ownCloud
*
* @author Frank Karlitschek
* @author Jakob Sack
* @copyright 2012 Frank Karlitschek frank@owncloud.org
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
* License as published by the Free Software Foundation; either
* version 3 of the License, or any later version.
*
* This library 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 library. If not, see <http://www.gnu.org/licenses/>.
*
*/
/**
* This class provides an easy way for apps to store config values in the
* database.
*/
OC_Appconfig::$object = new \OC\AppConfig(OC_DB::getConnection());
class OC_Appconfig{
public static $object;
/**
* @brief Get all apps using the config
* @return array with app ids
*
* This function returns a list of all apps that have at least one
* entry in the appconfig table.
*/
public static function getApps() {
return self::$object->getApps();
}
/**
* @brief Get the available keys for an app
* @param string $app the app we are looking for
* @return array with key names
*
* This function gets all keys of an app. Please note that the values are
* not returned.
*/
public static function getKeys( $app ) {
return self::$object->getKeys( $app );
}
/**
* @brief Gets the config value
* @param string $app app
* @param string $key key
* @param string $default = null, default value if the key does not exist
* @return string the value or $default
*
* This function gets a value from the appconfig table. If the key does
* not exist the default value will be returned
*/
public static function getValue( $app, $key, $default = null ) {
return self::$object->getValue($app, $key, $default);
}
/**
* @brief check if a key is set in the appconfig
* @param string $app
* @param string $key
* @return bool
*/
public static function hasKey($app, $key) {
return self::$object->hasKey($app, $key);
}
/**
* @brief sets a value in the appconfig
* @param string $app app
* @param string $key key
* @param string $value value
*
* Sets a value. If the key did not exist before it will be created.
*/
public static function setValue( $app, $key, $value ) {
self::$object->setValue( $app, $key, $value );
}
/**
* @brief Deletes a key
* @param string $app app
* @param string $key key
*
* Deletes a key.
*/
public static function deleteKey( $app, $key ) {
self::$object->deleteKey( $app, $key );
}
/**
* @brief Remove app from appconfig
* @param string $app app
*
* Removes all keys in appconfig belonging to the app.
*/
public static function deleteApp( $app ) {
self::$object->deleteApp( $app );
}
/**
* get multiply values, either the app or key can be used as wildcard by setting it to false
* @param app
* @param key
* @return array
*/
public static function getValues($app, $key) {
return self::$object->getValues($app, $key);
}
}

View File

@ -1,6 +1,7 @@
<?php <?php
/** /**
* Copyright (c) 2013 Christopher Schäpers <christopher@schaepers.it> * Copyright (c) 2013 Christopher Schäpers <christopher@schaepers.it>
* Copyright (c) 2013 Bart Visscher <bartv@thisnet.nl>
* This file is licensed under the Affero General Public License version 3 or * This file is licensed under the Affero General Public License version 3 or
* later. * later.
* See the COPYING-README file. * See the COPYING-README file.
@ -130,3 +131,183 @@ class Test_Appconfig extends PHPUnit_Framework_TestCase {
$this->assertEquals($expected, $values); $this->assertEquals($expected, $values);
} }
} }
class Test_AppConfig_Object extends PHPUnit_Framework_TestCase {
public function testGetApps()
{
$statementMock = $this->getMock('\Doctrine\DBAL\Statement', array(), array(), '', false);
$statementMock->expects($this->exactly(2))
->method('fetchColumn')
->will($this->onConsecutiveCalls('foo', false));
$connectionMock = $this->getMock('\OC\DB\Connection', array(), array(), '', false);
$connectionMock->expects($this->once())
->method('executeQuery')
->with($this->equalTo('SELECT DISTINCT `appid` FROM `*PREFIX*appconfig`'))
->will($this->returnValue($statementMock));
$appconfig = new OC\AppConfig($connectionMock);
$apps = $appconfig->getApps();
$this->assertEquals(array('foo'), $apps);
}
public function testGetKeys()
{
$statementMock = $this->getMock('\Doctrine\DBAL\Statement', array(), array(), '', false);
$statementMock->expects($this->exactly(2))
->method('fetchColumn')
->will($this->onConsecutiveCalls('foo', false));
$connectionMock = $this->getMock('\OC\DB\Connection', array(), array(), '', false);
$connectionMock->expects($this->once())
->method('executeQuery')
->with($this->equalTo('SELECT `configkey` FROM `*PREFIX*appconfig` WHERE `appid` = ?'),
$this->equalTo(array('bar')))
->will($this->returnValue($statementMock));
$appconfig = new OC\AppConfig($connectionMock);
$keys = $appconfig->getKeys('bar');
$this->assertEquals(array('foo'), $keys);
}
public function testGetValue()
{
$connectionMock = $this->getMock('\OC\DB\Connection', array(), array(), '', false);
$connectionMock->expects($this->exactly(2))
->method('fetchAssoc')
->with($this->equalTo('SELECT `configvalue` FROM `*PREFIX*appconfig` WHERE `appid` = ? AND `configkey` = ?'),
$this->equalTo(array('bar', 'red')))
->will($this->onConsecutiveCalls(array('configvalue'=>'foo'), null));
$appconfig = new OC\AppConfig($connectionMock);
$value = $appconfig->getValue('bar', 'red');
$this->assertEquals('foo', $value);
$value = $appconfig->getValue('bar', 'red', 'def');
$this->assertEquals('def', $value);
}
public function testHasKey()
{
$statementMock = $this->getMock('\Doctrine\DBAL\Statement', array(), array(), '', false);
$statementMock->expects($this->exactly(3))
->method('fetchColumn')
->will($this->onConsecutiveCalls('foo', false, false));
$connectionMock = $this->getMock('\OC\DB\Connection', array(), array(), '', false);
$connectionMock->expects($this->exactly(2))
->method('executeQuery')
->with($this->equalTo('SELECT `configkey` FROM `*PREFIX*appconfig` WHERE `appid` = ?'),
$this->equalTo(array('bar')))
->will($this->returnValue($statementMock));
$appconfig = new OC\AppConfig($connectionMock);
$this->assertTrue($appconfig->hasKey('bar', 'foo'));
$this->assertFalse($appconfig->hasKey('bar', 'foo'));
}
public function testSetValue()
{
$statementMock = $this->getMock('\Doctrine\DBAL\Statement', array(), array(), '', false);
$statementMock->expects($this->exactly(4))
->method('fetchColumn')
->will($this->onConsecutiveCalls('foo', false, 'foo', false));
$connectionMock = $this->getMock('\OC\DB\Connection', array(), array(), '', false);
$connectionMock->expects($this->exactly(2))
->method('executeQuery')
->with($this->equalTo('SELECT `configkey` FROM `*PREFIX*appconfig` WHERE `appid` = ?'),
$this->equalTo(array('bar')))
->will($this->returnValue($statementMock));
$connectionMock->expects($this->once())
->method('insert')
->with($this->equalTo('*PREFIX*appconfig'),
$this->equalTo(
array(
'appid' => 'bar',
'configkey' => 'moo',
'configvalue' => 'v1',
)
));
$connectionMock->expects($this->once())
->method('update')
->with($this->equalTo('*PREFIX*appconfig'),
$this->equalTo(
array(
'configvalue' => 'v2',
)),
$this->equalTo(
array(
'appid' => 'bar',
'configkey' => 'foo',
)
));
$appconfig = new OC\AppConfig($connectionMock);
$appconfig->setValue('bar', 'moo', 'v1');
$appconfig->setValue('bar', 'foo', 'v2');
}
public function testDeleteKey()
{
$connectionMock = $this->getMock('\OC\DB\Connection', array(), array(), '', false);
$connectionMock->expects($this->once())
->method('delete')
->with($this->equalTo('*PREFIX*appconfig'),
$this->equalTo(
array(
'appid' => 'bar',
'configkey' => 'foo',
)
));
$appconfig = new OC\AppConfig($connectionMock);
$appconfig->deleteKey('bar', 'foo');
}
public function testDeleteApp()
{
$connectionMock = $this->getMock('\OC\DB\Connection', array(), array(), '', false);
$connectionMock->expects($this->once())
->method('delete')
->with($this->equalTo('*PREFIX*appconfig'),
$this->equalTo(
array(
'appid' => 'bar',
)
));
$appconfig = new OC\AppConfig($connectionMock);
$appconfig->deleteApp('bar');
}
public function testGetValues()
{
$statementMock = $this->getMock('\Doctrine\DBAL\Statement', array(), array(), '', false);
$statementMock->expects($this->exactly(4))
->method('fetch')
->with(\PDO::FETCH_ASSOC)
->will($this->onConsecutiveCalls(
array('configvalue' =>'bar', 'configkey' => 'x'),
false,
array('configvalue' =>'foo', 'appid' => 'y'),
false
));
$connectionMock = $this->getMock('\OC\DB\Connection', array(), array(), '', false);
$connectionMock->expects($this->at(0))
->method('executeQuery')
->with($this->equalTo('SELECT `configvalue`, `configkey` FROM `*PREFIX*appconfig` WHERE `appid` = ?'),
$this->equalTo(array('foo')))
->will($this->returnValue($statementMock));
$connectionMock->expects($this->at(1))
->method('executeQuery')
->with($this->equalTo('SELECT `configvalue`, `appid` FROM `*PREFIX*appconfig` WHERE `configkey` = ?'),
$this->equalTo(array('bar')))
->will($this->returnValue($statementMock));
$appconfig = new OC\AppConfig($connectionMock);
$values = $appconfig->getValues('foo', false);
//$this->assertEquals(array('x'=> 'bar'), $values);
$values = $appconfig->getValues(false, 'bar');
//$this->assertEquals(array('y'=> 'foo'), $values);
$values = $appconfig->getValues(false, false);
//$this->assertEquals(false, $values);
$values = $appconfig->getValues('x', 'x');
//$this->assertEquals(false, $values);
}
}