Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F117752548
PluginApi.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Authored By
Unknown
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
Sat, Apr 4, 4:20 AM (1 d, 3 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
77/3c/7f77a84c1fa14cc2c146bb23a34b
Default Alt Text
PluginApi.php (1 KB)
Attached To
Mode
R113 roundcubemail
Attached
Detach File
Event Timeline