Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F6064272
PluginApi.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
PluginApi.php
View Options
<?php
/**
* Test class to test rcube_plugin_api class
*
* @package Tests
*/
class
Framework_PluginApi
extends
PHPUnit\Framework\TestCase
{
/**
* Test get_info()
*/
function
test_get_info
()
{
$api
=
rcube_plugin_api
::
get_instance
();
$info
=
$api
->
get_info
(
'acl'
);
$this
->
assertSame
(
'roundcube'
,
$info
[
'vendor'
]);
$this
->
assertSame
(
'acl'
,
$info
[
'name'
]);
$this
->
assertSame
([],
$info
[
'require'
]);
$this
->
assertSame
(
'GPL-3.0+'
,
$info
[
'license'
]);
}
/**
* Test hooks registration, execution and unregistration
*/
function
test_hooks
()
{
$api
=
rcube_plugin_api
::
get_instance
();
$var
=
0
;
$hook_handler
=
function
(
$args
)
use
(&
$var
)
{
$var
++;
};
$api
->
register_hook
(
'test'
,
$hook_handler
);
$api
->
exec_hook
(
'test'
,
[]);
$this
->
assertSame
(
1
,
$var
);
$api
->
unregister_hook
(
'test'
,
$hook_handler
);
$api
->
exec_hook
(
'test'
,
[]);
$this
->
assertSame
(
1
,
$var
);
$this
->
assertFalse
(
$api
->
is_processing
());
}
/**
* Test tasks registration
*/
function
test_tasks
()
{
$api
=
rcube_plugin_api
::
get_instance
();
$this
->
assertTrue
(
$api
->
register_task
(
'test'
,
'test'
));
$this
->
assertTrue
(
$api
->
is_plugin_task
(
'test'
));
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Fri, May 22, 4:19 AM (1 d, 14 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
705953
Default Alt Text
PluginApi.php (1 KB)
Attached To
Mode
R3 roundcubemail
Attached
Detach File
Event Timeline
Log In to Comment