Ordermanager/tests/integration/Admin/jobExecuteTest.php

393 regels
11 KiB
PHP

2024-09-03 14:13:47 +02:00
<?php
/**
* Copyright (c) D3 Data Development (Inh. Thomas Dartsch)
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*
* https://www.d3data.de
*
* @copyright (C) D3 Data Development (Inh. Thomas Dartsch)
* @author D3 Data Development - Daniel Seifert <info@shopmodule.com>
* @link https://www.oxidmodule.com
*/
namespace D3\Ordermanager\tests\integration\Admin;
use D3\Ordermanager\Application\Controller\Admin\d3_ordermanager_jobs;
use D3\Ordermanager\Application\Model\d3ordermanager as Manager;
use D3\Ordermanager\Modules\Application\Model\d3_oxorder_ordermanager;
use D3\Ordermanager\tests\integration\d3IntegrationTestCase;
use Exception;
use OxidEsales\Eshop\Application\Model\Order as Item;
use OxidEsales\Eshop\Core\Exception\DatabaseConnectionException;
use OxidEsales\Eshop\Core\Exception\DatabaseErrorException;
use OxidEsales\Eshop\Core\Registry;
use ReflectionException;
/**
* @coversNothing
*/
class jobExecuteTest extends d3IntegrationTestCase
{
/** @var d3_ordermanager_jobs */
public $_oController;
public $sManagerId = 'managerTestId';
public $aArticleIdList = [
'articleTestIdNo1',
];
public $aCountryIdList = [
'testCountryId1Pass',
];
public $aOrderIdList = [
'orderTestIdNo1',
];
public $aOrderArticleIdList = [
'orderTestIdNo1Article1',
];
public $dCurrentValue = 1.23;
public $dExpectedValue = 2.34;
public function setUp(): void
{
parent::setUp();
$this->_oController = oxNew(d3_ordermanager_jobs::class);
}
/**
* @throws Exception
*/
public function createTestData()
{
$this->createManager($this->sManagerId);
foreach ($this->aCountryIdList as $sId) {
$this->createBaseModelObject('oxcountry', $sId, [ 'oxtitle' => __METHOD__ ]);
}
$this->createOrder(
$this->aOrderIdList[0],
[
'oxorderdate' => '2018-01-01 00:00:00',
'oxsenddate' => '2018-01-01 00:00:00',
'oxdelcost' => $this->dCurrentValue,
'oxcurrate' => 1,
'oxbillcountryid' => $this->aCountryIdList[0],
'oxdelcountryid' => '',
'oxbillcompany' => __CLASS__,
'oxcurrency' => 'EUR',
],
[
$this->aOrderArticleIdList[0] => [
'oxartnum' => 'expArtNum1',
'oxtitle' => 'expTitle1',
'oxshortdesc' => 'expShortDesc1',
'oxselvariant' => 'expSelVariant1',
'oxpersparam' => 'expPersParam1',
'oxstorno' => '0',
'oxartid' => $this->aArticleIdList[0],
],
]
);
$this->getConfiguredManager()->save();
}
/**
* @throws DatabaseConnectionException
* @throws DatabaseErrorException
* @throws Exception
*/
public function cleanTestData()
{
$this->deleteManager($this->sManagerId);
foreach ($this->aCountryIdList as $sId) {
$this->deleteBaseModelObject('oxcountry', $sId);
}
$this->deleteOrder($this->aOrderIdList[0]);
}
/**
* @return Manager
* @throws Exception
*/
public function getConfiguredManager()
{
$oManager = $this->getManagerMock($this->sManagerId);
$oManager->assign(
[
'D3_CRONJOBID' => 'testId',
'D3_OM_EXECMANUALLY' => 1,
]
);
$oManager->setValue('blActionOrderChangeDeliveryCost_status', true);
$oManager->setValue('sActionChangeDelCostValue', $this->dExpectedValue);
$oManager->setValue('blCheckCountry_status', true);
$oManager->setValue('sCustCountryId', [ $this->aCountryIdList[0] ]);
$oManager->setValue('blItemExecute', true);
return $oManager;
}
/**
* @test
* @throws ReflectionException
* @dataProvider execMethodDataProvider
*/
public function canExecOrdermanagerOk($methodname)
{
$_GET['ordermanagerid'] = $this->sManagerId;
$_GET['oxid'] = $this->aOrderIdList[0];
// prevent trigger action in test preparation
Registry::getSession()->setVariable(d3_oxorder_ordermanager::PREVENTION_SAVEORDER, true);
Registry::getSession()->setVariable(d3_oxorder_ordermanager::PREVENTION_FINALIZEORDER, true);
$this->callMethod(
$this->_oController,
$methodname
);
Registry::getSession()->setVariable(d3_oxorder_ordermanager::PREVENTION_SAVEORDER, false);
Registry::getSession()->setVariable(d3_oxorder_ordermanager::PREVENTION_FINALIZEORDER, false);
/** @var Item $oItem */
$oItem = d3GetOxidDIC()->get('d3ox.ordermanager.'.Item::class);
$oItem->load($this->aOrderIdList[0]);
$this->assertSame(
round((float) $this->dExpectedValue * 100),
round((float) $oItem->getFieldData('oxdelcost') * 100)
);
}
/**
* @test
* @throws ReflectionException
* @dataProvider execMethodDataProvider
*/
public function canExecOrdermanagerInvalidRequirementConfigUnchecked($methodname)
{
$_GET['ordermanagerid'] = $this->sManagerId;
$_GET['oxid'] = $this->aOrderIdList[0];
$manager = $this->getConfiguredManager();
$manager->setValue('sCustCountryId', [ 'notExistingCountryId' ]);
$manager->setValue('sManuallyExecMeetCondition', false);
$manager->save();
// prevent trigger action in test preparation
Registry::getSession()->setVariable(d3_oxorder_ordermanager::PREVENTION_SAVEORDER, true);
Registry::getSession()->setVariable(d3_oxorder_ordermanager::PREVENTION_FINALIZEORDER, true);
$this->callMethod(
$this->_oController,
$methodname
);
Registry::getSession()->setVariable(d3_oxorder_ordermanager::PREVENTION_SAVEORDER, false);
Registry::getSession()->setVariable(d3_oxorder_ordermanager::PREVENTION_FINALIZEORDER, false);
$this->getConfiguredManager()->save();
/** @var Item $oItem */
$oItem = d3GetOxidDIC()->get('d3ox.ordermanager.'.Item::class);
$oItem->load($this->aOrderIdList[0]);
$this->assertSame(
round((float) $this->dExpectedValue * 100),
round((float) $oItem->getFieldData('oxdelcost') * 100)
);
}
/**
* @test
* @throws ReflectionException
* @dataProvider execMethodDataProvider
*/
public function canExecOrdermanagerInvalidRequirementConfigChecked($methodname)
{
$_GET['ordermanagerid'] = $this->sManagerId;
$_GET['oxid'] = $this->aOrderIdList[0];
$manager = $this->getConfiguredManager();
$manager->setValue('sCustCountryId', [ 'notExistingCountryId' ]);
$manager->setValue('sManuallyExecMeetCondition', true);
$manager->save();
$this->callMethod(
$this->_oController,
$methodname
);
$this->getConfiguredManager()->save();
/** @var Item $oItem */
$oItem = d3GetOxidDIC()->get('d3ox.ordermanager.'.Item::class);
$oItem->load($this->aOrderIdList[0]);
$this->assertSame(
round((float) $this->dCurrentValue * 100),
round((float) $oItem->getFieldData('oxdelcost') * 100)
);
}
/**
* @test
* @throws ReflectionException
* @dataProvider execMethodDataProvider
*/
public function canExecOrdermanagerInvalidActionConfig($methodname)
{
$_GET['ordermanagerid'] = $this->sManagerId;
$_GET['oxid'] = $this->aOrderIdList[0];
$manager = $this->getConfiguredManager();
$manager->setValue('sActionChangeDelCostValue', 'invalid');
$manager->save();
$this->callMethod(
$this->_oController,
$methodname
);
$this->getConfiguredManager()->save();
/** @var Item $oItem */
$oItem = d3GetOxidDIC()->get('d3ox.ordermanager.'.Item::class);
$oItem->load($this->aOrderIdList[0]);
$this->assertSame(
round((float) $this->dCurrentValue * 100),
round((float) $oItem->getFieldData('oxdelcost') * 100)
);
}
/**
* @return string[][]
*/
public function execMethodDataProvider()
{
return [
'instantExecute' => ['d3execordermanager'],
'changedContentExecute' => ['d3ExecChangedOrderManager'],
];
}
/**
* @test
* @throws ReflectionException
*/
public function canExecChangedContentsOk()
{
$_GET['ordermanagerid'] = $this->sManagerId;
$_GET['oxid'] = $this->aOrderIdList[0];
$this->callMethod(
$this->_oController,
'execChangedContents'
);
$this->assertIsArray(
$this->callMethod(
$this->_oController,
'getViewDataElement',
['aMailContent']
)
);
}
/**
* @test
* @throws ReflectionException
*/
public function canExecChangedContentsInvalidRequirementConfigUnchecked()
{
$_GET['ordermanagerid'] = $this->sManagerId;
$_GET['oxid'] = $this->aOrderIdList[0];
$manager = $this->getConfiguredManager();
$manager->setValue('sCustCountryId', [ 'notExistingCountryId' ]);
$manager->setValue('sManuallyExecMeetCondition', false);
$manager->save();
$this->callMethod(
$this->_oController,
'execChangedContents'
);
$this->getConfiguredManager()->save();
$this->assertIsArray(
$this->callMethod(
$this->_oController,
'getViewDataElement',
['aMailContent']
)
);
}
/**
* @test
* @throws ReflectionException
*/
public function canExecChangedContentsInvalidRequirementConfigChecked()
{
$_GET['ordermanagerid'] = $this->sManagerId;
$_GET['oxid'] = $this->aOrderIdList[0];
$manager = $this->getConfiguredManager();
$manager->setValue('sCustCountryId', [ 'notExistingCountryId' ]);
$manager->setValue('sManuallyExecMeetCondition', true);
$manager->save();
$this->callMethod(
$this->_oController,
'execChangedContents'
);
$this->getConfiguredManager()->save();
$this->assertNull(
$this->callMethod(
$this->_oController,
'getViewDataElement',
['aMailContent']
)
);
}
/**
* @test
* @throws ReflectionException
*/
public function canExecChangedContentsInvalidActionConfig()
{
$_GET['ordermanagerid'] = $this->sManagerId;
$_GET['oxid'] = $this->aOrderIdList[0];
$manager = $this->getConfiguredManager();
$manager->setValue('sActionChangeDelCostValue', 'invalid');
$manager->save();
$this->callMethod(
$this->_oController,
'execChangedContents'
);
$this->getConfiguredManager()->save();
$this->assertNull(
$this->callMethod(
$this->_oController,
'getViewDataElement',
['aMailContent']
)
);
}
}