Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F4141138
SlotRoleHandlerTest.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
SlotRoleHandlerTest.php
View Options
<?php
namespace
MediaWiki\Tests\Revision
;
use
MediaWiki\Page\PageIdentityValue
;
use
MediaWiki\Revision\SlotRoleHandler
;
use
MediaWiki\Title\Title
;
/**
* @covers \MediaWiki\Revision\SlotRoleHandler
*/
class
SlotRoleHandlerTest
extends
\MediaWikiUnitTestCase
{
public
function
testConstruction
()
{
$handler
=
new
SlotRoleHandler
(
'foo'
,
'FooModel'
,
[
'frob'
=>
'niz'
]
);
$this
->
assertSame
(
'foo'
,
$handler
->
getRole
()
);
$this
->
assertSame
(
'slot-name-foo'
,
$handler
->
getNameMessageKey
()
);
$title
=
$this
->
createMock
(
Title
::
class
);
$this
->
assertSame
(
'FooModel'
,
$handler
->
getDefaultModel
(
$title
)
);
$hints
=
$handler
->
getOutputLayoutHints
();
$this
->
assertArrayHasKey
(
'frob'
,
$hints
);
$this
->
assertSame
(
'niz'
,
$hints
[
'frob'
]
);
$this
->
assertArrayHasKey
(
'display'
,
$hints
);
$this
->
assertArrayHasKey
(
'region'
,
$hints
);
$this
->
assertArrayHasKey
(
'placement'
,
$hints
);
}
public
function
testDerived
()
{
$handler
=
new
SlotRoleHandler
(
'foo'
,
'FooModel'
,
[
'frob'
=>
'niz'
]
);
$this
->
assertFalse
(
$handler
->
isDerived
()
);
$handler
=
new
SlotRoleHandler
(
'foo'
,
'FooModel'
,
[
'frob'
=>
'niz'
],
false
);
$this
->
assertFalse
(
$handler
->
isDerived
()
);
$handler
=
new
SlotRoleHandler
(
'foo'
,
'FooModel'
,
[
'frob'
=>
'niz'
],
true
);
$this
->
assertTrue
(
$handler
->
isDerived
()
);
}
public
function
testIsAllowedModel
()
{
$handler
=
new
SlotRoleHandler
(
'foo'
,
'FooModel'
);
$this
->
assertTrue
(
$handler
->
isAllowedModel
(
'FooModel'
,
PageIdentityValue
::
localIdentity
(
1
,
NS_MAIN
,
'Test'
)
)
);
$this
->
assertFalse
(
$handler
->
isAllowedModel
(
'QuaxModel'
,
PageIdentityValue
::
localIdentity
(
1
,
NS_MAIN
,
'Test'
)
)
);
}
public
function
testSupportsArticleCount
()
{
$handler
=
new
SlotRoleHandler
(
'foo'
,
'FooModel'
);
$this
->
assertFalse
(
$handler
->
supportsArticleCount
()
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Wed, Aug 19, 15:50 (3 w, 6 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
ee/65/f6ccedbcd1454e45b719582b510c
Default Alt Text
SlotRoleHandlerTest.php (1 KB)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment