8
0
Usermanager/tests/integration/Requirements/requirementVoucherserieTest.php

236 Zeilen
6.1 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
*/
declare(strict_types=1);
namespace D3\Usermanager\tests\integration\Requirements;
use D3\ModCfg\Application\Model\Exception\d3_cfg_mod_exception;
use D3\ModCfg\Application\Model\Exception\d3ShopCompatibilityAdapterException;
use D3\Usermanager\Application\Model\d3usermanager;
use Exception;
use OxidEsales\Eshop\Core\Exception\DatabaseConnectionException;
use OxidEsales\Eshop\Core\Exception\DatabaseErrorException;
use OxidEsales\Eshop\Core\Exception\StandardException;
class requirementVoucherserieTest extends d3RequirementIntegrationTestCase
{
public $sManagerId = 'managerTestId';
public $aUserIdList = [
'userTestIdNo1',
'userTestIdNo2',
'userTestIdNo3',
'userTestIdNo4',
];
public $aOrderIdList = [
'OrderIdNo1',
'OrderIdNo2',
'OrderIdNo3',
];
public $aVoucherIdList = [
'voucherIdNo1',
'voucherIdNo2',
'voucherIdNo3',
];
public $aVoucherSerieIdList = [
'voucherSerieIdNo1',
'voucherSerieIdNo2',
'voucherSerieIdNo3',
];
/**
* Set up fixture.
* @throws Exception
*/
public function setUp(): void
{
parent::setUp();
$this->createTestData();
}
/**
* Tear down fixture.
*/
public function tearDown(): void
{
$this->cleanTestData();
parent::tearDown();
}
/**
* @throws Exception
*/
public function createTestData()
{
$this->createManager(
$this->sManagerId
);
$this->createUser(
$this->aUserIdList[0],
[
'oxcompany' => __CLASS__,
]
);
$this->createOrder(
$this->aOrderIdList[0],
[
'oxuserid' => $this->aUserIdList[0],
]
);
$this->createBaseModelObject(
'oxvouchers',
$this->aVoucherIdList[0],
[
'oxorderid' => $this->aOrderIdList[0],
'oxuserid' => $this->aUserIdList[0],
'oxvoucherserieid' => $this->aVoucherSerieIdList[0],
]
);
$this->createBaseModelObject(
'oxvoucherseries',
$this->aVoucherSerieIdList[0],
[
'oxserienr' => 'testVoucherSerieNr',
]
);
$this->createUser(
$this->aUserIdList[1],
[
'oxcompany' => __CLASS__,
]
);
$this->createOrder(
$this->aOrderIdList[1],
[
'oxuserid' => $this->aUserIdList[1],
]
);
$this->createBaseModelObject(
'oxvouchers',
$this->aVoucherIdList[1],
[
'oxorderid' => $this->aOrderIdList[1],
'oxuserid' => $this->aUserIdList[1],
'oxvoucherserieid' => $this->aVoucherSerieIdList[1],
]
);
$this->createBaseModelObject(
'oxvoucherseries',
$this->aVoucherSerieIdList[1],
[
'oxserienumber' => 'testfailVoucherSerieNr',
]
);
$this->createUser(
$this->aUserIdList[2],
[
'oxcompany' => __CLASS__,
]
);
$this->createOrder(
$this->aOrderIdList[2],
[
'oxuserid' => $this->aUserIdList[2],
]
);
$this->createBaseModelObject(
'oxvouchers',
$this->aVoucherIdList[2],
[
'oxorderid' => $this->aOrderIdList[2],
'oxuserid' => $this->aUserIdList[2],
'oxvoucherserieid' => $this->aVoucherSerieIdList[2],
'oxvouchernr' => 'testfailVoucherNr',
]
);
$this->createUser(
$this->aUserIdList[3],
[
'oxcompany' => __CLASS__,
]
);
}
public function cleanTestData()
{
$this->deleteManager($this->sManagerId);
foreach ($this->aUserIdList as $sUserId) {
$this->deleteUser($sUserId);
}
foreach ($this->aOrderIdList as $sOrderId) {
$this->deleteOrder($sOrderId);
}
foreach ($this->aVoucherIdList as $sVoucherId) {
$this->deleteBaseModelObject('oxvouchers', $sVoucherId);
}
foreach ($this->aVoucherSerieIdList as $sVoucherSerieId) {
$this->deleteBaseModelObject('oxvoucherseries', $sVoucherSerieId);
}
}
/**
* @return d3usermanager
* @throws Exception
*/
public function getConfiguredManager()
{
$oManager = $this->getManagerMock($this->sManagerId);
$oManager->setValue('blVoucherSerie_status', true);
$oManager->setValue('sVoucherSerieValue', 'testVoucherSerieNr');
return $oManager;
}
/**
* @test
* @throws DatabaseConnectionException
* @throws DatabaseErrorException
* @throws StandardException
* @throws d3ShopCompatibilityAdapterException
* @throws d3_cfg_mod_exception
* @throws Exception
*/
public function requirementsSelectsRightUsersHigher()
{
$oListGenerator = $this->getListGenerator($this->getConfiguredManager());
$oUserList = $oListGenerator->getConcernedItems();
$this->assertGreaterThanOrEqual(1, $oUserList->count());
$this->assertTrue($oUserList->offsetExists($this->aUserIdList[0]));
$this->assertFalse($oUserList->offsetExists($this->aUserIdList[1]));
$this->assertFalse($oUserList->offsetExists($this->aUserIdList[2]));
$this->assertFalse($oUserList->offsetExists($this->aUserIdList[3]));
}
}