122 lines
2.6 KiB
PHP
122 lines
2.6 KiB
PHP
<?php
|
|
|
|
namespace SMW\Tests\Constraint;
|
|
|
|
use SMW\Constraint\Constraint;
|
|
use SMW\Constraint\ConstraintCheckRunner;
|
|
use SMW\Schema\SchemaDefinition;
|
|
|
|
/**
|
|
* @covers \SMW\Constraint\ConstraintCheckRunner
|
|
* @group semantic-mediawiki
|
|
*
|
|
* @license GPL-2.0-or-later
|
|
* @since 3.1
|
|
*
|
|
* @author mwjames
|
|
*/
|
|
class ConstraintCheckRunnerTest extends \PHPUnit\Framework\TestCase {
|
|
|
|
private $constraintRegistry;
|
|
|
|
protected function setUp(): void {
|
|
$this->constraintRegistry = $this->getMockBuilder( '\SMW\Constraint\ConstraintRegistry' )
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
}
|
|
|
|
public function testCanConstruct() {
|
|
$this->assertInstanceOf(
|
|
ConstraintCheckRunner::class,
|
|
new ConstraintCheckRunner( $this->constraintRegistry )
|
|
);
|
|
}
|
|
|
|
public function testCheck_Instance() {
|
|
$constraint = $this->getMockBuilder( '\SMW\Constraint\Constraint' )
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
|
|
$constraint->expects( $this->atLeastOnce() )
|
|
->method( 'getType' )
|
|
->willReturn( Constraint::TYPE_INSTANT );
|
|
|
|
$constraint->expects( $this->atLeastOnce() )
|
|
->method( 'checkConstraint' )
|
|
->with(
|
|
[ 'foo_bar' => [] ],
|
|
'__value__' )
|
|
->willReturn( false );
|
|
|
|
$constraint->expects( $this->atLeastOnce() )
|
|
->method( 'hasViolation' )
|
|
->willReturn( true );
|
|
|
|
$this->constraintRegistry->expects( $this->atLeastOnce() )
|
|
->method( 'getConstraintByKey' )
|
|
->with( 'foo_bar' )
|
|
->willReturn( $constraint );
|
|
|
|
$instance = new ConstraintCheckRunner(
|
|
$this->constraintRegistry
|
|
);
|
|
|
|
$data = [
|
|
'constraints' => [
|
|
'foo_bar' => []
|
|
]
|
|
];
|
|
|
|
$this->assertFalse(
|
|
$instance->hasViolation()
|
|
);
|
|
|
|
$instance->load( '_FOO', new SchemaDefinition( 'test', $data ) );
|
|
$instance->check( '__value__' );
|
|
|
|
$this->assertTrue(
|
|
$instance->hasViolation()
|
|
);
|
|
}
|
|
|
|
public function testCheck_Deferred() {
|
|
$constraint = $this->getMockBuilder( '\SMW\Constraint\Constraint' )
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
|
|
$constraint->expects( $this->atLeastOnce() )
|
|
->method( 'getType' )
|
|
->willReturn( Constraint::TYPE_DEFERRED );
|
|
|
|
$constraint->expects( $this->never() )
|
|
->method( 'checkConstraint' );
|
|
|
|
$this->constraintRegistry->expects( $this->atLeastOnce() )
|
|
->method( 'getConstraintByKey' )
|
|
->with( 'foo_bar' )
|
|
->willReturn( $constraint );
|
|
|
|
$instance = new ConstraintCheckRunner(
|
|
$this->constraintRegistry
|
|
);
|
|
|
|
$data = [
|
|
'constraints' => [
|
|
'foo_bar' => []
|
|
]
|
|
];
|
|
|
|
$this->assertFalse(
|
|
$instance->hasDeferrableConstraint()
|
|
);
|
|
|
|
$instance->load( '_FOO', new SchemaDefinition( 'test', $data ) );
|
|
$instance->check( '__value__' );
|
|
|
|
$this->assertTrue(
|
|
$instance->hasDeferrableConstraint()
|
|
);
|
|
}
|
|
|
|
}
|