Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F4108585
ApiQueryBlockInfoTraitTest.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
ApiQueryBlockInfoTraitTest.php
View Options
<?php
namespace
MediaWiki\Tests\Api\Query
;
use
MediaWiki\Api\ApiQueryBase
;
use
MediaWiki\Api\ApiQueryBlockInfoTrait
;
use
MediaWiki\Tests\MockDatabase
;
use
MediaWiki\Tests\Unit\Permissions\MockAuthorityTrait
;
use
MediaWikiIntegrationTestCase
;
use
Wikimedia\TestingAccessWrapper
;
use
Wikimedia\Timestamp\ConvertibleTimestamp
;
/**
* @covers \MediaWiki\Api\ApiQueryBlockInfoTrait
*/
class
ApiQueryBlockInfoTraitTest
extends
MediaWikiIntegrationTestCase
{
use
MockAuthorityTrait
;
public
function
testUsesApiBlockInfoTrait
()
{
$this
->
assertTrue
(
method_exists
(
ApiQueryBlockInfoTrait
::
class
,
'getBlockDetails'
),
'ApiQueryBlockInfoTrait::getBlockDetails exists'
);
}
/**
* @dataProvider provideAddDeletedUserFilter
*/
public
function
testAddDeletedUserFilter
(
$isAllowed
,
$expect
)
{
// Fake timestamp to show up in the queries
ConvertibleTimestamp
::
setFakeTime
(
'20190101000000'
);
$authority
=
$this
->
mockRegisteredAuthorityWithPermissions
(
$isAllowed
?
[
'hideuser'
]
:
[]
);
$db
=
new
MockDatabase
;
$queryBuilder
=
$db
->
newSelectQueryBuilder
()
->
from
(
'table'
);
$mock
=
$this
->
getMockBuilder
(
ApiQueryBase
::
class
)
->
disableOriginalConstructor
()
->
onlyMethods
(
[
'getQueryBuilder'
,
'getDB'
,
'getAuthority'
]
)
->
getMockForAbstractClass
();
$mock
->
method
(
'getQueryBuilder'
)->
willReturn
(
$queryBuilder
);
$mock
->
method
(
'getDB'
)->
willReturn
(
new
MockDatabase
);
$mock
->
method
(
'getAuthority'
)->
willReturn
(
$authority
);
TestingAccessWrapper
::
newFromObject
(
$mock
)->
addDeletedUserFilter
();
$data
=
$queryBuilder
->
getQueryInfo
();
$this
->
assertSame
(
$expect
,
$data
);
}
public
static
function
provideAddDeletedUserFilter
()
{
return
[
'unauthorized'
=>
[
false
,
[
'tables'
=>
[
'table'
],
'fields'
=>
[
'hu_deleted'
=>
'1=0'
],
'conds'
=>
[
'(SELECT 1 FROM "block_target" "hu_block_target" '
.
'JOIN "block" "hu_block" ON ((hu_block.bl_target=hu_block_target.bt_id)) '
.
'WHERE (hu_block_target.bt_user=user_id) AND hu_block.bl_deleted = 1 ) IS NULL'
],
'options'
=>
[],
'join_conds'
=>
[],
],
],
'authorized'
=>
[
true
,
[
'tables'
=>
[
'table'
],
'fields'
=>
[
'hu_deleted'
=>
'(SELECT 1 FROM "block_target" "hu_block_target" '
.
'JOIN "block" "hu_block" ON ((hu_block.bl_target=hu_block_target.bt_id)) '
.
'WHERE (hu_block_target.bt_user=user_id) AND hu_block.bl_deleted = 1 ) IS NOT NULL'
],
'conds'
=>
[],
'options'
=>
[],
'join_conds'
=>
[]
],
],
];
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Tue, Aug 18, 20:38 (2 w, 2 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
b1/66/eb8babf95a88d53ff38f321ddd78
Default Alt Text
ApiQueryBlockInfoTraitTest.php (2 KB)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment