Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F4108819
RCFeedIntegrationTest.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
RCFeedIntegrationTest.php
View Options
<?php
use
MediaWiki\MainConfigNames
;
use
MediaWiki\RCFeed\FormattedRCFeed
;
use
MediaWiki\RCFeed\JSONRCFeedFormatter
;
use
MediaWiki\SpecialPage\SpecialPage
;
use
MediaWiki\Title\Title
;
/**
* @group medium
* @group Database
* @covers \MediaWiki\RCFeed\FormattedRCFeed
* @covers \RecentChange
* @covers \MediaWiki\RCFeed\JSONRCFeedFormatter
* @covers \MediaWiki\RCFeed\MachineReadableRCFeedFormatter
* @covers \MediaWiki\RCFeed\RCFeed
*/
class
RCFeedIntegrationTest
extends
MediaWikiIntegrationTestCase
{
protected
function
setUp
():
void
{
parent
::
setUp
();
$this
->
overrideConfigValues
(
[
MainConfigNames
::
CanonicalServer
=>
'https://example.org'
,
MainConfigNames
::
ServerName
=>
'example.org'
,
MainConfigNames
::
ScriptPath
=>
'/w'
,
MainConfigNames
::
Script
=>
'/w/index.php'
,
MainConfigNames
::
DBname
=>
'example'
,
MainConfigNames
::
DBprefix
=>
self
::
dbPrefix
(),
MainConfigNames
::
RCFeeds
=>
[],
MainConfigNames
::
RCEngines
=>
[],
]
);
}
public
function
testNotify
()
{
$feed
=
$this
->
getMockBuilder
(
FormattedRCFeed
::
class
)
->
setConstructorArgs
(
[
[
'formatter'
=>
JSONRCFeedFormatter
::
class
]
]
)
->
onlyMethods
(
[
'send'
]
)
->
getMock
();
$feed
->
expects
(
$this
->
once
()
)
->
method
(
'send'
)
->
willReturn
(
true
)
->
with
(
$this
->
anything
(),
$this
->
callback
(
function
(
$line
)
{
$this
->
assertJsonStringEqualsJsonString
(
json_encode
(
[
'id'
=>
null
,
'type'
=>
'log'
,
'namespace'
=>
0
,
'title'
=>
'Example'
,
'title_url'
=>
'https://example.org/wiki/Example'
,
'comment'
=>
''
,
'timestamp'
=>
1301644800
,
'user'
=>
'UTSysop'
,
'bot'
=>
false
,
'notify_url'
=>
null
,
'log_id'
=>
0
,
'log_type'
=>
'move'
,
'log_action'
=>
'move'
,
'log_params'
=>
[
'color'
=>
'green'
,
'nr'
=>
42
,
'pet'
=>
'cat'
,
],
'log_action_comment'
=>
''
,
'server_url'
=>
'https://example.org'
,
'server_name'
=>
'example.org'
,
'server_script_path'
=>
'/w'
,
'wiki'
=>
'example-'
.
self
::
dbPrefix
(),
]
),
$line
);
return
true
;
}
)
);
$this
->
overrideConfigValue
(
MainConfigNames
::
RCFeeds
,
[
'myfeed'
=>
[
'class'
=>
$feed
,
'uri'
=>
'test://localhost:1234'
,
'formatter'
=>
JSONRCFeedFormatter
::
class
,
],
]
);
$logpage
=
SpecialPage
::
getTitleFor
(
'Log'
,
'move'
);
$user
=
$this
->
getTestSysop
()->
getUser
();
$rc
=
RecentChange
::
newLogEntry
(
'20110401080000'
,
$logpage
,
// &$title
$user
,
// &$user
''
,
// $actionComment
'127.0.0.1'
,
// $ip
'move'
,
// $type
'move'
,
// $action
Title
::
makeTitle
(
0
,
'Example'
),
// $target
''
,
// $logComment
LogEntryBase
::
makeParamBlob
(
[
'4::color'
=>
'green'
,
'5:number:nr'
=>
42
,
'pet'
=>
'cat'
,
]
)
);
$rc
->
notifyRCFeeds
();
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Tue, Aug 18, 20:44 (2 w, 2 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
c4/08/58888925fb1d9b2104ed706d4e8a
Default Alt Text
RCFeedIntegrationTest.php (2 KB)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment