Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F4134709
EditResultCacheTest.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
4 KB
Referenced Files
None
Subscribers
None
EditResultCacheTest.php
View Options
<?php
namespace
MediaWiki\Tests\Storage
;
use
MediaWiki\Config\ServiceOptions
;
use
MediaWiki\Json\FormatJson
;
use
MediaWiki\MainConfigNames
;
use
MediaWiki\Storage\EditResult
;
use
MediaWiki\Storage\EditResultCache
;
use
MediaWikiUnitTestCase
;
use
Wikimedia\ObjectCache\BagOStuff
;
use
Wikimedia\Rdbms\IConnectionProvider
;
use
Wikimedia\Rdbms\IDatabase
;
use
Wikimedia\Rdbms\SelectQueryBuilder
;
/**
* @covers \MediaWiki\Storage\EditResultCache
*/
class
EditResultCacheTest
extends
MediaWikiUnitTestCase
{
private
const
DUMMY_KEY
=
'wiki:dummy:key'
;
/**
* Returns an EditResult for testing.
*
* @return EditResult
*/
private
function
getEditResult
():
EditResult
{
return
new
EditResult
(
false
,
100
,
EditResult
::
REVERT_ROLLBACK
,
123
,
125
,
true
,
false
,
[
'mw-rollback'
]
);
}
/**
* @covers \MediaWiki\Storage\EditResultCache::set
*/
public
function
testSet
()
{
$editResult
=
$this
->
getEditResult
();
$mainStash
=
$this
->
createMock
(
BagOStuff
::
class
);
$mainStash
->
expects
(
$this
->
once
()
)
->
method
(
'set'
)
->
with
(
self
::
DUMMY_KEY
,
FormatJson
::
encode
(
$editResult
)
)
->
willReturn
(
true
);
$mainStash
->
expects
(
$this
->
once
()
)
->
method
(
'makeKey'
)
->
willReturn
(
self
::
DUMMY_KEY
);
$erCache
=
new
EditResultCache
(
$mainStash
,
$this
->
createNoOpMock
(
IConnectionProvider
::
class
),
new
ServiceOptions
(
EditResultCache
::
CONSTRUCTOR_OPTIONS
,
[
MainConfigNames
::
RCMaxAge
=>
BagOStuff
::
TTL_MONTH
]
)
);
$result
=
$erCache
->
set
(
123
,
$editResult
);
$this
->
assertTrue
(
$result
,
'EditResultCache::set()'
);
}
/**
* @covers \MediaWiki\Storage\EditResultCache::get
*/
public
function
testGetFromStash
()
{
$editResult
=
$this
->
getEditResult
();
$mainStash
=
$this
->
createMock
(
BagOStuff
::
class
);
$mainStash
->
expects
(
$this
->
once
()
)
->
method
(
'get'
)
->
with
(
self
::
DUMMY_KEY
)
->
willReturn
(
FormatJson
::
encode
(
$editResult
)
);
$mainStash
->
expects
(
$this
->
once
()
)
->
method
(
'makeKey'
)
->
willReturn
(
self
::
DUMMY_KEY
);
$erCache
=
new
EditResultCache
(
$mainStash
,
$this
->
createNoOpMock
(
IConnectionProvider
::
class
),
new
ServiceOptions
(
EditResultCache
::
CONSTRUCTOR_OPTIONS
,
[
MainConfigNames
::
RCMaxAge
=>
BagOStuff
::
TTL_MONTH
]
)
);
$res
=
$erCache
->
get
(
126
);
$this
->
assertEquals
(
$editResult
,
$res
,
'Correct EditResult is returned'
);
}
/**
* @covers \MediaWiki\Storage\EditResultCache::get
*/
public
function
testGetFromRevertTag
()
{
$editResult
=
$this
->
getEditResult
();
$mainStash
=
$this
->
createMock
(
BagOStuff
::
class
);
$mainStash
->
expects
(
$this
->
once
()
)
->
method
(
'get'
)
->
with
(
self
::
DUMMY_KEY
)
->
willReturn
(
false
);
$mainStash
->
expects
(
$this
->
once
()
)
->
method
(
'makeKey'
)
->
willReturn
(
self
::
DUMMY_KEY
);
$dbr
=
$this
->
createMock
(
IDatabase
::
class
);
$dbr
->
expects
(
$this
->
once
()
)
->
method
(
'selectField'
)
->
willReturn
(
FormatJson
::
encode
(
$editResult
)
);
$dbr
->
method
(
'newSelectQueryBuilder'
)->
willReturnCallback
(
static
fn
()
=>
new
SelectQueryBuilder
(
$dbr
)
);
$dbProvider
=
$this
->
createMock
(
IConnectionProvider
::
class
);
$dbProvider
->
expects
(
$this
->
once
()
)
->
method
(
'getReplicaDatabase'
)
->
willReturn
(
$dbr
);
$erCache
=
new
EditResultCache
(
$mainStash
,
$dbProvider
,
new
ServiceOptions
(
EditResultCache
::
CONSTRUCTOR_OPTIONS
,
[
MainConfigNames
::
RCMaxAge
=>
BagOStuff
::
TTL_MONTH
]
)
);
$res
=
$erCache
->
get
(
126
);
$this
->
assertEquals
(
$editResult
,
$res
,
'Correct EditResult is returned'
);
}
/**
* @covers \MediaWiki\Storage\EditResultCache::get
*/
public
function
testGetMissingEntry
()
{
$mainStash
=
$this
->
createMock
(
BagOStuff
::
class
);
$mainStash
->
expects
(
$this
->
once
()
)
->
method
(
'get'
)
->
with
(
self
::
DUMMY_KEY
)
->
willReturn
(
false
);
$mainStash
->
expects
(
$this
->
once
()
)
->
method
(
'makeKey'
)
->
willReturn
(
self
::
DUMMY_KEY
);
$dbr
=
$this
->
createMock
(
IDatabase
::
class
);
$dbr
->
expects
(
$this
->
once
()
)
->
method
(
'selectField'
)
->
willReturn
(
false
);
$dbr
->
method
(
'newSelectQueryBuilder'
)->
willReturnCallback
(
static
fn
()
=>
new
SelectQueryBuilder
(
$dbr
)
);
$dbProvider
=
$this
->
createMock
(
IConnectionProvider
::
class
);
$dbProvider
->
expects
(
$this
->
once
()
)
->
method
(
'getReplicaDatabase'
)
->
willReturn
(
$dbr
);
$erCache
=
new
EditResultCache
(
$mainStash
,
$dbProvider
,
new
ServiceOptions
(
EditResultCache
::
CONSTRUCTOR_OPTIONS
,
[
MainConfigNames
::
RCMaxAge
=>
BagOStuff
::
TTL_MONTH
]
)
);
$res
=
$erCache
->
get
(
126
);
$this
->
assertNull
(
$res
,
'Null is returned'
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Wed, Aug 19, 12:46 (3 w, 2 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
ea/eb/21fd568fe2703a47ecfcf1106323
Default Alt Text
EditResultCacheTest.php (4 KB)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment