mirror of
https://github.com/Codappix/search_core.git
synced 2024-11-23 08:56:11 +01:00
FEATURE: Add first code and tests to integrate travis ci
This commit is contained in:
parent
057c67714f
commit
224f945d82
7 changed files with 476 additions and 1 deletions
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
composer.lock
|
||||
.Build
|
158
Classes/Hook/DataHandler.php
Normal file
158
Classes/Hook/DataHandler.php
Normal file
|
@ -0,0 +1,158 @@
|
|||
<?php
|
||||
namespace Leonmrni\SearchCore\Hook;
|
||||
|
||||
/*
|
||||
* Copyright (C) 2016 Daniel Siepmann <coding@daniel-siepmann.de>
|
||||
*
|
||||
* 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\Backend\Utility\BackendUtility;
|
||||
use TYPO3\CMS\Core\DataHandling\DataHandler as CoreDataHandler;
|
||||
use TYPO3\CMS\Core\Log\LogManager;
|
||||
use TYPO3\CMS\Core\Log\Logger;
|
||||
use TYPO3\CMS\Core\SingletonInterface as Singleton;
|
||||
use TYPO3\CMS\Core\Utility\GeneralUtility;
|
||||
use TYPO3\CMS\Extbase\Object\ObjectManager;
|
||||
use Leonmrni\SearchCore\Service\DataHandler as OwnDataHandler;
|
||||
|
||||
/**
|
||||
* Wrapper for TYPO3 Hooks to internal API.
|
||||
*/
|
||||
class DataHandler implements Singleton
|
||||
{
|
||||
/**
|
||||
* @var OwnDataHandler
|
||||
*/
|
||||
protected $dataHandler;
|
||||
|
||||
/**
|
||||
* @var \TYPO3\CMS\Core\Log\Logger
|
||||
*/
|
||||
protected $logger;
|
||||
|
||||
/**
|
||||
* Dependency injection as TYPO3 doesn't provide it on it's own.
|
||||
* Still you can submit your own dataHandler.
|
||||
*
|
||||
* TODO: Inject datahandler only on use?! Using getter / setter or something else?
|
||||
* Otherwise a connection to elastic and whole bootstrapping will be triggered.
|
||||
*
|
||||
* @param OwnDataHandler $dataHandler
|
||||
* @param Logger $logger
|
||||
*/
|
||||
public function __construct(OwnDataHandler $dataHandler = null, Logger $logger = null)
|
||||
{
|
||||
$this->dataHandler = $dataHandler;
|
||||
if ($this->dataHandler === null) {
|
||||
$this->dataHandler = GeneralUtility::makeInstance(ObjectManager::class)
|
||||
->get(OwnDataHandler::class);
|
||||
}
|
||||
|
||||
$this->logger = $logger;
|
||||
if ($this->logger === null) {
|
||||
$this->logger = GeneralUtility::makeInstance(LogManager::class)
|
||||
->getLogger(__CLASS__);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Called by CoreDataHandler on deletion of records.
|
||||
*
|
||||
* @param string $table
|
||||
* @param int $uid
|
||||
* @param array $record
|
||||
* @param bool $recordWasDeleted
|
||||
* @param CoreDataHandler $dataHandler
|
||||
*/
|
||||
public function processCmdmap_deleteAction($table, $uid, array $record, $recordWasDeleted, CoreDataHandler $dataHandler)
|
||||
{
|
||||
if (! $this->shouldProcessTable($table)) {
|
||||
$this->logger->debug('Delete not processed, cause table is not allowed.', [$table]);
|
||||
return;
|
||||
}
|
||||
|
||||
$this->dataHandler->delete($table, $uid);
|
||||
}
|
||||
|
||||
/**
|
||||
* Called by CoreDataHandler on database operations, e.g. if new records were created or records were updated.
|
||||
*
|
||||
* @param string $status
|
||||
* @param string $table
|
||||
* @param string|int $uid
|
||||
* @param array $fieldArray
|
||||
* @param CoreDataHandler $dataHandler
|
||||
*/
|
||||
public function processDatamap_afterDatabaseOperations($status, $table, $uid, array $fieldArray, CoreDataHandler $dataHandler)
|
||||
{
|
||||
if (! $this->shouldProcessTable($table)) {
|
||||
$this->logger->debug('Database update not processed, cause table is not allowed.', [$table]);
|
||||
return;
|
||||
}
|
||||
|
||||
if ($status === 'new') {
|
||||
$this->dataHandler->add($table, $dataHandler->substNEWwithIDs[$uid], $fieldArray);
|
||||
return;
|
||||
}
|
||||
|
||||
if ($status === 'update') {
|
||||
$this->dataHandler->update(
|
||||
$table,
|
||||
$uid,
|
||||
$this->getRecord($table, $uid)
|
||||
);
|
||||
return;
|
||||
}
|
||||
|
||||
$this->logger->debug('Database update not processed, cause status is unhandled.', [$status, $table, $uid, $fieldArray]);
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns array containing tables that should be processed by this hook.
|
||||
*
|
||||
* TODO: Fetch from config
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
protected function getTablesToProcess()
|
||||
{
|
||||
return [
|
||||
'tt_content',
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $table
|
||||
* @return bool
|
||||
*/
|
||||
protected function shouldProcessTable($table)
|
||||
{
|
||||
return in_array($table, $this->getTablesToProcess());
|
||||
}
|
||||
|
||||
/**
|
||||
* Wrapper to allow unit testing.
|
||||
*
|
||||
* @param string $table
|
||||
* @param int $uid
|
||||
* @return array
|
||||
*/
|
||||
protected function getRecord($table, $uid)
|
||||
{
|
||||
return BackendUtility::getRecord($table, $uid);
|
||||
}
|
||||
}
|
80
Classes/Service/DataHandler.php
Normal file
80
Classes/Service/DataHandler.php
Normal file
|
@ -0,0 +1,80 @@
|
|||
<?php
|
||||
namespace Leonmrni\SearchCore\Service;
|
||||
|
||||
/*
|
||||
* Copyright (C) 2016 Daniel Siepmann <coding@daniel-siepmann.de>
|
||||
*
|
||||
* 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\SingletonInterface as Singleton;
|
||||
|
||||
/**
|
||||
* Handles all data related things like updates, deletes and inserts.
|
||||
*
|
||||
* This is the place to add mappings of further parts to adjust the data before
|
||||
* sending ot to connection.
|
||||
*/
|
||||
class DataHandler implements Singleton
|
||||
{
|
||||
/**
|
||||
* @var \TYPO3\CMS\Core\Log\Logger
|
||||
*/
|
||||
protected $logger;
|
||||
|
||||
// TODO: Write construct with inject of connection
|
||||
|
||||
/**
|
||||
* Inject log manager to get concrete logger from it.
|
||||
*
|
||||
* @param \TYPO3\CMS\Core\Log\LogManager $logManager
|
||||
*/
|
||||
public function injectLogger(\TYPO3\CMS\Core\Log\LogManager $logManager)
|
||||
{
|
||||
$this->logger = $logManager->getLogger(__CLASS__);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $table
|
||||
* @param int $identifier
|
||||
*/
|
||||
public function delete($table, $identifier)
|
||||
{
|
||||
$this->logger->debug('Record received for delete.', [$table, $identifier]);
|
||||
// $this->connection->delete($table, $identifier);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $table
|
||||
* @param int $identifier
|
||||
* @param array $record
|
||||
*/
|
||||
public function add($table, $identifier, array $record)
|
||||
{
|
||||
$this->logger->debug('Record received for add.', [$table, $identifier, $record]);
|
||||
// $this->connection->add($table, $identifier, $record);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $table
|
||||
* @param int $identifier
|
||||
*/
|
||||
public function update($table, $identifier, array $record)
|
||||
{
|
||||
$this->logger->debug('Record received for update.', [$table, $identifier, $record]);
|
||||
// $this->connection->update($table, $identifier, $record);
|
||||
}
|
||||
}
|
39
Tests/Fakes/FakeLogManager.php
Normal file
39
Tests/Fakes/FakeLogManager.php
Normal file
|
@ -0,0 +1,39 @@
|
|||
<?php
|
||||
namespace Leonmrni\SearchCore\Tests\Fakes;
|
||||
|
||||
/*
|
||||
* 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\Log\LogManager;
|
||||
|
||||
/**
|
||||
* Fakes the LogManager to prevent dependencies and logging during tests.
|
||||
*/
|
||||
class FakeLogManager extends LogManager
|
||||
{
|
||||
public function __construct()
|
||||
{
|
||||
$this->loggers['fake'] = new Logger('fake');
|
||||
}
|
||||
|
||||
public function getLogger($name = '')
|
||||
{
|
||||
return $this->loggers['fake'];
|
||||
}
|
||||
}
|
150
Tests/Unit/Hook/DataHandlerTest.php
Normal file
150
Tests/Unit/Hook/DataHandlerTest.php
Normal file
|
@ -0,0 +1,150 @@
|
|||
<?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 Leonmrni\SearchCore\Hook\DataHandler as Hook;
|
||||
use Leonmrni\SearchCore\Service\DataHandler;
|
||||
use Leonmrni\SearchCore\Tests\Fakes\FakeLogManager;
|
||||
use TYPO3\CMS\Core\DataHandling\DataHandler as CoreDataHandler;
|
||||
use TYPO3\CMS\Core\Log\LogManager;
|
||||
use TYPO3\CMS\Core\Tests\UnitTestCase;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
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()
|
||||
{
|
||||
\TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance('TYPO3\CMS\Extbase\Object\Container\Container')
|
||||
->registerImplementation(LogManager::class, FakeLogManager::class);
|
||||
|
||||
$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 = $this->getAccessibleMock(CoreDataHandler::class, [], [], '', false);
|
||||
$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 = $this->getAccessibleMock(CoreDataHandler::class, [], [], '', false);
|
||||
$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($recordUid),
|
||||
$this->equalTo($record)
|
||||
);
|
||||
|
||||
$this->hook->processDatamap_afterDatabaseOperations('update', $table, $recordUid, $record, new CoreDataHandler);
|
||||
}
|
||||
}
|
22
Tests/Unit/UnitTests.xml
Normal file
22
Tests/Unit/UnitTests.xml
Normal file
|
@ -0,0 +1,22 @@
|
|||
<phpunit
|
||||
backupGlobals="false"
|
||||
backupStaticAttributes="false"
|
||||
bootstrap="../../.Build/vendor/typo3/cms/typo3/sysext/core/Build/UnitTestsBootstrap.php"
|
||||
|
||||
colors="true"
|
||||
convertErrorsToExceptions="false"
|
||||
convertWarningsToExceptions="false"
|
||||
forceCoversAnnotation="false"
|
||||
processIsolation="false"
|
||||
stopOnError="false"
|
||||
stopOnFailure="false"
|
||||
stopOnIncomplete="false"
|
||||
stopOnSkipped="false"
|
||||
verbose="false">
|
||||
|
||||
<testsuites>
|
||||
<testsuite name="unit-tests">
|
||||
<directory>.</directory>
|
||||
</testsuite>
|
||||
</testsuites>
|
||||
</phpunit>
|
|
@ -9,12 +9,36 @@
|
|||
"Leonmrni\\SearchCore\\": "Classes"
|
||||
}
|
||||
},
|
||||
"autoload-dev": {
|
||||
"psr-4": {
|
||||
"Leonmrni\\SearchCore\\Tests\\": "Tests/",
|
||||
"TYPO3\\CMS\\Core\\Tests\\": ".Build/vendor/typo3/cms/typo3/sysext/core/Tests/"
|
||||
}
|
||||
},
|
||||
|
||||
"require" : {
|
||||
"php": ">=5.6.0",
|
||||
"typo3/cms": ">=6.2.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": ">=4.8.0 <6.0.0"
|
||||
"phpunit/phpunit": "~4.8.0"
|
||||
},
|
||||
"config": {
|
||||
"optimize-autoloader": true,
|
||||
"vendor-dir": ".Build/vendor",
|
||||
"bin-dir": ".Build/bin"
|
||||
},
|
||||
"scripts": {
|
||||
"post-autoload-dump": [
|
||||
"mkdir -p .Build/Web/typo3conf/ext/",
|
||||
"[ -L .Build/Web/typo3conf/ext/search_core ] || ln -snvf ../../../../. .Build/Web/typo3conf/ext/search_core"
|
||||
]
|
||||
},
|
||||
"extra": {
|
||||
"typo3/cms": {
|
||||
"cms-package-dir": "{$vendor-dir}/typo3/cms",
|
||||
"web-dir": ".Build/Web"
|
||||
}
|
||||
},
|
||||
"authors": [
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue