wiki.techinc.nl/tests/phpunit/includes/rcfeed/RCFeedIntegrationTest.php
Timo Tijhof f8ecea1e5c rcfeed: Deprecate $wgRCEngines and RCFeedEngine
Follows-up 39a6e3dc4d (I8be497c623c5d92).

* Improve documentation all around and advertise 'class'
  everywhere instead of 'uri'.

* Add test coverage for RCFeed::factory().

* Deprecate the $wgRCEngines "uri to class" mapping in favour
  of specifying "class" directly in $wgRCFeeds.

* Deprecate RCFeedEngine in favour of FormattedRCFeed.
  Convert to class_alias so that UDPRCFeedEngine no longer has
  to extend the deprecated class name explicitly (for instanceof compat).

* Hard-deprecate RecentChange::getEngine.

Bug: T250628
Depends-On: Ie939e1d06b9ee2d841ec7256c8d24cc4e7e386dd
Change-Id: Ib6758d724c7200404c89c7ab157aa55f1cad9763
2022-03-08 19:50:19 +00:00

96 lines
2.3 KiB
PHP

<?php
/**
* @group medium
* @group Database
* @covers FormattedRCFeed
* @covers RecentChange
* @covers JSONRCFeedFormatter
* @covers MachineReadableRCFeedFormatter
* @covers RCFeed
*/
class RCFeedIntegrationTest extends MediaWikiIntegrationTestCase {
protected function setUp(): void {
parent::setUp();
$this->setMwGlobals( [
'wgCanonicalServer' => 'https://example.org',
'wgServerName' => 'example.org',
'wgScriptPath' => '/w',
'wgDBname' => 'example',
'wgDBprefix' => $this->dbPrefix(),
'wgRCFeeds' => [],
'wgRCEngines' => [],
] );
}
public function testNotify() {
$feed = $this->getMockBuilder( FormattedRCFeed::class )
->setConstructorArgs( [ [ 'formatter' => JSONRCFeedFormatter::class ] ] )
->onlyMethods( [ 'send' ] )
->getMock();
$feed->method( 'send' )
->willReturn( true );
$feed->expects( $this->once() )
->method( 'send' )
->with( $this->anything(), $this->callback( function ( $line ) {
$this->assertJsonStringEqualsJsonString(
json_encode( [
'id' => null,
'type' => 'log',
'namespace' => 0,
'title' => 'Example',
'comment' => '',
'timestamp' => 1301644800,
'user' => 'UTSysop',
'bot' => false,
'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-' . $this->dbPrefix(),
] ),
$line
);
return true;
} ) );
$this->setMwGlobals( [
'wgRCFeeds' => [
'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();
}
}