Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F4130459
ApiCoreThankUnitTest.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
ApiCoreThankUnitTest.php
View Options
<?php
use
MediaWiki\Api\ApiMain
;
use
MediaWiki\Block\DatabaseBlock
;
use
MediaWiki\Extension\Thanks\Api\ApiCoreThank
;
use
MediaWiki\Tests\Api\ApiTestCase
;
use
MediaWiki\User\User
;
use
MediaWiki\User\UserIdentityValue
;
/**
* Unit tests for the Thanks API module
*
* @group Thanks
* @group API
* @group Database
*
* @author Addshore
*/
class
ApiCoreThankUnitTest
extends
ApiTestCase
{
protected
function
getModule
()
{
$services
=
$this
->
getServiceContainer
();
return
new
ApiCoreThank
(
new
ApiMain
(),
'thank'
,
$services
->
getPermissionManager
(),
$services
->
getRevisionStore
(),
$services
->
getUserFactory
(),
$services
->
getService
(
'ThanksLogStore'
)
);
}
private
static
function
createBlock
(
$options
)
{
$options
=
array_merge
(
[
'address'
=>
'Test user'
,
'by'
=>
new
UserIdentityValue
(
1
,
'TestUser'
),
'reason'
=>
__METHOD__
,
'timestamp'
=>
wfTimestamp
(
TS_MW
),
'expiry'
=>
'infinity'
,
],
$options
);
return
new
DatabaseBlock
(
$options
);
}
/**
* @dataProvider provideDieOnBadUser
* @covers \MediaWiki\Extension\Thanks\Api\ApiThank::dieOnBadUser
* @covers \MediaWiki\Extension\Thanks\Api\ApiThank::dieOnUserBlockedFromThanks
*/
public
function
testDieOnBadUser
(
$mockisNamed
,
$mockPingLimited
,
$mockBlock
,
$dieMethod
,
$expectedError
)
{
$user
=
$this
->
createMock
(
User
::
class
);
if
(
$mockisNamed
!==
null
)
{
$user
->
expects
(
$this
->
once
()
)
->
method
(
'isNamed'
)
->
willReturn
(
$mockisNamed
);
}
if
(
$mockPingLimited
!==
null
)
{
$user
->
expects
(
$this
->
once
()
)
->
method
(
'pingLimiter'
)
->
willReturn
(
$mockPingLimited
);
}
if
(
$mockBlock
!==
null
)
{
$user
->
expects
(
$this
->
once
()
)
->
method
(
'getBlock'
)
->
willReturn
(
$mockBlock
);
}
$module
=
$this
->
getModule
();
$method
=
new
ReflectionMethod
(
$module
,
$dieMethod
);
$method
->
setAccessible
(
true
);
if
(
$expectedError
)
{
$this
->
expectApiErrorCode
(
$expectedError
);
}
$method
->
invoke
(
$module
,
$user
);
// perhaps the method should return true.. For now we must do this
$this
->
assertTrue
(
true
);
}
public
static
function
provideDieOnBadUser
()
{
return
[
'anon'
=>
[
false
,
null
,
null
,
'dieOnBadUser'
,
'notloggedin'
],
'ping'
=>
[
true
,
true
,
null
,
'dieOnBadUser'
,
'ratelimited'
],
'sitewide blocked'
=>
[
null
,
null
,
self
::
createBlock
(
[]
),
'dieOnUserBlockedFromThanks'
,
'blocked'
],
'partial blocked'
=>
[
null
,
null
,
self
::
createBlock
(
[
'sitewide'
=>
false
]
),
'dieOnUserBlockedFromThanks'
,
false
],
];
}
// @todo test userAlreadySentThanksForRevision
// @todo test getRevisionFromParams
// @todo test getTitleFromRevision
// @todo test getSourceFromParams
// @todo test getUserIdFromRevision
// @todo test markResultSuccess
// @todo test sendThanks
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Wed, Aug 19, 10:24 (2 w, 6 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
aa/19/da5e6d38086811b279172275794c
Default Alt Text
ApiCoreThankUnitTest.php (2 KB)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment