mirror of
https://github.com/Codappix/search_core.git
synced 2024-11-22 04:16:12 +01:00
Merge pull request #143 from Codappix/feature/112-prevent-issue-with-non-uids
TASK: Prevent issue When hook is called with non uid
This commit is contained in:
commit
250a187cc6
2 changed files with 47 additions and 1 deletions
|
@ -72,7 +72,7 @@ class DataHandler implements Singleton
|
|||
/**
|
||||
* Called by CoreDataHandler on deletion of records.
|
||||
*/
|
||||
public function processCmdmap_deleteAction(string $table, int $uid) : bool
|
||||
public function processCmdmap_deleteAction(string $table, string $uid) : bool
|
||||
{
|
||||
if (! $this->shouldProcessHookForTable($table)) {
|
||||
$this->logger->debug('Delete not processed.', [$table, $uid]);
|
||||
|
@ -95,6 +95,10 @@ class DataHandler implements Singleton
|
|||
$uid = $dataHandler->substNEWwithIDs[$uid];
|
||||
}
|
||||
|
||||
if (!is_numeric($uid) || $uid <= 0) {
|
||||
continue;
|
||||
}
|
||||
|
||||
$this->processRecord($table, $uid);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -91,4 +91,46 @@ class DataHandlerToProcessorTest extends AbstractUnitTestCase
|
|||
],
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* @test
|
||||
*/
|
||||
public function indexingIsNotCalledForCacheClearIfDataIsInvalid()
|
||||
{
|
||||
$coreDataHandlerMock = $this->getMockBuilder(CoreDataHandler::class)->getMock();
|
||||
$ownDataHandlerMock = $this->getMockBuilder(OwnDataHandler::class)
|
||||
->disableOriginalConstructor()
|
||||
->getMock();
|
||||
|
||||
$subject = new DataHandler($ownDataHandlerMock);
|
||||
|
||||
$ownDataHandlerMock->expects($this->never())->method('update');
|
||||
|
||||
$subject->clearCachePostProc([
|
||||
'cacheCmd' => 'NEW343',
|
||||
], $coreDataHandlerMock);
|
||||
}
|
||||
/**
|
||||
* @test
|
||||
*/
|
||||
public function indexingIsNotCalledForProcessIfDataIsInvalid()
|
||||
{
|
||||
$coreDataHandlerMock = $this->getMockBuilder(CoreDataHandler::class)->getMock();
|
||||
$coreDataHandlerMock->datamap = [
|
||||
'tt_content' => [
|
||||
'NEW343' => [],
|
||||
],
|
||||
];
|
||||
$coreDataHandlerMock->substNEWwithIDs = [];
|
||||
|
||||
$ownDataHandlerMock = $this->getMockBuilder(OwnDataHandler::class)
|
||||
->disableOriginalConstructor()
|
||||
->getMock();
|
||||
|
||||
$subject = new DataHandler($ownDataHandlerMock);
|
||||
|
||||
$ownDataHandlerMock->expects($this->never())->method('update');
|
||||
|
||||
$subject->processDatamap_afterAllOperations($coreDataHandlerMock);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue