mediawiki-extensions-Echo/tests/phpunit/unit/Push/NotificationServiceClientUnitTest.php
Umherirrender 680e91c75c tests: Make PHPUnit data providers static
Initally used a new sniff with autofix (T333745)

Bug: T332865
Change-Id: I8b6fbfc300d62a10da770c8a1ca61756c7d7bf59
2023-05-20 20:36:33 +02:00

89 lines
2 KiB
PHP

<?php
use MediaWiki\Extension\Notifications\Push\NotificationServiceClient;
use MediaWiki\Extension\Notifications\Push\Subscription;
/** @covers \MediaWiki\Extension\Notifications\Push\NotificationServiceClient */
class NotificationServiceClientUnitTest extends MediaWikiUnitTestCase {
/**
* @dataProvider sendCheckEchoRequestsProvider
*/
public function testSendCheckEchoRequests( $numOfCalls, $subscriptions, $expected ): void {
$mock = $this->getMockBuilder( NotificationServiceClient::class )
->disableOriginalConstructor()
->onlyMethods( [ 'sendRequest' ] )
->getMock();
$mock->expects( $this->exactly( $numOfCalls ) )
->method( 'sendRequest' )
->withConsecutive( ...$expected );
$mock->sendCheckEchoRequests( $subscriptions );
}
public static function sendCheckEchoRequestsProvider(): array {
$row = (object)[
'eps_token' => 'JKL123',
'epp_name' => 'fcm',
'ept_text' => null,
'eps_updated' => '2020-01-01 10:10:10',
];
$subscriptions[] = Subscription::newFromRow( $row );
$row = (object)[
'eps_token' => 'DEF456',
'epp_name' => 'fcm',
'ept_text' => null,
'eps_updated' => '2020-01-01 10:10:10',
];
$subscriptions[] = Subscription::newFromRow( $row );
$row = (object)[
'eps_token' => 'GHI789',
'epp_name' => 'apns',
'ept_text' => 'test',
'eps_updated' => '2020-01-01 10:10:10',
];
$subscriptions[] = Subscription::newFromRow( $row );
return [
[
1,
[ $subscriptions[0], $subscriptions[1] ],
[
[
'fcm',
[
'deviceTokens' => [ "JKL123", 'DEF456' ],
'messageType' => 'checkEchoV1'
]
]
]
],
[
2,
$subscriptions,
[
[
'fcm',
[
'deviceTokens' => [ "JKL123", 'DEF456' ],
'messageType' => 'checkEchoV1'
]
],
[
'apns',
[
'deviceTokens' => [ 'GHI789' ],
'messageType' => 'checkEchoV1',
'topic' => 'test'
]
]
]
]
];
}
}