mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-28 01:30:15 +00:00
713f60aaa5
Use mocks when possible, and add the test to the Database group otherwise. Also rename 2 test files to avoid a PHPUnit deprecation of file name not matching class name. Change-Id: I16b2392daf01f63511c82b4ed0e67a38e35ddbe1
68 lines
2 KiB
PHP
68 lines
2 KiB
PHP
<?php
|
|
|
|
/**
|
|
* @group medium
|
|
* @group API
|
|
* @group Database
|
|
* @covers \MediaWiki\Extension\Notifications\Api\ApiEchoNotifications
|
|
*/
|
|
class ApiEchoNotificationsTest extends ApiTestCase {
|
|
|
|
public function testWithSectionGrouping() {
|
|
// Grouping by section
|
|
$data = $this->doApiRequest( [
|
|
'action' => 'query',
|
|
'meta' => 'notifications',
|
|
'notsections' => 'alert|message',
|
|
'notgroupbysection' => 1,
|
|
'notlimit' => 10,
|
|
'notprop' => 'list|count' ] );
|
|
|
|
$this->assertArrayHasKey( 'query', $data[0] );
|
|
$this->assertArrayHasKey( 'notifications', $data[0]['query'] );
|
|
|
|
$result = $data[0]['query']['notifications'];
|
|
|
|
// General count
|
|
$this->assertArrayHasKey( 'count', $result );
|
|
$this->assertArrayHasKey( 'rawcount', $result );
|
|
|
|
$this->assertArrayHasKey( 'alert', $result );
|
|
$alert = $result['alert'];
|
|
$this->assertArrayHasKey( 'list', $alert );
|
|
$this->assertArrayHasKey( 'continue', $alert );
|
|
$this->assertArrayHasKey( 'rawcount', $alert );
|
|
$this->assertArrayHasKey( 'count', $alert );
|
|
|
|
$this->assertArrayHasKey( 'message', $result );
|
|
$message = $result['message'];
|
|
$this->assertArrayHasKey( 'list', $message );
|
|
$this->assertArrayHasKey( 'continue', $message );
|
|
$this->assertArrayHasKey( 'rawcount', $message );
|
|
$this->assertArrayHasKey( 'count', $message );
|
|
}
|
|
|
|
public function testWithoutSectionGrouping() {
|
|
$data = $this->doApiRequest( [
|
|
'action' => 'query',
|
|
'meta' => 'notifications',
|
|
'notsections' => 'alert|message',
|
|
'notlimit' => 10,
|
|
'notprop' => 'list|count' ] );
|
|
|
|
$this->assertArrayHasKey( 'query', $data[0] );
|
|
$this->assertArrayHasKey( 'notifications', $data[0]['query'] );
|
|
|
|
$result = $data[0]['query']['notifications'];
|
|
|
|
$this->assertArrayHasKey( 'count', $result );
|
|
$this->assertArrayHasKey( 'rawcount', $result );
|
|
$this->assertArrayHasKey( 'list', $result );
|
|
$this->assertArrayHasKey( 'continue', $result );
|
|
|
|
$this->assertTrue( !isset( $result['alert'] ) );
|
|
$this->assertTrue( !isset( $result['message'] ) );
|
|
}
|
|
|
|
}
|