mirror of
https://github.com/Codappix/search_core.git
synced 2024-11-11 08:16:11 +01:00
Daniel Siepmann
e75f24092e
* TASK: Fix scrutinizer issues * TASK: Add library dependency * FIX: Adjust php and TYPO3 requirements * TASK: Adjust test
142 lines
4.4 KiB
PHP
142 lines
4.4 KiB
PHP
<?php
|
|
namespace Leonmrni\SearchCore\Tests\Unit\Hook;
|
|
|
|
/*
|
|
* Copyright (C) 2016 Daniel Siepmann <daniel.siepmann@typo3.org>
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version 2
|
|
* of the License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
* 02110-1301, USA.
|
|
*/
|
|
|
|
use TYPO3\CMS\Core\DataHandling\DataHandler as CoreDataHandler;
|
|
use TYPO3\CMS\Core\Tests\UnitTestCase;
|
|
use Leonmrni\SearchCore\Domain\Service\DataHandler;
|
|
use Leonmrni\SearchCore\Hook\DataHandler as Hook;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
class DataHandlerTest extends UnitTestCase
|
|
{
|
|
/**
|
|
* @var DataHandler|\PHPUnit_Framework_MockObject_MockObject|AccessibleObjectInterface
|
|
*/
|
|
protected $subject;
|
|
|
|
/**
|
|
* @var Hook|\PHPUnit_Framework_MockObject_MockObject|AccessibleObjectInterface
|
|
*/
|
|
protected $hook;
|
|
|
|
/**
|
|
* Set up the tests
|
|
*/
|
|
protected function setUp()
|
|
{
|
|
$this->subject = $this->getAccessibleMock(DataHandler::class);
|
|
$this->hook = $this->getAccessibleMock(
|
|
Hook::class,
|
|
[
|
|
'getTablesToProcess',
|
|
'getRecord'
|
|
],
|
|
[$this->subject]
|
|
);
|
|
|
|
$this->hook->method('getTablesToProcess')
|
|
->willReturn(['table']);
|
|
$this->hook->method('getRecord')
|
|
->willReturn([
|
|
'title' => 'some title',
|
|
'bodytext' => 'some text',
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function notConfiguredTablesWillNotBeProcessed()
|
|
{
|
|
$table = 'noneConfiguredTable';
|
|
$recordUid = 1;
|
|
$this->subject->expects($this->exactly(0))->method('delete');
|
|
$this->subject->expects($this->exactly(0))->method('add');
|
|
$this->subject->expects($this->exactly(0))->method('update');
|
|
|
|
$dataHandler = new CoreDataHandler();
|
|
$dataHandler->substNEWwithIDs = ['NEW34' => $recordUid];
|
|
|
|
$this->hook->processCmdmap_deleteAction($table, $recordUid, [], false, $dataHandler);
|
|
$this->hook->processDatamap_afterDatabaseOperations('new', $table, 'NEW34', [], $dataHandler);
|
|
$this->hook->processDatamap_afterDatabaseOperations('update', $table, $recordUid, [], $dataHandler);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function configuredTablesWillBeProcessed()
|
|
{
|
|
$table = 'table';
|
|
$recordUid = 1;
|
|
$this->subject->expects($this->once())->method('delete');
|
|
$this->subject->expects($this->once())->method('add');
|
|
$this->subject->expects($this->once())->method('update');
|
|
|
|
$dataHandler = new CoreDataHandler();
|
|
$dataHandler->substNEWwithIDs = ['NEW34' => $recordUid];
|
|
|
|
$this->hook->processCmdmap_deleteAction($table, $recordUid, [], false, $dataHandler);
|
|
$this->hook->processDatamap_afterDatabaseOperations('new', $table, 'NEW34', [], $dataHandler);
|
|
$this->hook->processDatamap_afterDatabaseOperations('update', $table, $recordUid, [], $dataHandler);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function deletionWillBeTriggered()
|
|
{
|
|
$table = 'table';
|
|
$recordUid = 1;
|
|
$this->subject->expects($this->once())
|
|
->method('delete')
|
|
->with(
|
|
$this->equalTo($table),
|
|
$this->equalTo($recordUid)
|
|
);
|
|
|
|
$this->hook->processCmdmap_deleteAction($table, $recordUid, [], false, new CoreDataHandler());
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function updateWillBeTriggered()
|
|
{
|
|
$table = 'table';
|
|
$recordUid = 1;
|
|
$record = [
|
|
'title' => 'some title',
|
|
'bodytext' => 'some text',
|
|
];
|
|
$this->subject->expects($this->once())
|
|
->method('update')
|
|
->with(
|
|
$this->equalTo($table),
|
|
$this->equalTo($record)
|
|
);
|
|
|
|
$this->hook->processDatamap_afterDatabaseOperations('update', $table, $recordUid, $record, new CoreDataHandler);
|
|
}
|
|
}
|