Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F4682419
StorageMock.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
2 KB
Referenced Files
None
Subscribers
None
StorageMock.php
View Options
<?php
/**
+-----------------------------------------------------------------------+
| This file is part of the Roundcube Webmail client |
| |
| Copyright (C) The Roundcube Dev Team |
| |
| Licensed under the GNU General Public License version 3 or |
| any later version with exceptions for skins & plugins. |
| See the README file for a full license statement. |
| |
| PURPOSE: |
| A class for easier testing of code utilizing rcube_storage |
+-----------------------------------------------------------------------+
| Author: Aleksander Machniak <alec@alec.pl> |
+-----------------------------------------------------------------------+
*/
/**
* A class for easier testing of code utilizing rcube_storage
*
* @package Tests
*/
class
StorageMock
{
public
$methodCalls
=
[];
protected
$mocks
=
[];
public
function
registerFunction
(
$name
,
$result
=
null
)
{
$this
->
mocks
[]
=
[
$name
,
$result
];
return
$this
;
}
public
function
__call
(
$name
,
$arguments
)
{
foreach
(
$this
->
mocks
as
$idx
=>
$mock
)
{
if
(
$mock
[
0
]
==
$name
)
{
$result
=
$mock
[
1
];
$this
->
methodCalls
[]
=
[
'name'
=>
$name
,
'args'
=>
$arguments
];
unset
(
$this
->
mocks
[
$idx
]);
return
$result
;
}
}
throw
new
Exception
(
"Unhandled function call for '$name' in StorageMock"
);
}
/**
* Close connection. Usually done on script shutdown
*/
public
function
close
()
{
// do nothing
}
public
function
get_hierarchy_delimiter
()
{
return
'/'
;
}
public
function
get_namespace
()
{
return
null
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Fri, May 1, 2:02 PM (4 h, 56 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
629446
Default Alt Text
StorageMock.php (2 KB)
Attached To
Mode
R3 roundcubemail
Attached
Detach File
Event Timeline
Log In to Comment