mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-03-05 07:44:01 +01:00
* use fixed "roundcube/plugin-installer" * Use composer autoloader for plugins testing * cherrypick remaining from 9241 related with testing * minor legacy autoload improvements
34 lines
789 B
PHP
34 lines
789 B
PHP
<?php
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class ExampleAddressbook_Plugin extends TestCase
|
|
{
|
|
/**
|
|
* Plugin object construction test
|
|
*/
|
|
public 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()
|
|
*/
|
|
public 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']);
|
|
}
|
|
}
|