This repository has been archived on 2026-07-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
2026-01-12 11:02:47 +02:00

397 lines
12 KiB
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
/************************************************************************
* This file is part of EspoCRM.
*
* EspoCRM Open Source CRM application.
* Copyright (C) 2014-2026 EspoCRM, Inc.
* Website: https://www.espocrm.com
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
* The interactive user interfaces in modified source and object code versions
* of this program must display Appropriate Legal Notices, as required under
* Section 5 of the GNU Affero General Public License version 3.
*
* In accordance with Section 7(b) of the GNU Affero General Public License version 3,
* these Appropriate Legal Notices must retain the display of the "EspoCRM" word.
************************************************************************/
namespace tests\unit\Espo\Core;
use PHPUnit\Framework\TestCase;
use tests\unit\ReflectionHelper;
use Espo\Core\Hook\GeneralInvoker;
use Espo\Core\HookManager;
use Espo\Core\InjectableFactory;
use Espo\Core\Utils\Config;
use Espo\Core\Utils\DataCache;
use Espo\Core\Utils\File\Manager as FileManager;
use Espo\Core\Utils\Log;
use Espo\Core\Utils\Metadata;
use Espo\Core\Utils\Module\PathProvider;
class HookManagerTest extends TestCase
{
private $filesPath = 'tests/unit/testData/Hooks';
private ?Config\SystemConfig $systemConfig = null;
private $pathProvider;
private $reflection;
private $metadata;
protected function setUp(): void
{
$this->metadata = $this->createMock(Metadata::class);
$this->getMockBuilder(Metadata::class)->disableOriginalConstructor()->getMock();
$this->systemConfig = $this->createMock(Config\SystemConfig::class);
$injectableFactory = $this->createMock(InjectableFactory::class);
$dataCache = $this->createMock(DataCache::class);
$fileManager = new FileManager();
$this->pathProvider = $this->createMock(PathProvider::class);
$generalInvoker = $this->createMock(GeneralInvoker::class);
$hookManager = new HookManager(
$injectableFactory,
$fileManager,
$this->metadata,
$dataCache,
$this->createMock(Log::class),
$this->pathProvider,
$generalInvoker,
$this->systemConfig,
);
$this->reflection = new ReflectionHelper($hookManager);
}
private function initPathProvider(string $folder): void
{
$this->pathProvider
->method('getCustom')
->willReturn($this->filesPath . '/' . $folder . '/custom/Espo/Custom/');
$this->pathProvider
->method('getCore')
->willReturn($this->filesPath . '/' . $folder . '/application/Espo/');
$this->pathProvider
->method('getModule')
->willReturnCallback(
function (?string $moduleName) use ($folder): string {
$path = $this->filesPath . '/' . $folder . '/application/Espo/Modules/{*}/';
if ($moduleName === null) {
return $path;
}
return str_replace('{*}', $moduleName, $path);
}
);
}
public function testHookExists(): void
{
$data = array (
'Espo\\Hooks\\Note\\Stream' => 8,
'Espo\\Hooks\\Note\\Mentions' => 9,
'Espo\\Hooks\\Note\\Notifications' => 14,
);
$data = array (
array (
'className' => 'Espo\\Hooks\\Note\\Stream',
'order' => 8,
),
array (
'className' => 'Espo\\Hooks\\Note\\Mentions',
'order' => 9,
),
array (
'className' => 'Espo\\Hooks\\Note\\Notifications',
'order' => 14,
),
);
$this->assertTrue(
$this->reflection->invokeMethod('hookExists', array('Espo\\Hooks\\Note\\Mentions', $data))
);
$this->assertTrue(
$this->reflection->invokeMethod('hookExists', array('Espo\\Modules\\Crm\\Hooks\\Note\\Mentions', $data))
);
$this->assertTrue(
$this->reflection->invokeMethod('hookExists', array('Espo\\Modules\\Test\\Hooks\\Note\\Mentions', $data))
);
$this->assertTrue(
$this->reflection->invokeMethod('hookExists', array('Espo\\Modules\\Test\\Hooks\\Common\\Stream', $data))
);
$this->assertFalse(
$this->reflection->invokeMethod('hookExists', array('Espo\\Hooks\\Note\\TestHook', $data))
);
}
public function testSortHooks()
{
$data = array (
'Common' =>
array (
'afterSave' =>
array (
array (
'className' => 'Espo\\Hooks\\Common\\AssignmentEmailNotification',
'order' => 9,
),
array (
'className' => 'Espo\\Hooks\\Common\\Notifications',
'order' => 10,
),
array (
'className' => 'Espo\\Hooks\\Common\\Stream',
'order' => 9,
),
),
'beforeSave' =>
array (
array (
'className' => 'Espo\\Hooks\\Common\\Formula',
'order' => 5,
),
array (
'className' => 'Espo\\Hooks\\Common\\NextNumber',
'order' => 10,
),
array (
'className' => 'Espo\\Hooks\\Common\\CurrencyConverted',
'order' => 1,
),
),
),
'Note' =>
array (
'beforeSave' =>
array (
array (
'className' => 'Espo\\Hooks\\Note\\Mentions',
'order' => 9,
),
),
'afterSave' =>
array (
array (
'className' => 'Espo\\Hooks\\Note\\Notifications',
'order' => 14,
),
),
),
);
$result = array (
'Common' =>
array (
'afterSave' =>
array (
array (
'className' => 'Espo\\Hooks\\Common\\AssignmentEmailNotification',
'order' => 9,
),
array (
'className' => 'Espo\\Hooks\\Common\\Stream',
'order' => 9,
),
array (
'className' => 'Espo\\Hooks\\Common\\Notifications',
'order' => 10,
),
),
'beforeSave' =>
array (
array (
'className' => 'Espo\\Hooks\\Common\\CurrencyConverted',
'order' => 1,
),
array (
'className' => 'Espo\\Hooks\\Common\\Formula',
'order' => 5,
),
array (
'className' => 'Espo\\Hooks\\Common\\NextNumber',
'order' => 10,
),
),
),
'Note' =>
array (
'beforeSave' =>
array (
array (
'className' => 'Espo\\Hooks\\Note\\Mentions',
'order' => 9,
),
),
'afterSave' =>
array (
array (
'className' => 'Espo\\Hooks\\Note\\Notifications',
'order' => 14,
),
),
),
);
$this->assertEquals($result, $this->reflection->invokeMethod('sortHooks', array($data)) );
}
public function testCase1CustomHook()
{
$this->initPathProvider('testCase1');
$this->systemConfig
->expects($this->exactly(2))
->method('useCache')
->willReturn(false);
$this->metadata
->expects($this->once())
->method('getModuleList')
->willReturn([
'Crm',
'Test',
]);
$this->reflection->invokeMethod('loadHooks');
$result = [
'Note' =>
[
'beforeSave' =>
[
[
'className' => 'tests\\unit\\testData\\Hooks\\testCase1\\custom\\Espo\\Custom\\Hooks\\Note\\Mentions',
'order' => 7,
],
],
],
];
$this->assertEquals($result, $this->reflection->getProperty('data'));
}
public function testCase2ModuleHook1()
{
$this->initPathProvider('testCase2');
$this->systemConfig
->expects($this->exactly(2))
->method('useCache')
->willReturn(false);
$this->metadata
->expects($this->once())
->method('getModuleList')
->willReturn([
'Crm',
'Test',
]);
$this->reflection->invokeMethod('loadHooks');
$result = [
'Note' =>
[
'beforeSave' =>
[
[
'className' =>
'tests\\unit\\testData\\Hooks\\testCase2\\application\\Espo\\Modules\\Crm\\Hooks\\Note\\Mentions',
'order' => 9,
],
],
],
];
$this->assertEquals($result, $this->reflection->getProperty('data'));
}
public function testCase2ModuleHookReverseModuleOrder()
{
$this->initPathProvider('testCase2');
$this->systemConfig
->expects($this->exactly(2))
->method('useCache')
->willReturn(false);
$this->metadata
->expects($this->once())
->method('getModuleList')
->willReturn([
'Test',
'Crm',
]);
$this->reflection->invokeMethod('loadHooks');
$result = [
'Note' =>
[
'beforeSave' =>
[
[
'className' =>
'tests\\unit\\testData\\Hooks\\testCase2\\application\\Espo\\Modules\\Test\\Hooks\\Note\\Mentions',
'order' => 9,
],
],
],
];
$this->assertEquals($result, $this->reflection->getProperty('data'));
}
public function testCase3CoreHook()
{
$this->initPathProvider('testCase3');
$this->systemConfig
->expects($this->exactly(2))
->method('useCache')
->willReturn(false);
$this->metadata
->expects($this->once())
->method('getModuleList')
->willReturn([]);
$this->reflection->invokeMethod('loadHooks');
$result = array (
'Note' =>
array (
'beforeSave' =>
array (
array (
'className' => 'tests\\unit\\testData\\Hooks\\testCase3\\application\\Espo\\Hooks\\Note\\Mentions',
'order' => 9,
),
),
),
);
$this->assertEquals($result, $this->reflection->getProperty('data'));
}
}