mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-25 00:05:29 +00:00
4dd2a651e1
Change-Id: I6a02902ffaa8a9b497d60b573a0b8e3dbc207ee5
74 lines
2.1 KiB
PHP
74 lines
2.1 KiB
PHP
<?php
|
|
|
|
/**
|
|
* @covers \EchoAbstractMapper
|
|
*/
|
|
class EchoAbstractMapperTest extends MediaWikiUnitTestCase {
|
|
|
|
/**
|
|
* @return array [ 'mapper' => EchoAbstractMapper, 'property' => ReflectionProperty ]
|
|
*/
|
|
public function testAttachListener() {
|
|
$mapper = new EchoAbstractMapperStub();
|
|
$mapper->attachListener( 'testMethod', 'key_a', static function () {
|
|
} );
|
|
|
|
$class = new ReflectionClass( EchoAbstractMapperStub::class );
|
|
$property = $class->getProperty( 'listeners' );
|
|
$property->setAccessible( true );
|
|
$listeners = $property->getValue( $mapper );
|
|
|
|
$this->assertArrayHasKey( 'testMethod', $listeners );
|
|
$this->assertArrayHasKey( 'key_a', $listeners['testMethod'] );
|
|
$this->assertIsCallable( $listeners['testMethod']['key_a'] );
|
|
|
|
return [ 'mapper' => $mapper, 'property' => $property ];
|
|
}
|
|
|
|
public function testAttachListenerWithException() {
|
|
$mapper = new EchoAbstractMapperStub();
|
|
$this->expectException( MWException::class );
|
|
$mapper->attachListener( 'nonExistingMethod', 'key_a', static function () {
|
|
} );
|
|
}
|
|
|
|
/**
|
|
* @depends testAttachListener
|
|
*/
|
|
public function testGetMethodListeners( $data ) {
|
|
/** @var EchoAbstractMapper $mapper */
|
|
$mapper = $data['mapper'];
|
|
|
|
$listeners = $mapper->getMethodListeners( 'testMethod' );
|
|
$this->assertArrayHasKey( 'key_a', $listeners );
|
|
$this->assertIsCallable( $listeners['key_a'] );
|
|
}
|
|
|
|
/**
|
|
* @depends testAttachListener
|
|
*/
|
|
public function testGetMethodListenersWithException( $data ) {
|
|
/** @var EchoAbstractMapper $mapper */
|
|
$mapper = $data['mapper'];
|
|
|
|
$this->expectException( MWException::class );
|
|
$mapper->getMethodListeners( 'nonExistingMethod' );
|
|
}
|
|
|
|
/**
|
|
* @depends testAttachListener
|
|
*/
|
|
public function testDetachListener( $data ) {
|
|
/** @var EchoAbstractMapper $mapper */
|
|
$mapper = $data['mapper'];
|
|
/** @var ReflectionProperty $property */
|
|
$property = $data['property'];
|
|
|
|
$mapper->detachListener( 'testMethod', 'key_a' );
|
|
$listeners = $property->getValue( $mapper );
|
|
$this->assertArrayHasKey( 'testMethod', $listeners );
|
|
$this->assertTrue( !isset( $listeners['testMethod']['key_a'] ) );
|
|
}
|
|
|
|
}
|