* @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 requirementOrderMinCountTest extends d3RequirementIntegrationTestCase { public $sManagerId = 'managerTestId'; public $aUserIdList = [ 'userTestIdNo1', 'userTestIdNo2', 'userTestIdNo3', ]; public $aOrderIdList = [ 'orderTestIdNo1', 'orderTestIdNo2', 'orderTestIdNo3', ]; /** * 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] ); $this->createOrder( $this->aOrderIdList[0], [ 'oxorderdate' => '2018-01-01 00:00:00', 'oxuserid' => $this->aUserIdList[0], 'oxbillcompany' => __CLASS__, ] ); $this->createOrder( $this->aOrderIdList[1], [ 'oxorderdate' => '2018-01-01 00:00:00', 'oxuserid' => $this->aUserIdList[0], 'oxbillcompany' => __CLASS__, ] ); $this->createUser( $this->aUserIdList[1] ); $this->createOrder( $this->aOrderIdList[2], [ 'oxuserid' => $this->aUserIdList[1], 'oxorderdate' => '2018-01-01 00:00:00', 'oxbillcompany' => __CLASS__, 'oxlang' => 98, ] ); $this->createUser( $this->aUserIdList[2] ); } public function cleanTestData() { $this->deleteManager($this->sManagerId); foreach ($this->aUserIdList as $sUserId) { $this->deleteUser($sUserId); } foreach ($this->aOrderIdList as $sOrderId) { $this->deleteOrder($sOrderId); } } /** * @return d3usermanager * @throws Exception */ public function getConfiguredManagerSingle() { $oManager = $this->getManagerMock($this->sManagerId); $oManager->setValue('blCheckMinOrderCount_status', true); $oManager->setValue('sCheckMinOrderCountValue', '1'); return $oManager; } /** * @test * @throws DatabaseConnectionException * @throws DatabaseErrorException * @throws StandardException * @throws d3ShopCompatibilityAdapterException * @throws d3_cfg_mod_exception * @throws Exception */ public function requirementsSelectsRightUsersSingle() { $oListGenerator = $this->getListGenerator($this->getConfiguredManagerSingle()); $oUserList = $oListGenerator->getConcernedItems(); $this->assertTrue( $oUserList->count() >= 2 && $oUserList->offsetExists($this->aUserIdList[0]) && $oUserList->offsetExists($this->aUserIdList[1]) && false == $oUserList->offsetExists($this->aUserIdList[2]) ); } /** * @return d3usermanager * @throws Exception */ public function getConfiguredManagerMulti() { $oManager = $this->getManagerMock($this->sManagerId); $oManager->setValue('blCheckMinOrderCount_status', true); $oManager->setValue('sCheckMinOrderCountValue', '2'); return $oManager; } /** * @test * @throws DatabaseConnectionException * @throws DatabaseErrorException * @throws StandardException * @throws d3ShopCompatibilityAdapterException * @throws d3_cfg_mod_exception * @throws Exception */ public function requirementsSelectsRightUsersMulti() { $oListGenerator = $this->getListGenerator($this->getConfiguredManagerMulti()); $oUserList = $oListGenerator->getConcernedItems(); $this->assertTrue( $oUserList->count() >= 1 && $oUserList->offsetExists($this->aUserIdList[0]) && false == $oUserList->offsetExists($this->aUserIdList[1]) && false == $oUserList->offsetExists($this->aUserIdList[2]) ); } }