577 regels
21 KiB
PHP
577 regels
21 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\ModCfg\Application\Model\Log\d3NullLogger;
|
|
use D3\Usermanager\Application\Model\d3usermanager;
|
|
use Doctrine\DBAL\Exception as DoctrineException;
|
|
use Doctrine\DBAL\Query\QueryBuilder;
|
|
use Exception;
|
|
use OxidEsales\Eshop\Application\Model\Object2Group;
|
|
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 actionDeleteFromGroupTest extends d3ActionIntegrationTestCase
|
|
{
|
|
public $sManagerId = 'managerTestId';
|
|
public $aUserIdList = [
|
|
'userTestIdNo1',
|
|
'userTestIdNo2',
|
|
];
|
|
public $aO2GroupIdList = [
|
|
'o2groupTestIdNo1',
|
|
'o2groupTestIdNo2',
|
|
'o2groupTestIdNo3',
|
|
];
|
|
public $aGroupsIdList = [
|
|
'groupTestIdNo1',
|
|
'groupTestIdNo2',
|
|
];
|
|
|
|
/**
|
|
* @throws Exception
|
|
*/
|
|
public function createTestData()
|
|
{
|
|
$this->createManager($this->sManagerId);
|
|
|
|
$this->createGroup($this->aGroupsIdList[0]);
|
|
$this->createGroup($this->aGroupsIdList[1]);
|
|
|
|
$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]);
|
|
$this->deleteObject('d3ox.usermanager.'.Object2Group::class, $this->aO2GroupIdList[0]);
|
|
|
|
foreach ([$this->aUserIdList[0], $this->aUserIdList[1]] as $userItem) {
|
|
/** @var QueryBuilder $queryBuilder */
|
|
$queryBuilder = ContainerFactory::getInstance()->getContainer()->get(QueryBuilderFactoryInterface::class)->create();
|
|
$queryBuilder->delete('oxobject2group')
|
|
->where(
|
|
$queryBuilder->expr()->eq('oxobjectid', $queryBuilder->createNamedParameter($userItem))
|
|
);
|
|
$queryBuilder->execute();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @return d3usermanager
|
|
* @throws Exception
|
|
*/
|
|
public function getConfiguredManagerSingleGroupsExists()
|
|
{
|
|
$oManager = $this->getManagerMock($this->sManagerId);
|
|
|
|
$oManager->setValue('blActionCustFromGroup_status', true);
|
|
$oManager->setValue('aCustRemoveGroup', [$this->aGroupsIdList[0]]);
|
|
$oManager->setValue('blItemExecute', true);
|
|
|
|
return $oManager;
|
|
}
|
|
|
|
/**
|
|
* @return d3usermanager
|
|
* @throws Exception
|
|
*/
|
|
public function getConfiguredManagerMultiGroupsExists()
|
|
{
|
|
$oManager = $this->getManagerMock($this->sManagerId);
|
|
|
|
$oManager->setValue('blActionCustFromGroup_status', true);
|
|
$oManager->setValue('aCustRemoveGroup', [$this->aGroupsIdList[0], $this->aGroupsIdList[1]]);
|
|
$oManager->setValue('blItemExecute', true);
|
|
|
|
return $oManager;
|
|
}
|
|
|
|
/**
|
|
* @return d3usermanager
|
|
* @throws Exception
|
|
*/
|
|
public function getConfiguredManagerSingleGroupsNotExists()
|
|
{
|
|
$oManager = $this->getManagerMock($this->sManagerId);
|
|
|
|
$oManager->setValue('blActionCustFromGroup_status', true);
|
|
$oManager->setValue('aCustRemoveGroup', ['unknownGroupId']);
|
|
$oManager->setValue('blItemExecute', true);
|
|
|
|
return $oManager;
|
|
}
|
|
|
|
/**
|
|
* @return d3usermanager
|
|
* @throws Exception
|
|
*/
|
|
public function getConfiguredManagerNoGroups()
|
|
{
|
|
$oManager = $this->getManagerMock($this->sManagerId);
|
|
|
|
$oManager->setValue('blActionCustFromGroup_status', true);
|
|
$oManager->setValue('aCustRemoveGroup', []);
|
|
$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 actionChangeConcernedUserSingleGroupsExistsAssigned()
|
|
{
|
|
$this->createObject(
|
|
'd3ox.usermanager.'.Object2Group::class,
|
|
$this->aO2GroupIdList[0],
|
|
[
|
|
'oxshopid' => 1,
|
|
'oxobjectid' => $this->aUserIdList[0],
|
|
'oxgroupsid' => $this->aGroupsIdList[0],
|
|
]
|
|
);
|
|
|
|
$this->createObject(
|
|
'd3ox.usermanager.'.Object2Group::class,
|
|
$this->aO2GroupIdList[1],
|
|
[
|
|
'oxshopid' => 1,
|
|
'oxobjectid' => $this->aUserIdList[0],
|
|
'oxgroupsid' => $this->aGroupsIdList[1],
|
|
]
|
|
);
|
|
|
|
$this->createObject(
|
|
'd3ox.usermanager.'.Object2Group::class,
|
|
$this->aO2GroupIdList[3],
|
|
[
|
|
'oxshopid' => 1,
|
|
'oxobjectid' => $this->aUserIdList[1],
|
|
'oxgroupsid' => $this->aGroupsIdList[0],
|
|
]
|
|
);
|
|
|
|
$oExecute = $this->getExecuteMock($this->getConfiguredManagerSingleGroupsExists());
|
|
$oExecute->startJobItemExecution();
|
|
|
|
// check assignment pass
|
|
/** @var QueryBuilder $queryBuilder */
|
|
$queryBuilder = ContainerFactory::getInstance()->getContainer()->get(QueryBuilderFactoryInterface::class)->create();
|
|
$queryBuilder->select('count(*)')
|
|
->from('oxobject2group')
|
|
->where(
|
|
$queryBuilder->expr()->and(
|
|
$queryBuilder->expr()->eq('oxobjectid', $queryBuilder->createNamedParameter($this->aUserIdList[0])),
|
|
$queryBuilder->expr()->in('oxgroupsid', [$queryBuilder->createNamedParameter($this->aGroupsIdList[1])]),
|
|
$queryBuilder->expr()->notIn('oxgroupsid', [$queryBuilder->createNamedParameter($this->aGroupsIdList[0])])
|
|
)
|
|
);
|
|
$this->assertSame(
|
|
1,
|
|
(int) $queryBuilder->execute()->fetchOne()
|
|
);
|
|
|
|
// check other assignments
|
|
/** @var QueryBuilder $queryBuilder */
|
|
$queryBuilder = ContainerFactory::getInstance()->getContainer()->get(QueryBuilderFactoryInterface::class)->create();
|
|
$queryBuilder->select('count(*)')
|
|
->from('oxobject2group')
|
|
->where(
|
|
$queryBuilder->expr()->and(
|
|
$queryBuilder->expr()->eq('oxobjectid', $queryBuilder->createNamedParameter($this->aUserIdList[1])),
|
|
$queryBuilder->expr()->in('oxgroupsid', [$queryBuilder->createNamedParameter($this->aGroupsIdList[0])])
|
|
)
|
|
);
|
|
$this->assertSame(
|
|
1,
|
|
(int) $queryBuilder->execute()->fetchOne()
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
* @throws DatabaseConnectionException
|
|
* @throws DatabaseErrorException
|
|
* @throws StandardException
|
|
* @throws d3ShopCompatibilityAdapterException
|
|
* @throws d3_cfg_mod_exception
|
|
* @throws Exception
|
|
*/
|
|
public function actionChangeConcernedUserMultiGroupsExistsAssigned()
|
|
{
|
|
$this->createObject(
|
|
'd3ox.usermanager.'.Object2Group::class,
|
|
$this->aO2GroupIdList[0],
|
|
[
|
|
'oxshopid' => 1,
|
|
'oxobjectid' => $this->aUserIdList[0],
|
|
'oxgroupsid' => $this->aGroupsIdList[0],
|
|
]
|
|
);
|
|
|
|
$this->createObject(
|
|
'd3ox.usermanager.'.Object2Group::class,
|
|
$this->aO2GroupIdList[1],
|
|
[
|
|
'oxshopid' => 1,
|
|
'oxobjectid' => $this->aUserIdList[0],
|
|
'oxgroupsid' => $this->aGroupsIdList[1],
|
|
]
|
|
);
|
|
|
|
$this->createObject(
|
|
'd3ox.usermanager.'.Object2Group::class,
|
|
$this->aO2GroupIdList[2],
|
|
[
|
|
'oxshopid' => 1,
|
|
'oxobjectid' => $this->aUserIdList[1],
|
|
'oxgroupsid' => $this->aGroupsIdList[0],
|
|
]
|
|
);
|
|
|
|
$oExecute = $this->getExecuteMock($this->getConfiguredManagerMultiGroupsExists());
|
|
$oExecute->startJobItemExecution();
|
|
|
|
// check assignment pass
|
|
/** @var QueryBuilder $queryBuilder */
|
|
$queryBuilder = ContainerFactory::getInstance()->getContainer()->get(QueryBuilderFactoryInterface::class)->create();
|
|
$queryBuilder->select('count(*)')
|
|
->from('oxobject2group')
|
|
->where(
|
|
$queryBuilder->expr()->and(
|
|
$queryBuilder->expr()->eq('oxobjectid', $queryBuilder->createNamedParameter($this->aUserIdList[0])),
|
|
$queryBuilder->expr()->in('oxgroupsid', [
|
|
$queryBuilder->createNamedParameter($this->aGroupsIdList[0]),
|
|
$queryBuilder->createNamedParameter($this->aGroupsIdList[1]),
|
|
])
|
|
)
|
|
);
|
|
$this->assertSame(
|
|
0,
|
|
(int) $queryBuilder->execute()->fetchOne()
|
|
);
|
|
|
|
// check other assignments
|
|
/** @var QueryBuilder $queryBuilder */
|
|
$queryBuilder = ContainerFactory::getInstance()->getContainer()->get(QueryBuilderFactoryInterface::class)->create();
|
|
$queryBuilder->select('count(*)')
|
|
->from('oxobject2group')
|
|
->where(
|
|
$queryBuilder->expr()->and(
|
|
$queryBuilder->expr()->eq('oxobjectid', $queryBuilder->createNamedParameter($this->aUserIdList[1])),
|
|
$queryBuilder->expr()->in('oxgroupsid', [$queryBuilder->createNamedParameter($this->aGroupsIdList[0])])
|
|
)
|
|
);
|
|
$this->assertSame(
|
|
1,
|
|
(int) $queryBuilder->execute()->fetchOne()
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
* @throws DatabaseConnectionException
|
|
* @throws DatabaseErrorException
|
|
* @throws StandardException
|
|
* @throws d3ShopCompatibilityAdapterException
|
|
* @throws d3_cfg_mod_exception
|
|
* @throws Exception
|
|
*/
|
|
public function actionChangeConcernedUserSingleGroupsExistsNotAssigned()
|
|
{
|
|
$this->createObject(
|
|
'd3ox.usermanager.'.Object2Group::class,
|
|
$this->aO2GroupIdList[0],
|
|
[
|
|
'oxshopid' => 1,
|
|
'oxobjectid' => $this->aUserIdList[0],
|
|
'oxgroupsid' => $this->aGroupsIdList[1],
|
|
]
|
|
);
|
|
|
|
$this->createObject(
|
|
'd3ox.usermanager.'.Object2Group::class,
|
|
$this->aO2GroupIdList[1],
|
|
[
|
|
'oxshopid' => 1,
|
|
'oxobjectid' => $this->aUserIdList[1],
|
|
'oxgroupsid' => $this->aGroupsIdList[0],
|
|
]
|
|
);
|
|
|
|
$oExecute = $this->getExecuteMock($this->getConfiguredManagerSingleGroupsExists());
|
|
$oExecute->startJobItemExecution();
|
|
|
|
// check assignment pass
|
|
/** @var QueryBuilder $queryBuilder */
|
|
$queryBuilder = ContainerFactory::getInstance()->getContainer()->get(QueryBuilderFactoryInterface::class)->create();
|
|
$queryBuilder->select('count(*)')
|
|
->from('oxobject2group')
|
|
->where(
|
|
$queryBuilder->expr()->and(
|
|
$queryBuilder->expr()->eq('oxobjectid', $queryBuilder->createNamedParameter($this->aUserIdList[0])),
|
|
$queryBuilder->expr()->in('oxgroupsid', [
|
|
$queryBuilder->createNamedParameter($this->aGroupsIdList[0]),
|
|
$queryBuilder->createNamedParameter($this->aGroupsIdList[1]),
|
|
])
|
|
)
|
|
);
|
|
$this->assertSame(
|
|
1,
|
|
(int) $queryBuilder->execute()->fetchOne()
|
|
);
|
|
|
|
// check other assignments
|
|
/** @var QueryBuilder $queryBuilder */
|
|
$queryBuilder = ContainerFactory::getInstance()->getContainer()->get(QueryBuilderFactoryInterface::class)->create();
|
|
$queryBuilder->select('count(*)')
|
|
->from('oxobject2group')
|
|
->where(
|
|
$queryBuilder->expr()->and(
|
|
$queryBuilder->expr()->eq('oxobjectid', $queryBuilder->createNamedParameter($this->aUserIdList[1])),
|
|
$queryBuilder->expr()->in('oxgroupsid', [$queryBuilder->createNamedParameter($this->aGroupsIdList[0])])
|
|
)
|
|
);
|
|
$this->assertSame(
|
|
1,
|
|
(int) $queryBuilder->execute()->fetchOne()
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
* @throws DatabaseConnectionException
|
|
* @throws DatabaseErrorException
|
|
* @throws StandardException
|
|
* @throws d3ShopCompatibilityAdapterException
|
|
* @throws d3_cfg_mod_exception
|
|
* @throws Exception
|
|
*/
|
|
public function actionChangeConcernedUserSingleGroupsNotExistsNotAssigned()
|
|
{
|
|
$this->createObject(
|
|
'd3ox.usermanager.'.Object2Group::class,
|
|
$this->aO2GroupIdList[0],
|
|
[
|
|
'oxshopid' => 1,
|
|
'oxobjectid' => $this->aUserIdList[0],
|
|
'oxgroupsid' => $this->aGroupsIdList[0],
|
|
]
|
|
);
|
|
|
|
$this->createObject(
|
|
'd3ox.usermanager.'.Object2Group::class,
|
|
$this->aO2GroupIdList[1],
|
|
[
|
|
'oxshopid' => 1,
|
|
'oxobjectid' => $this->aUserIdList[0],
|
|
'oxgroupsid' => $this->aGroupsIdList[1],
|
|
]
|
|
);
|
|
|
|
$this->createObject(
|
|
'd3ox.usermanager.'.Object2Group::class,
|
|
$this->aO2GroupIdList[2],
|
|
[
|
|
'oxshopid' => 1,
|
|
'oxobjectid' => $this->aUserIdList[1],
|
|
'oxgroupsid' => $this->aGroupsIdList[0],
|
|
]
|
|
);
|
|
|
|
d3GetOxidDIC()->set('d3ox.usermanager.Logger', d3GetOxidDIC()->get(d3NullLogger::class));
|
|
|
|
$oExecute = $this->getExecuteMock($this->getConfiguredManagerSingleGroupsNotExists());
|
|
$oExecute->startJobItemExecution();
|
|
|
|
// check assignment pass
|
|
/** @var QueryBuilder $queryBuilder */
|
|
$queryBuilder = ContainerFactory::getInstance()->getContainer()->get(QueryBuilderFactoryInterface::class)->create();
|
|
$queryBuilder->select('count(*)')
|
|
->from('oxobject2group')
|
|
->where(
|
|
$queryBuilder->expr()->and(
|
|
$queryBuilder->expr()->eq('oxobjectid', $queryBuilder->createNamedParameter($this->aUserIdList[0])),
|
|
$queryBuilder->expr()->in('oxgroupsid', [
|
|
$queryBuilder->createNamedParameter($this->aGroupsIdList[0]),
|
|
$queryBuilder->createNamedParameter($this->aGroupsIdList[1]),
|
|
])
|
|
)
|
|
);
|
|
$this->assertSame(
|
|
2,
|
|
(int) $queryBuilder->execute()->fetchOne()
|
|
);
|
|
|
|
// check other assignments
|
|
/** @var QueryBuilder $queryBuilder */
|
|
$queryBuilder = ContainerFactory::getInstance()->getContainer()->get(QueryBuilderFactoryInterface::class)->create();
|
|
$queryBuilder->select('count(*)')
|
|
->from('oxobject2group')
|
|
->where(
|
|
$queryBuilder->expr()->and(
|
|
$queryBuilder->expr()->eq('oxobjectid', $queryBuilder->createNamedParameter($this->aUserIdList[0])),
|
|
$queryBuilder->expr()->in('oxgroupsid', [$queryBuilder->createNamedParameter('unknownGroupId')])
|
|
)
|
|
);
|
|
$this->assertSame(
|
|
0,
|
|
(int) $queryBuilder->execute()->fetchOne()
|
|
);
|
|
|
|
/** @var QueryBuilder $queryBuilder */
|
|
$queryBuilder = ContainerFactory::getInstance()->getContainer()->get(QueryBuilderFactoryInterface::class)->create();
|
|
$queryBuilder->select('count(*)')
|
|
->from('oxobject2group')
|
|
->where(
|
|
$queryBuilder->expr()->and(
|
|
$queryBuilder->expr()->neq('oxobjectid', $queryBuilder->createNamedParameter($this->aUserIdList[0])),
|
|
$queryBuilder->expr()->in('oxgroupsid', [$queryBuilder->createNamedParameter('unknownGroupId')])
|
|
)
|
|
);
|
|
$this->assertSame(
|
|
0,
|
|
(int) $queryBuilder->execute()->fetchOne()
|
|
);
|
|
|
|
/** @var QueryBuilder $queryBuilder */
|
|
$queryBuilder = ContainerFactory::getInstance()->getContainer()->get(QueryBuilderFactoryInterface::class)->create();
|
|
$queryBuilder->select('count(*)')
|
|
->from('oxobject2group')
|
|
->where(
|
|
$queryBuilder->expr()->and(
|
|
$queryBuilder->expr()->eq('oxobjectid', $queryBuilder->createNamedParameter($this->aUserIdList[1])),
|
|
$queryBuilder->expr()->in('oxgroupsid', [$queryBuilder->createNamedParameter($this->aGroupsIdList[0])])
|
|
)
|
|
);
|
|
$this->assertSame(
|
|
1,
|
|
(int) $queryBuilder->execute()->fetchOne()
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
* @throws DatabaseConnectionException
|
|
* @throws DatabaseErrorException
|
|
* @throws StandardException
|
|
* @throws d3ShopCompatibilityAdapterException
|
|
* @throws d3_cfg_mod_exception
|
|
* @throws Exception
|
|
*/
|
|
public function actionChangeConcernedUserNoGroups()
|
|
{
|
|
$this->createObject(
|
|
'd3ox.usermanager.'.Object2Group::class,
|
|
$this->aO2GroupIdList[0],
|
|
[
|
|
'oxshopid' => 1,
|
|
'oxobjectid' => $this->aUserIdList[0],
|
|
'oxgroupsid' => $this->aGroupsIdList[0],
|
|
]
|
|
);
|
|
|
|
$this->createObject(
|
|
'd3ox.usermanager.'.Object2Group::class,
|
|
$this->aO2GroupIdList[1],
|
|
[
|
|
'oxshopid' => 1,
|
|
'oxobjectid' => $this->aUserIdList[0],
|
|
'oxgroupsid' => $this->aGroupsIdList[1],
|
|
]
|
|
);
|
|
|
|
$this->createObject(
|
|
'd3ox.usermanager.'.Object2Group::class,
|
|
$this->aO2GroupIdList[2],
|
|
[
|
|
'oxshopid' => 1,
|
|
'oxobjectid' => $this->aUserIdList[1],
|
|
'oxgroupsid' => $this->aGroupsIdList[0],
|
|
]
|
|
);
|
|
|
|
d3GetOxidDIC()->set('d3ox.usermanager.Logger', d3GetOxidDIC()->get(d3NullLogger::class));
|
|
|
|
$oExecute = $this->getExecuteMock($this->getConfiguredManagerNoGroups());
|
|
$oExecute->startJobItemExecution();
|
|
|
|
// check assignment pass
|
|
/** @var QueryBuilder $queryBuilder */
|
|
$queryBuilder = ContainerFactory::getInstance()->getContainer()->get(QueryBuilderFactoryInterface::class)->create();
|
|
$queryBuilder->select('count(*)')
|
|
->from('oxobject2group')
|
|
->where(
|
|
$queryBuilder->expr()->and(
|
|
$queryBuilder->expr()->eq('oxobjectid', $queryBuilder->createNamedParameter($this->aUserIdList[0])),
|
|
$queryBuilder->expr()->in('oxgroupsid', [
|
|
$queryBuilder->createNamedParameter($this->aGroupsIdList[0]),
|
|
$queryBuilder->createNamedParameter($this->aGroupsIdList[1]),
|
|
])
|
|
)
|
|
);
|
|
$this->assertSame(
|
|
2,
|
|
(int) $queryBuilder->execute()->fetchOne()
|
|
);
|
|
|
|
/** @var QueryBuilder $queryBuilder */
|
|
$queryBuilder = ContainerFactory::getInstance()->getContainer()->get(QueryBuilderFactoryInterface::class)->create();
|
|
$queryBuilder->select('count(*)')
|
|
->from('oxobject2group')
|
|
->where(
|
|
$queryBuilder->expr()->and(
|
|
$queryBuilder->expr()->eq('oxobjectid', $queryBuilder->createNamedParameter($this->aUserIdList[1])),
|
|
$queryBuilder->expr()->in('oxgroupsid', [$queryBuilder->createNamedParameter($this->aGroupsIdList[0])])
|
|
)
|
|
);
|
|
$this->assertSame(
|
|
1,
|
|
(int) $queryBuilder->execute()->fetchOne()
|
|
);
|
|
}
|
|
}
|