125 lines
3.7 KiB
PHP
125 lines
3.7 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\Actions;
|
||
|
|
||
|
use D3\ModCfg\Application\Model\Exception\d3_cfg_mod_exception;
|
||
|
use D3\ModCfg\Application\Model\Exception\d3ShopCompatibilityAdapterException;
|
||
|
use D3\Usermanager\Application\Model\d3usermanager;
|
||
|
use Doctrine\DBAL\Exception as DoctrineException;
|
||
|
use Doctrine\DBAL\Query\QueryBuilder;
|
||
|
use Exception;
|
||
|
use OxidEsales\Eshop\Core\Exception\DatabaseConnectionException;
|
||
|
use OxidEsales\Eshop\Core\Exception\DatabaseErrorException;
|
||
|
use OxidEsales\Eshop\Core\Exception\StandardException;
|
||
|
use OxidEsales\Eshop\Core\Model\ListModel;
|
||
|
use OxidEsales\EshopCommunity\Internal\Container\ContainerFactory;
|
||
|
use OxidEsales\EshopCommunity\Internal\Framework\Database\QueryBuilderFactoryInterface;
|
||
|
|
||
|
class actionDeleteUserTest extends d3ActionIntegrationTestCase
|
||
|
{
|
||
|
public $sManagerId = 'managerTestId';
|
||
|
|
||
|
public $aUserIdList = [
|
||
|
'userTestIdNo1',
|
||
|
'userTestIdNo2',
|
||
|
];
|
||
|
|
||
|
/**
|
||
|
* @throws Exception
|
||
|
*/
|
||
|
public function createTestData()
|
||
|
{
|
||
|
$this->createManager($this->sManagerId);
|
||
|
|
||
|
$this->createUser($this->aUserIdList[0]);
|
||
|
$this->createUser($this->aUserIdList[1]);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @throws DoctrineException
|
||
|
*/
|
||
|
public function cleanTestData()
|
||
|
{
|
||
|
$this->deleteManager($this->sManagerId);
|
||
|
$this->deleteUser($this->aUserIdList[0]);
|
||
|
$this->deleteUser($this->aUserIdList[1]);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return d3usermanager
|
||
|
* @throws Exception
|
||
|
*/
|
||
|
public function getConfiguredManager(): d3usermanager
|
||
|
{
|
||
|
$oManager = $this->getManagerMock($this->sManagerId);
|
||
|
|
||
|
$oManager->setValue('blActionCustDelete_status', true);
|
||
|
$oManager->setValue('blItemExecute', true);
|
||
|
|
||
|
return $oManager;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return ListModel
|
||
|
* @throws Exception
|
||
|
*/
|
||
|
public function getFilledResultList(): ListModel
|
||
|
{
|
||
|
return $this->getResultList([$this->aUserIdList[0]]);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @test
|
||
|
* @throws DatabaseConnectionException
|
||
|
* @throws DatabaseErrorException
|
||
|
* @throws StandardException
|
||
|
* @throws d3ShopCompatibilityAdapterException
|
||
|
* @throws d3_cfg_mod_exception
|
||
|
* @throws Exception
|
||
|
*/
|
||
|
public function actionChangeConcernedUser()
|
||
|
{
|
||
|
$oExecute = $this->getExecuteMock($this->getConfiguredManager());
|
||
|
$oExecute->startJobItemExecution();
|
||
|
|
||
|
/** @var QueryBuilder $queryBuilder */
|
||
|
$queryBuilder = ContainerFactory::getInstance()->getContainer()->get(QueryBuilderFactoryInterface::class)->create();
|
||
|
$queryBuilder->select('count(*)')
|
||
|
->from('oxuser')
|
||
|
->where(
|
||
|
$queryBuilder->expr()->in('oxid', [$queryBuilder->createNamedParameter($this->aUserIdList[0])])
|
||
|
);
|
||
|
$this->assertSame(
|
||
|
0,
|
||
|
(int)$queryBuilder->execute()->fetchOne()
|
||
|
);
|
||
|
|
||
|
/** @var QueryBuilder $queryBuilder */
|
||
|
$queryBuilder = ContainerFactory::getInstance()->getContainer()->get(QueryBuilderFactoryInterface::class)->create();
|
||
|
$queryBuilder->select('count(*)')
|
||
|
->from('oxuser')
|
||
|
->where(
|
||
|
$queryBuilder->expr()->in('oxid', [$queryBuilder->createNamedParameter($this->aUserIdList[1])])
|
||
|
);
|
||
|
$this->assertSame(
|
||
|
1,
|
||
|
(int)$queryBuilder->execute()->fetchOne()
|
||
|
);
|
||
|
}
|
||
|
}
|