294 lines
9.3 KiB
PHP
294 lines
9.3 KiB
PHP
<?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\Actions;
|
|
|
|
use D3\ModCfg\Application\Model\Exception\d3_cfg_mod_exception;
|
|
use D3\ModCfg\Application\Model\Exception\d3ShopCompatibilityAdapterException;
|
|
use D3\Ordermanager\Application\Model\d3ordermanager;
|
|
use D3\Ordermanager\Modules\Application\Model\d3_oxorder_ordermanager;
|
|
use Doctrine\DBAL\Exception as DBALException;
|
|
use Exception;
|
|
use OxidEsales\Eshop\Application\Model\Order;
|
|
use OxidEsales\Eshop\Core\Exception\DatabaseConnectionException;
|
|
use OxidEsales\Eshop\Core\Exception\DatabaseErrorException;
|
|
use OxidEsales\Eshop\Core\Exception\StandardException;
|
|
use OxidEsales\Eshop\Core\Model\ListModel;
|
|
use OxidEsales\Eshop\Core\Registry;
|
|
|
|
/**
|
|
* @coversNothing
|
|
*/
|
|
class actionChangeDelCostsTest extends d3OrdermanagerActionIntegrationTestCase
|
|
{
|
|
public $sManagerId = 'managerTestId';
|
|
public $aArticleIdList = [
|
|
'articleTestIdNo1',
|
|
'articleTestIdNo2',
|
|
];
|
|
public $aOrderIdList = [
|
|
'orderTestIdNo1',
|
|
'orderTestIdNo2',
|
|
];
|
|
public $aOrderArticleIdList = [
|
|
'orderTestIdNo1Article1',
|
|
'orderTestIdNo2Article1',
|
|
];
|
|
|
|
public $dCurrentValue = 1.23;
|
|
public $dExpectedValue = 2.34;
|
|
|
|
/**
|
|
* @throws Exception
|
|
*/
|
|
public function createTestData()
|
|
{
|
|
$this->createManager($this->sManagerId);
|
|
|
|
$this->createArticle(
|
|
$this->aArticleIdList[0],
|
|
[
|
|
'oxtitle' => __CLASS__,
|
|
'oxparentid' => null,
|
|
'oxstock' => 20,
|
|
]
|
|
);
|
|
|
|
$this->createOrder(
|
|
$this->aOrderIdList[0],
|
|
[
|
|
'oxorderdate' => '2018-01-01 00:00:00',
|
|
'oxdelcost' => $this->dCurrentValue,
|
|
'oxcurrate' => 1,
|
|
'oxbillcompany' => __CLASS__,
|
|
],
|
|
[
|
|
$this->aOrderArticleIdList[0] => [
|
|
'oxartnum' => 'expArtNum1',
|
|
'oxtitle' => 'expTitle1',
|
|
'oxshortdesc' => 'expShortDesc1',
|
|
'oxselvariant' => 'expSelVariant1',
|
|
'oxpersparam' => 'expPersParam1',
|
|
'oxstorno' => '0',
|
|
'oxartid' => $this->aArticleIdList[0],
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->createArticle(
|
|
$this->aArticleIdList[1],
|
|
[
|
|
'oxtitle' => __CLASS__,
|
|
'oxparentid' => null,
|
|
'oxstock' => 20,
|
|
]
|
|
);
|
|
|
|
$this->createOrder(
|
|
$this->aOrderIdList[1],
|
|
[
|
|
'oxorderdate' => '2018-01-01 00:00:00',
|
|
'oxdelcost' => $this->dCurrentValue,
|
|
'oxcurrate' => 1,
|
|
'oxbillcompany' => __CLASS__,
|
|
],
|
|
[
|
|
$this->aOrderArticleIdList[1] => [
|
|
'oxartnum' => 'expArtNum2',
|
|
'oxtitle' => 'expTitle2',
|
|
'oxshortdesc' => 'expShortDesc2',
|
|
'oxselvariant' => 'expSelVariant2',
|
|
'oxpersparam' => 'expPersParam2',
|
|
'oxstorno' => '0',
|
|
'oxartid' => $this->aArticleIdList[1],
|
|
],
|
|
]
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @throws DBALException
|
|
*/
|
|
public function cleanTestData()
|
|
{
|
|
$this->deleteManager($this->sManagerId);
|
|
$this->deleteOrder($this->aOrderIdList[0]);
|
|
$this->deleteOrder($this->aOrderIdList[1]);
|
|
$this->deleteArticle($this->aArticleIdList[0]);
|
|
$this->deleteArticle($this->aArticleIdList[1]);
|
|
}
|
|
|
|
/**
|
|
* @return d3ordermanager
|
|
* @throws Exception
|
|
*/
|
|
public function getConfiguredManagerDot()
|
|
{
|
|
$oManager = $this->getManagerMock($this->sManagerId);
|
|
|
|
$oManager->setValue('blActionOrderChangeDeliveryCost_status', true);
|
|
$oManager->setValue('sActionChangeDelCostValue', $this->dExpectedValue);
|
|
$oManager->setValue('blItemExecute', true);
|
|
|
|
return $oManager;
|
|
}
|
|
|
|
/**
|
|
* @return d3ordermanager
|
|
* @throws Exception
|
|
*/
|
|
public function getConfiguredManagerComma()
|
|
{
|
|
$oManager = $this->getManagerMock($this->sManagerId);
|
|
|
|
$oManager->setValue('blActionOrderChangeDeliveryCost_status', true);
|
|
$oManager->setValue('sActionChangeDelCostValue', str_replace('.', ',', $this->dExpectedValue));
|
|
$oManager->setValue('blItemExecute', true);
|
|
|
|
return $oManager;
|
|
}
|
|
|
|
/**
|
|
* @return d3ordermanager
|
|
* @throws Exception
|
|
*/
|
|
public function getConfiguredManagerUnvalid()
|
|
{
|
|
$oManager = $this->getManagerMock($this->sManagerId);
|
|
|
|
$oManager->setValue('blActionOrderChangeDeliveryCost_status', true);
|
|
$oManager->setValue('sActionChangeDelCostValue', 'unvalid');
|
|
$oManager->setValue('blItemExecute', true);
|
|
|
|
return $oManager;
|
|
}
|
|
|
|
/**
|
|
* @return ListModel
|
|
* @throws Exception
|
|
*/
|
|
public function getFilledResultList()
|
|
{
|
|
return $this->getResultList([$this->aOrderIdList[0]]);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
* @throws DBALException
|
|
* @throws DatabaseConnectionException
|
|
* @throws DatabaseErrorException
|
|
* @throws StandardException
|
|
* @throws d3ShopCompatibilityAdapterException
|
|
* @throws d3_cfg_mod_exception
|
|
* @throws Exception
|
|
*/
|
|
public function actionChangeConcernedOrderDotPrice()
|
|
{
|
|
// prevent save trigger action in test
|
|
Registry::getSession()->setVariable(d3_oxorder_ordermanager::PREVENTION_SAVEORDER, true);
|
|
|
|
$oExecute = $this->getExecuteMock($this->getConfiguredManagerDot());
|
|
$oExecute->startJobItemExecution();
|
|
|
|
Registry::getSession()->setVariable(d3_oxorder_ordermanager::PREVENTION_SAVEORDER, false);
|
|
|
|
/** @var Order $oOrder */
|
|
$oOrder = d3GetOxidDIC()->get('d3ox.ordermanager.'.Order::class);
|
|
$oOrder->load($this->aOrderIdList[0]);
|
|
$this->assertSame(
|
|
round((float) $this->dExpectedValue * 100),
|
|
round((float) $oOrder->getFieldData('oxdelcost') * 100)
|
|
);
|
|
|
|
/** @var Order $oOrder */
|
|
$oOrder = d3GetOxidDIC()->get('d3ox.ordermanager.'.Order::class);
|
|
$oOrder->load($this->aOrderIdList[1]);
|
|
$this->assertSame(
|
|
round((float) $this->dCurrentValue * 100),
|
|
round((float) $oOrder->getFieldData('oxdelcost') * 100)
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
* @throws DBALException
|
|
* @throws DatabaseConnectionException
|
|
* @throws DatabaseErrorException
|
|
* @throws StandardException
|
|
* @throws d3ShopCompatibilityAdapterException
|
|
* @throws d3_cfg_mod_exception
|
|
* @throws Exception
|
|
*/
|
|
public function actionChangeConcernedOrderCommaPrice()
|
|
{
|
|
// prevent save trigger action in test
|
|
Registry::getSession()->setVariable(d3_oxorder_ordermanager::PREVENTION_SAVEORDER, true);
|
|
|
|
$oExecute = $this->getExecuteMock($this->getConfiguredManagerComma());
|
|
$oExecute->startJobItemExecution();
|
|
|
|
// prevent save trigger action in test
|
|
Registry::getSession()->setVariable(d3_oxorder_ordermanager::PREVENTION_SAVEORDER, false);
|
|
|
|
/** @var Order $oOrder */
|
|
$oOrder = d3GetOxidDIC()->get('d3ox.ordermanager.'.Order::class);
|
|
$oOrder->load($this->aOrderIdList[0]);
|
|
$this->assertSame(
|
|
round((float) $this->dExpectedValue * 100),
|
|
round((float) $oOrder->getFieldData('oxdelcost') * 100)
|
|
);
|
|
|
|
/** @var Order $oOrder */
|
|
$oOrder = d3GetOxidDIC()->get('d3ox.ordermanager.'.Order::class);
|
|
$oOrder->load($this->aOrderIdList[1]);
|
|
$this->assertSame(
|
|
round((float) $this->dCurrentValue * 100),
|
|
round((float) $oOrder->getFieldData('oxdelcost') * 100)
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
* @throws DBALException
|
|
* @throws DatabaseConnectionException
|
|
* @throws DatabaseErrorException
|
|
* @throws StandardException
|
|
* @throws d3ShopCompatibilityAdapterException
|
|
* @throws d3_cfg_mod_exception
|
|
* @throws Exception
|
|
*/
|
|
public function actionChangeConcernedOrderUnvalid()
|
|
{
|
|
$oExecute = $this->getExecuteMock($this->getConfiguredManagerUnvalid());
|
|
$oExecute->startJobItemExecution();
|
|
|
|
/** @var Order $oOrder */
|
|
$oOrder = d3GetOxidDIC()->get('d3ox.ordermanager.'.Order::class);
|
|
$oOrder->load($this->aOrderIdList[0]);
|
|
$this->assertSame(
|
|
round((float) $this->dCurrentValue * 100),
|
|
round((float) $oOrder->getFieldData('oxdelcost') * 100)
|
|
);
|
|
|
|
/** @var Order $oOrder */
|
|
$oOrder = d3GetOxidDIC()->get('d3ox.ordermanager.'.Order::class);
|
|
$oOrder->load($this->aOrderIdList[1]);
|
|
$this->assertSame(
|
|
round((float) $this->dCurrentValue * 100),
|
|
round((float) $oOrder->getFieldData('oxdelcost') * 100)
|
|
);
|
|
}
|
|
}
|