8
0
Ordermanager/tests/integration/Requirements/requirementFromOrderNrTest.php

223 Zeilen
6.0 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\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\Core\Exception\DatabaseConnectionException;
use OxidEsales\Eshop\Core\Exception\DatabaseErrorException;
use OxidEsales\Eshop\Core\Exception\StandardException;
use PHPUnit\Framework\MockObject\MockObject;
/**
* @coversNothing
*/
class requirementFromOrderNrTest extends d3OrdermanagerRequirementIntegrationTestCase
{
public $sManagerId = 'managerTestId';
public $aOrderIdList = [
'orderTestIdNo1',
'orderTestIdNo2',
'orderTestIdNo3',
];
public $aOrderArticleIdList = [
'orderTestIdNo1Article1',
'orderTestIdNo2Article1',
'orderTestIdNo3Article1',
];
/**
* 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__,
'oxordernr' => '5432',
],
[
$this->aOrderArticleIdList[0] => [
'oxtitle' => __CLASS__,
],
]
);
$this->createOrder(
$this->aOrderIdList[1],
[
'oxorderdate' => '2018-01-01 00:00:00',
'oxbillcompany' => __CLASS__,
'oxordernr' => '5433',
],
[
$this->aOrderArticleIdList[1] => [
'oxtitle' => __CLASS__,
],
]
);
$this->createOrder(
$this->aOrderIdList[2],
[
'oxorderdate' => '2018-01-01 00:00:00',
'oxbillcompany' => __CLASS__,
'oxordernr' => '5431',
],
[
$this->aOrderArticleIdList[2] => [
'oxtitle' => __CLASS__,
],
]
);
}
/**
* @throws DatabaseConnectionException
* @throws DatabaseErrorException
* @throws Exception
*/
public function cleanTestData()
{
$this->deleteManager($this->sManagerId);
foreach ($this->aOrderIdList as $sOrderId) {
$this->deleteOrder($sOrderId);
}
}
/**
* @return d3ordermanager
* @throws Exception
*/
public function getConfiguredManager()
{
$oManager = $this->getManagerMock($this->sManagerId);
$oManager->setValue('blCheckFromOrderNr_status', true);
$oManager->setValue('sFromOrderNrValue', '5432');
return $oManager;
}
/**
* @test
* @throws DBALException
* @throws DatabaseConnectionException
* @throws DatabaseErrorException
* @throws StandardException
* @throws d3ShopCompatibilityAdapterException
* @throws d3_cfg_mod_exception
* @throws Exception
*/
public function requirementsSelectsRightOrders()
{
$oListGenerator = $this->getListGenerator($this->getConfiguredManager());
$oOrderList = $oListGenerator->getConcernedItems();
$this->assertTrue(
$oOrderList->count() >= 2
&& $oOrderList->offsetExists($this->aOrderIdList[0])
&& $oOrderList->offsetExists($this->aOrderIdList[1])
&& false == $oOrderList->offsetExists($this->aOrderIdList[2])
);
}
/**
* @param $invalidValue
*
* @return d3ordermanager|MockObject
* @throws DBALException
* @throws DatabaseConnectionException
* @throws DatabaseErrorException
*/
public function getConfiguredManagerNoValidConfig($invalidValue)
{
$oManager = $this->getManagerMock($this->sManagerId);
$oManager->setValue('blCheckFromOrderNr_status', true);
$oManager->setValue('sFromOrderNrValue', $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'=> [null],
'space' => [' '],
'empty' => [''],
'false' => [false],
];
}
}