259 lines
6.2 KiB
PHP
259 lines
6.2 KiB
PHP
<?php
|
|
|
|
namespace SMW\Tests;
|
|
|
|
use SMW\DependencyValidator;
|
|
use SMW\DIWikiPage;
|
|
|
|
/**
|
|
* @covers \SMW\DependencyValidator
|
|
* @group semantic-mediawiki
|
|
*
|
|
* @license GPL-2.0-or-later
|
|
* @since 3.1
|
|
*
|
|
* @author mwjames
|
|
*/
|
|
class DependencyValidatorTest extends \PHPUnit\Framework\TestCase {
|
|
|
|
private $testEnvironment;
|
|
private $dependencyLinksValidator;
|
|
private $namespaceExaminer;
|
|
private $entityCache;
|
|
private $logger;
|
|
|
|
protected function setUp(): void {
|
|
parent::setUp();
|
|
|
|
$this->testEnvironment = new TestEnvironment();
|
|
|
|
$this->dependencyLinksValidator = $this->getMockBuilder( '\SMW\SQLStore\QueryDependency\DependencyLinksValidator' )
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
|
|
$this->namespaceExaminer = $this->getMockBuilder( '\SMW\NamespaceExaminer' )
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
|
|
$this->entityCache = $this->getMockBuilder( '\SMW\EntityCache' )
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
|
|
$this->logger = $this->getMockBuilder( '\Psr\Log\LoggerInterface' )
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
}
|
|
|
|
protected function tearDown(): void {
|
|
$this->testEnvironment->tearDown();
|
|
parent::tearDown();
|
|
}
|
|
|
|
public function testCanConstruct() {
|
|
$this->assertInstanceOf(
|
|
DependencyValidator::class,
|
|
new DependencyValidator( $this->namespaceExaminer, $this->dependencyLinksValidator, $this->entityCache )
|
|
);
|
|
}
|
|
|
|
public function testHasArchaicDependencies() {
|
|
$this->namespaceExaminer->expects( $this->once() )
|
|
->method( 'isSemanticEnabled' )
|
|
->willReturn( true );
|
|
|
|
$this->entityCache->expects( $this->once() )
|
|
->method( 'overrideSub' )
|
|
->with(
|
|
$this->stringContains( 'smw:entity:2623cc3534dff8ce37b7b27e1b009a96' ),
|
|
$this->stringContains( 'foo-etag' ) );
|
|
|
|
$eventDispatcher = $this->getMockBuilder( '\Onoi\EventDispatcher\EventDispatcher' )
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
|
|
$eventDispatcher->expects( $this->once() )
|
|
->method( 'dispatch' )
|
|
->with( 'InvalidateResultCache' );
|
|
|
|
$subject = DIWikiPage::newFromText( 'Foo' );
|
|
|
|
$this->dependencyLinksValidator->expects( $this->once() )
|
|
->method( 'canCheckDependencies' )
|
|
->willReturn( true );
|
|
|
|
$this->dependencyLinksValidator->expects( $this->once() )
|
|
->method( 'hasArchaicDependencies' )
|
|
->with( $subject )
|
|
->willReturn( true );
|
|
|
|
$this->dependencyLinksValidator->expects( $this->once() )
|
|
->method( 'getCheckedDependencies' )
|
|
->willReturn( [] );
|
|
|
|
$instance = new DependencyValidator(
|
|
$this->namespaceExaminer,
|
|
$this->dependencyLinksValidator,
|
|
$this->entityCache
|
|
);
|
|
|
|
$instance->setETag( 'foo-etag' );
|
|
|
|
$instance->setEventDispatcher(
|
|
$eventDispatcher
|
|
);
|
|
|
|
$this->assertTrue(
|
|
$instance->hasArchaicDependencies( $subject )
|
|
);
|
|
}
|
|
|
|
public function testHasNoArchaicDependencies() {
|
|
$this->namespaceExaminer->expects( $this->once() )
|
|
->method( 'isSemanticEnabled' )
|
|
->willReturn( true );
|
|
|
|
$this->entityCache->expects( $this->never() )
|
|
->method( 'overrideSub' );
|
|
|
|
$subject = DIWikiPage::newFromText( 'Foo' );
|
|
|
|
$this->dependencyLinksValidator->expects( $this->once() )
|
|
->method( 'canCheckDependencies' )
|
|
->willReturn( true );
|
|
|
|
$this->dependencyLinksValidator->expects( $this->once() )
|
|
->method( 'hasArchaicDependencies' )
|
|
->with( $subject )
|
|
->willReturn( false );
|
|
|
|
$instance = new DependencyValidator(
|
|
$this->namespaceExaminer,
|
|
$this->dependencyLinksValidator,
|
|
$this->entityCache
|
|
);
|
|
|
|
$instance->setETag( 'foo-etag' );
|
|
|
|
$this->assertFalse(
|
|
$instance->hasArchaicDependencies( $subject )
|
|
);
|
|
}
|
|
|
|
public function testHasNoArchaicDependencies_DisabledNamespace() {
|
|
$this->namespaceExaminer->expects( $this->once() )
|
|
->method( 'isSemanticEnabled' )
|
|
->willReturn( false );
|
|
|
|
$this->entityCache->expects( $this->never() )
|
|
->method( 'overrideSub' );
|
|
|
|
$subject = DIWikiPage::newFromText( 'Foo' );
|
|
|
|
$instance = new DependencyValidator(
|
|
$this->namespaceExaminer,
|
|
$this->dependencyLinksValidator,
|
|
$this->entityCache
|
|
);
|
|
|
|
$instance->setETag( 'foo-etag' );
|
|
|
|
$this->assertFalse(
|
|
$instance->hasArchaicDependencies( $subject )
|
|
);
|
|
}
|
|
|
|
public function testMarkTitle() {
|
|
$subject = DIWikiPage::newFromText( 'Foo' );
|
|
$title = $subject->getTitle();
|
|
|
|
$instance = new DependencyValidator(
|
|
$this->namespaceExaminer,
|
|
$this->dependencyLinksValidator,
|
|
$this->entityCache
|
|
);
|
|
|
|
$instance->markTitle( $title );
|
|
|
|
$this->assertTrue(
|
|
$instance->hasLikelyOutdatedDependencies( $title )
|
|
);
|
|
}
|
|
|
|
public function testCanKeepParserCache_NoCache() {
|
|
$this->entityCache->expects( $this->once() )
|
|
->method( 'contains' )
|
|
->willReturn( false );
|
|
|
|
$this->entityCache->expects( $this->never() )
|
|
->method( 'fetchSub' );
|
|
|
|
$subject = DIWikiPage::newFromText( 'Foo' );
|
|
|
|
$instance = new DependencyValidator(
|
|
$this->namespaceExaminer,
|
|
$this->dependencyLinksValidator,
|
|
$this->entityCache
|
|
);
|
|
|
|
$this->assertTrue(
|
|
$instance->canKeepParserCache( $subject )
|
|
);
|
|
}
|
|
|
|
public function testCanKeepParserCache_NoCacheOnFetch() {
|
|
$this->entityCache->expects( $this->once() )
|
|
->method( 'contains' )
|
|
->willReturn( true );
|
|
|
|
$this->entityCache->expects( $this->once() )
|
|
->method( 'fetchSub' )
|
|
->with( $this->stringContains( 'smw:entity:2623cc3534dff8ce37b7b27e1b009a96' ) )
|
|
->willReturn( true );
|
|
|
|
$subject = DIWikiPage::newFromText( 'Foo' );
|
|
|
|
$instance = new DependencyValidator(
|
|
$this->namespaceExaminer,
|
|
$this->dependencyLinksValidator,
|
|
$this->entityCache
|
|
);
|
|
|
|
$instance->setETag( 'foo-etag' );
|
|
|
|
$this->assertTrue(
|
|
$instance->canKeepParserCache( $subject )
|
|
);
|
|
}
|
|
|
|
public function testCanNotKeepParserCache() {
|
|
$this->entityCache->expects( $this->once() )
|
|
->method( 'contains' )
|
|
->willReturn( true );
|
|
|
|
$this->entityCache->expects( $this->once() )
|
|
->method( 'fetchSub' )
|
|
->willReturn( false );
|
|
|
|
$this->entityCache->expects( $this->once() )
|
|
->method( 'saveSub' )
|
|
->with(
|
|
$this->stringContains( 'smw:entity:2623cc3534dff8ce37b7b27e1b009a96' ),
|
|
$this->stringContains( 'foo-etag' ) );
|
|
|
|
$subject = DIWikiPage::newFromText( 'Foo' );
|
|
|
|
$instance = new DependencyValidator(
|
|
$this->namespaceExaminer,
|
|
$this->dependencyLinksValidator,
|
|
$this->entityCache
|
|
);
|
|
|
|
$instance->setETag( 'foo-etag' );
|
|
|
|
$this->assertFalse(
|
|
$instance->canKeepParserCache( $subject )
|
|
);
|
|
}
|
|
|
|
}
|