* @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 requirementHasVoucherTest extends d3RequirementIntegrationTestCase { public $sManagerId = 'managerTestId'; public $aUserIdList = [ 'userTestIdNo1', 'userTestIdNo2', ]; public $aOrderIdList = [ 'OrderIdNo1', ]; public $aVoucherIdList = [ 'voucherIdNo1', ]; /** * 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' => __CLASS__, ] ); $this->createUser( $this->aUserIdList[1], [ '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); } } /** * @return d3usermanager * @throws Exception */ public function getConfiguredManagerSet() { $oManager = $this->getManagerMock($this->sManagerId); $oManager->setValue('blCheckVoucher_status', true); $oManager->setValue('sCheckVoucherType', 'exist'); return $oManager; } /** * @return d3usermanager * @throws Exception */ public function getConfiguredManagernotset() { $oManager = $this->getManagerMock($this->sManagerId); $oManager->setValue('blCheckVoucher_status', true); $oManager->setValue('sCheckVoucherType', 'notexist'); return $oManager; } /** * @test * @throws DatabaseConnectionException * @throws DatabaseErrorException * @throws StandardException * @throws d3ShopCompatibilityAdapterException * @throws d3_cfg_mod_exception * @throws Exception */ public function requirementsSelectsRightUsersSet() { $oListGenerator = $this->getListGenerator($this->getConfiguredManagerSet()); $oUserList = $oListGenerator->getConcernedItems(); $this->assertTrue( $oUserList->count() >= 1 && $oUserList->offsetExists($this->aUserIdList[0]) && false == $oUserList->offsetExists($this->aUserIdList[1]) ); } /** * @test * @throws DatabaseConnectionException * @throws DatabaseErrorException * @throws StandardException * @throws d3ShopCompatibilityAdapterException * @throws d3_cfg_mod_exception * @throws Exception */ public function requirementsSelectsRightUsersNotSet() { $oListGenerator = $this->getListGenerator($this->getConfiguredManagernotset()); $oUserList = $oListGenerator->getConcernedItems(); $this->assertTrue( $oUserList->count() >= 1 && false == $oUserList->offsetExists($this->aUserIdList[0]) && $oUserList->offsetExists($this->aUserIdList[1]) ); } }