Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F4091082
FauxSearchResultTest.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
FauxSearchResultTest.php
View Options
<?php
use
MediaWiki\Revision\MutableRevisionRecord
;
/**
* @group Search
* @covers \FauxSearchResultSet
*/
class
FauxSearchResultTest
extends
MediaWikiUnitTestCase
{
use
MockTitleTrait
;
public
function
testConstruct
()
{
$title
=
$this
->
makeMockTitle
(
'Foo'
,
[
'id'
=>
0
]
);
$r
=
new
FauxSearchResult
(
$title
);
$this
->
assertSame
(
$title
,
$r
->
getTitle
()
);
$this
->
assertTrue
(
$r
->
isMissingRevision
()
);
$this
->
assertNull
(
$r
->
getFile
()
);
$this
->
assertSame
(
0
,
$r
->
getWordCount
()
);
$title
=
$this
->
makeMockTitle
(
'Foo'
,
[
'id'
=>
1
]
);
$rev
=
new
MutableRevisionRecord
(
$title
);
$rev
->
setTimestamp
(
'20000101000000'
);
$r
=
new
FauxSearchResult
(
$title
,
$rev
);
$this
->
assertFalse
(
$r
->
isMissingRevision
()
);
$this
->
assertSame
(
'20000101000000'
,
$r
->
getTimestamp
()
);
$title
=
$this
->
makeMockTitle
(
'Foo'
,
[
'id'
=>
1
]
);
$rev
=
new
MutableRevisionRecord
(
$title
);
$r
=
new
FauxSearchResult
(
$title
,
$rev
,
null
,
'123'
);
$this
->
assertSame
(
3
,
$r
->
getByteSize
()
);
$title
=
$this
->
makeMockTitle
(
'Foo'
,
[
'id'
=>
0
]
);
$file
=
$this
->
getFileMock
(
'Foo.png'
);
$r
=
new
FauxSearchResult
(
$title
,
null
,
$file
);
$this
->
assertSame
(
$file
,
$r
->
getFile
()
);
}
/**
* @param string $filename
* @return File
*/
private
function
getFileMock
(
$filename
)
{
$title
=
$this
->
getMockBuilder
(
File
::
class
)
->
disableOriginalConstructor
()
->
onlyMethods
(
[
'getName'
]
)
->
getMock
();
$title
->
method
(
'getName'
)
->
willReturn
(
$filename
);
return
$title
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Aug 18 2026, 11:31 (5 w, 4 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
c3/bb/44f5728d0946182de36b4d9e3fc8
Default Alt Text
FauxSearchResultTest.php (1 KB)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment