Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F4144089
PageCommandFactoryTest.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
3 KB
Referenced Files
None
Subscribers
None
PageCommandFactoryTest.php
View Options
<?php
namespace
MediaWiki\Tests\Unit\Page
;
use
MediaWiki\Config\HashConfig
;
use
MediaWiki\Content\ContentModelChange
;
use
MediaWiki\MainConfigNames
;
use
MediaWiki\Page\DeletePage
;
use
MediaWiki\Page\MergeHistory
;
use
MediaWiki\Page\MovePage
;
use
MediaWiki\Page\PageCommandFactory
;
use
MediaWiki\Page\PageIdentity
;
use
MediaWiki\Page\PageIdentityValue
;
use
MediaWiki\Page\ProperPageIdentity
;
use
MediaWiki\Page\RollbackPage
;
use
MediaWiki\Page\UndeletePage
;
use
MediaWiki\Permissions\Authority
;
use
MediaWiki\Tests\Unit\MockServiceDependenciesTrait
;
use
MediaWiki\Title\Title
;
use
MediaWiki\User\UserIdentity
;
use
MediaWikiUnitTestCase
;
/**
* @covers \MediaWiki\Page\PageCommandFactory
* @author DannyS712
*/
class
PageCommandFactoryTest
extends
MediaWikiUnitTestCase
{
use
MockServiceDependenciesTrait
;
private
function
getFactory
():
PageCommandFactory
{
// Create a PageCommandFactory with all of the services needed
$config
=
new
HashConfig
(
[
// RollbackPage
MainConfigNames
::
UseRCPatrol
=>
true
,
MainConfigNames
::
DisableAnonTalk
=>
false
,
// MovePage
MainConfigNames
::
CategoryCollation
=>
'uppercase'
,
MainConfigNames
::
MaximumMovedPages
=>
100
,
// DeletePage
MainConfigNames
::
DeleteRevisionsBatchSize
=>
10
,
MainConfigNames
::
DeleteRevisionsLimit
=>
10
,
]
);
// Helper method from MockServiceDependenciesTrait
return
$this
->
newServiceInstance
(
PageCommandFactory
::
class
,
[
'config'
=>
$config
,
]
);
}
public
function
testContentModelChange
()
{
$contentModelChange
=
$this
->
getFactory
()->
newContentModelChange
(
$this
->
createMock
(
Authority
::
class
),
$this
->
createMock
(
PageIdentity
::
class
),
CONTENT_MODEL_TEXT
);
$this
->
assertInstanceOf
(
ContentModelChange
::
class
,
$contentModelChange
,
'Creating ContentModelChange works'
);
}
public
function
testDeletePage
()
{
$page
=
$this
->
createMock
(
ProperPageIdentity
::
class
);
$page
->
method
(
'canExist'
)->
willReturn
(
true
);
$this
->
assertInstanceOf
(
DeletePage
::
class
,
$this
->
getFactory
()->
newDeletePage
(
$page
,
$this
->
createMock
(
Authority
::
class
)
)
);
}
public
function
testMergeHistory
()
{
$mergeHistory
=
$this
->
getFactory
()->
newMergeHistory
(
PageIdentityValue
::
localIdentity
(
1
,
NS_MAIN
,
'Source'
),
PageIdentityValue
::
localIdentity
(
2
,
NS_MAIN
,
'Dest'
),
null
// $timestamp
);
$this
->
assertInstanceOf
(
MergeHistory
::
class
,
$mergeHistory
,
'Creating MergeHistory works'
);
}
public
function
testMovePage
()
{
$movePage
=
$this
->
getFactory
()->
newMovePage
(
$this
->
createNoOpMock
(
Title
::
class
),
$this
->
createNoOpMock
(
Title
::
class
)
);
$this
->
assertInstanceOf
(
MovePage
::
class
,
$movePage
,
'Creating MovePage works'
);
}
public
function
testRollbackPage
()
{
$rollbackPage
=
$this
->
getFactory
()->
newRollbackPage
(
$this
->
createMock
(
PageIdentity
::
class
),
$this
->
createMock
(
Authority
::
class
),
$this
->
createMock
(
UserIdentity
::
class
)
);
$this
->
assertInstanceOf
(
RollbackPage
::
class
,
$rollbackPage
,
'Creating RollbackPage works'
);
}
public
function
testUndeletePage
()
{
$undeletePage
=
$this
->
getFactory
()->
newUndeletePage
(
$this
->
createMock
(
ProperPageIdentity
::
class
),
$this
->
createMock
(
Authority
::
class
)
);
$this
->
assertInstanceOf
(
UndeletePage
::
class
,
$undeletePage
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Aug 19 2026, 17:04 (4 w, 5 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
3f/2b/dea92a3de39349bbce8afc7727a7
Default Alt Text
PageCommandFactoryTest.php (3 KB)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment