* @category Horde
* @copyright 2005-2017 Horde LLC
* @license http://www.horde.org/licenses/gpl GPL
* @package Passwd
*/
class Passwd_Test extends Horde_Test
{
/**
* The module list
*
* @var array
*/
protected $_moduleList = array(
'ctype' => 'Ctype Support',
'ldap' => array(
'descrip' => 'LDAP Support',
'error' => 'If you will be using the any of the LDAP drivers for password changes, PHP must have ldap support. Compile PHP --with-ldap before continuing.'
),
'mcrypt' => array(
'descrip' => 'Mcrypt Support',
'error' => 'If you will be using the smbldap driver for password changes, PHP must have mcrypt support. Compile PHP --with-mcrypt before continuing.'
),
'soap' => array(
'descrip' => 'SOAP Support',
'error' => 'If you will be using the SOAP driver for password changes, PHP must have soap support. Compile PHP with --enable-soap before continuing.'
)
);
/**
* PHP settings list.
*
* @var array
*/
protected $_settingsList = array();
/**
* PEAR modules list.
*
* @var array
*/
protected $_pearList = array(
'Crypt_CHAP' => array(
'path' => 'Crypt/CHAP.php',
'error' => 'If you will be using the smbldap driver for password changes, then you must install the PEAR Crypt_CHAP module.',
'required' => false,
)
);
/**
*/
public function __construct()
{
parent::__construct();
$this->_fileList += array(
'config/backends.php' => null
);
}
/**
* Any application specific tests that need to be done.
*
* @return string HTML output.
*/
public function appTests()
{
}
}