* @license http://www.horde.org/licenses/lgpl21 LGPL
* @link http://www.horde.org/components/Horde_Test
*/
class Horde_Test_Factory_KolabStorage
{
/**
* Create a SQL next generate share setup.
*
* @param array $params Additional options.
*
* 'user' - (string) The current user.
* 'imapuser' - (string) The short IMAP ID of the user.
*
*
* @return Horde_Share_Sqlng The share setup.
*/
public function create($params)
{
if (!class_exists('Horde_Kolab_Storage_Factory')) {
throw new Horde_Test_Exception('The "Horde_Kolab_Storage_Factory" class is unavailable!');
}
$kolab_factory = new Horde_Kolab_Storage_Factory(
array(
'driver' => 'mock',
'queryset' => array('list' => array('queryset' => 'horde')),
'params' => array(
'username' => $params['user'],
'host' => 'localhost',
'port' => 143,
'data' => array(
'user/' . $params['imapuser'] => array(
'permissions' => array('anyone' => 'alrid')
)
)
),
'logger' => new Horde_Support_Stub()
)
);
return $kolab_factory->create();
}
}