Ordermanager/tests/integration/Requirements/requirementNoArticleContentTest.php

473 regels
15 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\Requirements;
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\Application\Model\Exceptions\d3ordermanager_requirementException;
use Doctrine\DBAL\Exception as DBALException;
use Exception;
use OxidEsales\Eshop\Application\Model\Object2Category;
use OxidEsales\Eshop\Core\Exception\DatabaseConnectionException;
use OxidEsales\Eshop\Core\Exception\DatabaseErrorException;
use OxidEsales\Eshop\Core\Exception\StandardException;
use PHPUnit\Framework\MockObject\MockObject;
/**
* @coversNothing
*/
class requirementNoArticleContentTest extends d3OrdermanagerRequirementIntegrationTestCase
{
public $sManagerId = 'managerTestId';
public $aOrderIdList = [
'orderTestIdNo1',
'orderTestIdNo2',
'orderTestIdNo3',
'orderTestIdNo4',
'orderTestIdNo5',
];
public $aOrderArticleIdList = [
'orderTestIdNo1Article1',
'orderTestIdNo2Article1',
'orderTestIdNo3Article1',
'orderTestIdNo4Article1',
'orderTestIdNo5Article1',
];
public $aArt2CatIdList = [
'a2cTestIdNo1',
];
/**
* Set up fixture.
* @throws Exception
*/
public function setUp(): void
{
parent::setUp();
$this->createTestData();
}
/**
* Tear down fixture.
* @throws DatabaseConnectionException
* @throws DatabaseErrorException
*/
public function tearDown(): void
{
$this->cleanTestData();
parent::tearDown();
}
/**
* @throws Exception
*/
public function createTestData()
{
$this->createManager(
$this->sManagerId
);
$this->createOrder(
$this->aOrderIdList[0],
[
'oxorderdate' => '2018-01-01 00:00:00',
'oxbillcompany' => __CLASS__,
],
[
$this->aOrderArticleIdList[0] => [
'oxartnum' => 'expArtNum1',
'oxtitle' => 'expTitle1',
'oxshortdesc' => 'expShortDesc1',
'oxselvariant' => 'expSelVariant1',
'oxpersparam' => 'expPersParam1',
'oxstorno' => '0',
'oxartid' => 'artIdTestNo1',
],
]
);
$this->createObject(
'd3ox.ordermanager.'.Object2Category::class,
$this->aArt2CatIdList[0],
[
'oxshopid' => '1',
'oxobjectid' => 'artIdTestNo1',
'oxcatnid' => 'catTestId',
]
);
$this->createOrder(
$this->aOrderIdList[1],
[
'oxorderdate' => '2018-01-01 00:00:00',
'oxbillcompany' => __CLASS__,
],
[
$this->aOrderArticleIdList[1] => [
'oxartnum' => 'expArtNum2',
'oxtitle' => 'expTitle2',
'oxshortdesc' => 'expShortDesc2',
'oxselvariant' => 'expSelVariant2',
'oxpersparam' => 'expPersParam2',
'oxstorno' => '0',
'oxorderid' => $this->aOrderIdList[1],
'oxartid' => 'artIdTestNo2',
],
]
);
$this->createOrder(
$this->aOrderIdList[2],
[
'oxorderdate' => '2018-01-01 00:00:00',
'oxbillcompany' => __CLASS__,
],
[
$this->aOrderArticleIdList[2] => [
'oxartnum' => 'expArtNum3',
'oxtitle' => 'expTitle3',
'oxshortdesc' => 'expShortDesc3',
'oxselvariant' => 'expSelVariant3',
'oxpersparam' => 'expPersParam3',
'oxstorno' => '0',
'oxartid' => 'artIdTestNo3',
],
]
);
$this->createOrder(
$this->aOrderIdList[3],
[
'oxorderdate' => '2018-01-01 00:00:00',
'oxbillcompany' => __CLASS__,
],
[
$this->aOrderArticleIdList[3] => [
'oxartnum' => 'expArtNum4',
'oxtitle' => 'expTitle4',
'oxshortdesc' => 'expShortDesc4',
'oxselvariant' => 'expSelVariant4',
'oxpersparam' => 'expPersParam4',
'oxstorno' => '0',
'oxorderid' => $this->aOrderIdList[3],
'oxartid' => 'artIdTestNo4',
],
]
);
$this->createOrder(
$this->aOrderIdList[4],
[
'oxorderdate' => '2018-01-01 00:00:00',
'oxbillcompany' => __CLASS__,
],
[
$this->aOrderArticleIdList[4] => [
'oxartnum' => 'expArtNum5',
'oxtitle' => 'expTitle5',
'oxshortdesc' => 'expShortDesc5',
'oxselvariant' => 'expSelVariant5',
'oxpersparam' => 'expPersParam5',
'oxstorno' => '0',
'oxartid' => 'artIdTestNo5',
],
]
);
}
/**
* @throws DatabaseConnectionException
* @throws DatabaseErrorException
* @throws Exception
*/
public function cleanTestData()
{
$this->deleteManager($this->sManagerId);
foreach ($this->aOrderIdList as $sOrderId) {
$this->deleteOrder($sOrderId);
}
$this->deleteObject('d3ox.ordermanager.'.Object2Category::class, $this->aArt2CatIdList[0]);
}
/**
* @return d3ordermanager
* @throws Exception
*/
public function getConfiguredManagerArtnumAndCatId()
{
$oManager = $this->getManagerMock($this->sManagerId);
$oManager->setValue('blCheckNoOrderArticle1_status', true);
$oManager->setValue('sNoArticleContent1Type', 'oxartnum');
$oManager->setValue('sNoArticleContent1RegExp', 'expArtNum1');
$oManager->setValue('blCheckNoOrderArticle2_status', true);
$oManager->setValue('sNoArticleContent2Type', 'oxcatid');
$oManager->setValue('sNoArticleContent2RegExp', 'catTestId');
return $oManager;
}
/**
* @test
* @throws DBALException
* @throws DatabaseConnectionException
* @throws DatabaseErrorException
* @throws StandardException
* @throws d3ShopCompatibilityAdapterException
* @throws d3_cfg_mod_exception
* @throws Exception
*/
public function requirementsSelectsRightOrdersArtnumAndCatId()
{
$oListGenerator = $this->getListGenerator($this->getConfiguredManagerArtnumAndCatId());
$oOrderList = $oListGenerator->getConcernedItems();
$this->assertTrue(
$oOrderList->count() >= 4
&& false == $oOrderList->offsetExists($this->aOrderIdList[0])
&& $oOrderList->offsetExists($this->aOrderIdList[1])
&& $oOrderList->offsetExists($this->aOrderIdList[2])
&& $oOrderList->offsetExists($this->aOrderIdList[3])
&& $oOrderList->offsetExists($this->aOrderIdList[4])
);
}
/**
* @return d3ordermanager
* @throws Exception
*/
public function getConfiguredManagerTitle()
{
/** @var d3ordermanager $oManager */
$oManager = d3GetOxidDIC()->get(d3ordermanager::class);
$oManager->load($this->sManagerId);
$oManager->setValue('blCheckNoOrderArticle1_status', true);
$oManager->setValue('sNoArticleContent1Type', 'oxtitle');
$oManager->setValue('sNoArticleContent1RegExp', 'expTitle2');
return $oManager;
}
/**
* @test
* @throws DBALException
* @throws DatabaseConnectionException
* @throws DatabaseErrorException
* @throws StandardException
* @throws d3ShopCompatibilityAdapterException
* @throws d3_cfg_mod_exception
* @throws Exception
*/
public function requirementsSelectsRightOrdersTitle()
{
$oListGenerator = $this->getListGenerator($this->getConfiguredManagerTitle());
$oOrderList = $oListGenerator->getConcernedItems();
$this->assertTrue(
$oOrderList->count() >= 4
&& false == $oOrderList->offsetExists($this->aOrderIdList[1])
&& $oOrderList->offsetExists($this->aOrderIdList[0])
&& $oOrderList->offsetExists($this->aOrderIdList[2])
&& $oOrderList->offsetExists($this->aOrderIdList[3])
&& $oOrderList->offsetExists($this->aOrderIdList[4])
);
}
/**
* @return d3ordermanager
* @throws Exception
*/
public function getConfiguredManagerShortDesc()
{
/** @var d3ordermanager $oManager */
$oManager = d3GetOxidDIC()->get(d3ordermanager::class);
$oManager->load($this->sManagerId);
$oManager->setValue('blCheckNoOrderArticle1_status', true);
$oManager->setValue('sNoArticleContent1Type', 'oxshortdesc');
$oManager->setValue('sNoArticleContent1RegExp', 'expShortDesc3');
return $oManager;
}
/**
* @test
* @throws DBALException
* @throws DatabaseConnectionException
* @throws DatabaseErrorException
* @throws StandardException
* @throws d3ShopCompatibilityAdapterException
* @throws d3_cfg_mod_exception
* @throws Exception
*/
public function requirementsSelectsRightOrdersShortDesc()
{
$oListGenerator = $this->getListGenerator($this->getConfiguredManagerShortDesc());
$oOrderList = $oListGenerator->getConcernedItems();
$this->assertTrue(
$oOrderList->count() >= 4
&& false == $oOrderList->offsetExists($this->aOrderIdList[2])
&& $oOrderList->offsetExists($this->aOrderIdList[0])
&& $oOrderList->offsetExists($this->aOrderIdList[1])
&& $oOrderList->offsetExists($this->aOrderIdList[3])
&& $oOrderList->offsetExists($this->aOrderIdList[4])
);
}
/**
* @return d3ordermanager
* @throws Exception
*/
public function getConfiguredManagerSelVariant()
{
/** @var d3ordermanager $oManager */
$oManager = d3GetOxidDIC()->get(d3ordermanager::class);
$oManager->load($this->sManagerId);
$oManager->setValue('blCheckNoOrderArticle1_status', true);
$oManager->setValue('sNoArticleContent1Type', 'oxselvariant');
$oManager->setValue('sNoArticleContent1RegExp', 'expSelVariant4');
return $oManager;
}
/**
* @test
* @throws DBALException
* @throws DatabaseConnectionException
* @throws DatabaseErrorException
* @throws StandardException
* @throws d3ShopCompatibilityAdapterException
* @throws d3_cfg_mod_exception
* @throws Exception
*/
public function requirementsSelectsRightOrdersSelVariant()
{
$oListGenerator = $this->getListGenerator($this->getConfiguredManagerSelVariant());
$oOrderList = $oListGenerator->getConcernedItems();
$this->assertTrue(
$oOrderList->count() >= 4
&& false == $oOrderList->offsetExists($this->aOrderIdList[3])
&& $oOrderList->offsetExists($this->aOrderIdList[0])
&& $oOrderList->offsetExists($this->aOrderIdList[1])
&& $oOrderList->offsetExists($this->aOrderIdList[2])
&& $oOrderList->offsetExists($this->aOrderIdList[4])
);
}
/**
* @return d3ordermanager
* @throws Exception
*/
public function getConfiguredManagerPersParams()
{
/** @var d3ordermanager $oManager */
$oManager = d3GetOxidDIC()->get(d3ordermanager::class);
$oManager->load($this->sManagerId);
$oManager->setValue('blCheckNoOrderArticle1_status', true);
$oManager->setValue('sNoArticleContent1Type', 'oxpersparam');
$oManager->setValue('sNoArticleContent1RegExp', 'expPersParam5');
return $oManager;
}
/**
* @test
* @throws DBALException
* @throws DatabaseConnectionException
* @throws DatabaseErrorException
* @throws StandardException
* @throws d3ShopCompatibilityAdapterException
* @throws d3_cfg_mod_exception
* @throws Exception
*/
public function requirementsSelectsRightOrdersPersParams()
{
$oListGenerator = $this->getListGenerator($this->getConfiguredManagerPersParams());
$oOrderList = $oListGenerator->getConcernedItems();
$this->assertTrue(
$oOrderList->count() >= 4
&& false == $oOrderList->offsetExists($this->aOrderIdList[4])
&& $oOrderList->offsetExists($this->aOrderIdList[0])
&& $oOrderList->offsetExists($this->aOrderIdList[1])
&& $oOrderList->offsetExists($this->aOrderIdList[2])
&& $oOrderList->offsetExists($this->aOrderIdList[3])
);
}
/**
* @param $invalidValue
*
* @return d3ordermanager|MockObject
* @throws DBALException
* @throws DatabaseConnectionException
* @throws DatabaseErrorException
*/
public function getConfiguredManagerNoValidConfig($invalidValue)
{
$oManager = $this->getManagerMock($this->sManagerId);
$oManager->setValue('blCheckNoOrderArticle1_status', true);
$oManager->setValue('sNoArticleContent1Type', $invalidValue);
return $oManager;
}
/**
* @test
* @param $testValue
* @throws DBALException
* @throws DatabaseConnectionException
* @throws DatabaseErrorException
* @throws StandardException
* @throws d3ShopCompatibilityAdapterException
* @throws d3_cfg_mod_exception
* @throws Exception
* @dataProvider requirementsSelectsRightOrdersNoValidConfigDataProvider
*/
public function requirementsSelectsRightOrdersNoValidConfig($testValue)
{
$this->expectException(d3ordermanager_requirementException::class);
$oListGenerator = $this->getListGenerator($this->getConfiguredManagerNoValidConfig($testValue));
$oListGenerator->getConcernedItems();
}
/**
* @return array
*/
public function requirementsSelectsRightOrdersNoValidConfigDataProvider(): array
{
return [
'unknown'=> ['unknownValue'],
'space' => [' '],
'empty' => [''],
'false' => [false],
];
}
}