Files
roundcubemail/plugins/example_addressbook/tests/ExampleAddressbook.php
2020-12-06 11:43:56 +01:00

40 lines
930 B
PHP

<?php
class ExampleAddressbook_Plugin extends PHPUnit\Framework\TestCase
{
function setUp()
{
include_once __DIR__ . '/../example_addressbook.php';
include_once __DIR__ . '/../example_addressbook_backend.php';
}
/**
* Plugin object construction test
*/
function test_constructor()
{
$rcube = rcube::get_instance();
$plugin = new example_addressbook($rcube->plugins);
$this->assertInstanceOf('example_addressbook', $plugin);
$this->assertInstanceOf('rcube_plugin', $plugin);
$plugin->init();
}
/**
* Test address_sources()
*/
function test_address_sources()
{
$rcube = rcube::get_instance();
$plugin = new example_addressbook($rcube->plugins);
$result = $plugin->address_sources(['sources' => []]);
$this->assertSame('static', $result['sources']['static']['id']);
}
}