Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F2750375
CategoriesRdfTest.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
CategoriesRdfTest.php
View Options
<?php
namespace
MediaWiki\Tests\Maintenance
;
use
DumpCategoriesAsRdf
;
use
MediaWiki\MainConfigNames
;
use
MediaWikiLangTestCase
;
use
Wikimedia\Rdbms\IMaintainableDatabase
;
/**
* @covers \MediaWiki\Category\CategoriesRdf
* @covers \DumpCategoriesAsRdf
*/
class
CategoriesRdfTest
extends
MediaWikiLangTestCase
{
public
function
getCategoryIterator
()
{
return
[
// batch 1
[
(
object
)[
'page_title'
=>
'Category One'
,
'page_id'
=>
1
,
'pp_propname'
=>
null
,
'cat_pages'
=>
'20'
,
'cat_subcats'
=>
'10'
,
'cat_files'
=>
'3'
],
(
object
)[
'page_title'
=>
'2 Category Two'
,
'page_id'
=>
2
,
'pp_propname'
=>
'hiddencat'
,
'cat_pages'
=>
20
,
'cat_subcats'
=>
0
,
'cat_files'
=>
3
],
],
// batch 2
[
(
object
)[
'page_title'
=>
'Третья категория'
,
'page_id'
=>
3
,
'pp_propname'
=>
null
,
'cat_pages'
=>
'0'
,
'cat_subcats'
=>
'0'
,
'cat_files'
=>
'0'
],
]
];
}
public
function
getCategoryLinksIterator
(
$dbr
,
array
$ids
)
{
$res
=
[];
foreach
(
$ids
as
$pageid
)
{
$res
[]
=
(
object
)[
'cl_from'
=>
$pageid
,
'cl_to'
=>
"Parent of $pageid"
];
}
return
$res
;
}
public
function
testCategoriesDump
()
{
$this
->
overrideConfigValues
(
[
MainConfigNames
::
Server
=>
'http://acme.test'
,
MainConfigNames
::
CanonicalServer
=>
'http://acme.test'
,
MainConfigNames
::
RightsUrl
=>
'https://creativecommons.org/licenses/by-sa/3.0/'
,
]
);
$dumpScript
=
$this
->
getMockBuilder
(
DumpCategoriesAsRdf
::
class
)
->
onlyMethods
(
[
'getDB'
,
'getCategoryIterator'
,
'getCategoryLinksIterator'
]
)
->
getMock
();
$dumpScript
->
method
(
'getDB'
)
->
willReturn
(
$this
->
createNoOpMock
(
IMaintainableDatabase
::
class
)
);
$dumpScript
->
expects
(
$this
->
once
()
)
->
method
(
'getCategoryIterator'
)
->
willReturn
(
$this
->
getCategoryIterator
()
);
$dumpScript
->
method
(
'getCategoryLinksIterator'
)
->
willReturnCallback
(
[
$this
,
'getCategoryLinksIterator'
]
);
/** @var DumpCategoriesAsRdf $dumpScript */
$logFileName
=
$this
->
getNewTempFile
();
$outFileName
=
$this
->
getNewTempFile
();
$dumpScript
->
loadParamsAndArgs
(
null
,
[
'log'
=>
$logFileName
,
'output'
=>
$outFileName
,
'format'
=>
'nt'
,
]
);
$dumpScript
->
execute
();
$actualOut
=
file_get_contents
(
$outFileName
);
$actualOut
=
preg_replace
(
'|<http://acme.test/wiki/Special:CategoryDump> <http://schema.org/dateModified> "[^"]+?"|'
,
'<http://acme.test/wiki/Special:CategoryDump> <http://schema.org/dateModified> "{DATE}"'
,
$actualOut
);
$outFile
=
__DIR__
.
'/../data/categoriesrdf/categoriesRdf-out.nt'
;
$this
->
assertFileContains
(
$outFile
,
$actualOut
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Fri, Jul 3, 16:23 (2 h, 49 m)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
a6/2c/15a0c7ae5a19a9dc7d9a50767080
Default Alt Text
CategoriesRdfTest.php (2 KB)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment