Usermanager/tests/integration/Actions/actionExecuteMethodTest.php

130 regels
3.4 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 Exception;
use OxidEsales\Eshop\Application\Model\User;
use OxidEsales\Eshop\Core\Exception\DatabaseConnectionException;
use OxidEsales\Eshop\Core\Exception\DatabaseErrorException;
use OxidEsales\Eshop\Core\Exception\StandardException;
use OxidEsales\Eshop\Core\Model\ListModel;
class actionExecuteMethodTest extends d3ActionIntegrationTestCase
{
public $sManagerId = 'managerTestId';
public $aUserIdList = [
'userTestIdNo1',
'userTestIdNo2',
];
public $given = 'CurrentCity';
public $expected = 'TestCity';
/**
* @throws Exception
*/
public function createTestData()
{
$this->createManager($this->sManagerId);
$this->createUser(
$this->aUserIdList[0],
[
'oxcity' => $this->given,
]
);
$this->createUser(
$this->aUserIdList[1],
[
'oxcity' => $this->given,
]
);
}
/**
* @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()
{
$oManager = $this->getManagerMock($this->sManagerId);
$oManager->setValue('blActionUserExecuteMethod_status', true);
$oManager->setValue('sActionExecuteMethod_name', 'd3usermanagerTestMethod');
$oManager->setValue('blItemExecute', true);
return $oManager;
}
/**
* @return ListModel
* @throws Exception
*/
public function getFilledResultList()
{
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 User $oUser */
$oUser = d3GetOxidDIC()->get('d3ox.usermanager.'.User::class);
$oUser->load($this->aUserIdList[0]);
$this->assertEquals(
$this->expected,
$oUser->getFieldData('oxcity')
);
/** @var User $oUser */
$oUser = d3GetOxidDIC()->get('d3ox.usermanager.'.User::class);
$oUser->load($this->aUserIdList[1]);
$this->assertEquals(
$this->given,
$oUser->getFieldData('oxcity')
);
}
}