mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-03-03 06:44:03 +01:00
54 lines
1.1 KiB
PHP
54 lines
1.1 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Test class to test rcube class
|
|
*
|
|
* @package Tests
|
|
*/
|
|
class Framework_Rcube extends PHPUnit\Framework\TestCase
|
|
{
|
|
|
|
/**
|
|
* Class constructor
|
|
*/
|
|
function test_class()
|
|
{
|
|
$object = rcube::get_instance();
|
|
|
|
$this->assertInstanceOf('rcube', $object, "Class singleton");
|
|
}
|
|
|
|
/**
|
|
* rcube::read_localization()
|
|
*/
|
|
function test_read_localization()
|
|
{
|
|
$rcube = rcube::get_instance();
|
|
$result = $rcube->read_localization(INSTALL_PATH . 'plugins/acl/localization', 'pl_PL');
|
|
|
|
$this->assertSame('Zapis', $result['aclwrite']);
|
|
}
|
|
|
|
/**
|
|
* rcube::list_languages()
|
|
*/
|
|
function test_list_languages()
|
|
{
|
|
$rcube = rcube::get_instance();
|
|
$result = $rcube->list_languages();
|
|
|
|
$this->assertSame('English (US)', $result['en_US']);
|
|
}
|
|
|
|
/**
|
|
* rcube::encrypt() and rcube::decrypt()
|
|
*/
|
|
function test_encrypt_and_decrypt()
|
|
{
|
|
$rcube = rcube::get_instance();
|
|
$result = $rcube->decrypt($rcube->encrypt('test'));
|
|
|
|
$this->assertSame('test', $result);
|
|
}
|
|
}
|