Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F4128160
EchoNotifierTest.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
EchoNotifierTest.php
View Options
<?php
namespace
MediaWiki\Extension\AbuseFilter\Tests\Integration
;
use
MediaWiki\Extension\AbuseFilter\Consequences\ConsequencesRegistry
;
use
MediaWiki\Extension\AbuseFilter\EchoNotifier
;
use
MediaWiki\Extension\AbuseFilter\Filter\ExistingFilter
;
use
MediaWiki\Extension\AbuseFilter\FilterLookup
;
use
MediaWiki\Extension\Notifications\Model\Event
;
use
MediaWiki\Title\Title
;
use
MediaWikiIntegrationTestCase
;
/**
* @group Database
* @covers \MediaWiki\Extension\AbuseFilter\EchoNotifier
*/
class
EchoNotifierTest
extends
MediaWikiIntegrationTestCase
{
private
const
USER_IDS
=
[
'1'
=>
1
,
'2'
=>
42
,
];
private
function
getFilterLookup
(
?
int
$userID
=
null
):
FilterLookup
{
$lookup
=
$this
->
createMock
(
FilterLookup
::
class
);
$lookup
->
method
(
'getFilter'
)
->
willReturnCallback
(
function
(
$filter
,
$global
)
use
(
$userID
)
{
$userID
??=
self
::
USER_IDS
[
$global
?
"global-$filter"
:
$filter
]
??
0
;
$filterObj
=
$this
->
createMock
(
ExistingFilter
::
class
);
$filterObj
->
method
(
'getUserID'
)->
willReturn
(
$userID
);
return
$filterObj
;
}
);
return
$lookup
;
}
public
static
function
provideDataForEvent
():
array
{
return
[
[
true
,
1
,
1
],
[
true
,
2
,
42
],
[
false
,
1
,
1
],
[
false
,
2
,
42
],
];
}
/**
* @dataProvider provideDataForEvent
*/
public
function
testGetDataForEvent
(
bool
$loaded
,
int
$filter
,
int
$userID
)
{
$expectedThrottledActions
=
[];
$notifier
=
new
EchoNotifier
(
$this
->
getFilterLookup
(),
$this
->
createMock
(
ConsequencesRegistry
::
class
),
$loaded
);
[
'type'
=>
$type
,
'title'
=>
$title
,
'extra'
=>
$extra
]
=
$notifier
->
getDataForEvent
(
$filter
);
$this
->
assertSame
(
EchoNotifier
::
EVENT_TYPE
,
$type
);
$this
->
assertInstanceOf
(
Title
::
class
,
$title
);
$this
->
assertSame
(
-
1
,
$title
->
getNamespace
()
);
[
,
$subpage
]
=
explode
(
'/'
,
$title
->
getText
(),
2
);
$this
->
assertSame
(
(
string
)
$filter
,
$subpage
);
$this
->
assertSame
(
[
'user'
=>
$userID
,
'throttled-actions'
=>
$expectedThrottledActions
],
$extra
);
}
public
function
testNotifyForFilter
()
{
$this
->
markTestSkippedIfExtensionNotLoaded
(
'Echo'
);
// Use a real user, or Echo will throw an exception.
$user
=
$this
->
getTestUser
()->
getUserIdentity
();
$notifier
=
new
EchoNotifier
(
$this
->
getFilterLookup
(
$user
->
getId
()
),
$this
->
createMock
(
ConsequencesRegistry
::
class
),
true
);
$this
->
assertInstanceOf
(
Event
::
class
,
$notifier
->
notifyForFilter
(
1
)
);
}
public
function
testNotifyForFilter_EchoNotLoaded
()
{
$lookup
=
$this
->
createMock
(
FilterLookup
::
class
);
$lookup
->
expects
(
$this
->
never
()
)->
method
(
$this
->
anything
()
);
$notifier
=
new
EchoNotifier
(
$lookup
,
$this
->
createMock
(
ConsequencesRegistry
::
class
),
false
);
$this
->
assertFalse
(
$notifier
->
notifyForFilter
(
1
)
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Wed, Aug 19, 09:06 (2 w, 3 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
65/ee/4ac49cc5dd07512f62a0a233399e
Default Alt Text
EchoNotifierTest.php (2 KB)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment