530 lignes
18 KiB
PHP
530 lignes
18 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
|
|
*/
|
|
|
|
namespace D3\Ordermanager\tests\integration\Actions;
|
|
|
|
use D3\ModCfg\Application\Model\d3database;
|
|
use D3\ModCfg\Application\Model\Exception\d3_cfg_mod_exception;
|
|
use D3\ModCfg\Application\Model\Exception\d3ShopCompatibilityAdapterException;
|
|
use D3\Ordermanager\Application\Model\d3ordermanager;
|
|
use Doctrine\DBAL\Exception as DBALException;
|
|
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;
|
|
|
|
/**
|
|
* @coversNothing
|
|
*/
|
|
class actionCustAddToGroupTest extends d3OrdermanagerActionIntegrationTestCase
|
|
{
|
|
public $sManagerId = 'managerTestId';
|
|
public $aOrderIdList = [
|
|
'orderTestIdNo1',
|
|
];
|
|
public $aUserIdList = [
|
|
'orderUserTestIdNo1',
|
|
];
|
|
public $aO2GroupIdList = [
|
|
'o2groupTestIdNo1',
|
|
];
|
|
public $aGroupsIdList = [
|
|
'groupTestIdNo1',
|
|
'groupTestIdNo2',
|
|
];
|
|
|
|
/**
|
|
* @throws Exception
|
|
*/
|
|
public function createTestData()
|
|
{
|
|
$this->createManager($this->sManagerId);
|
|
|
|
$this->createGroup($this->aGroupsIdList[0]);
|
|
$this->createGroup($this->aGroupsIdList[1]);
|
|
|
|
$this->createOrder(
|
|
$this->aOrderIdList[0],
|
|
[
|
|
'oxorderdate' => '2018-01-01 00:00:00',
|
|
'oxuserid' => $this->aUserIdList[0],
|
|
'oxcurrate' => 1,
|
|
'oxbillcompany' => __CLASS__,
|
|
]
|
|
);
|
|
|
|
$this->createUser($this->aUserIdList[0]);
|
|
}
|
|
|
|
/**
|
|
* @throws DBALException
|
|
* @throws \Doctrine\DBAL\Exception
|
|
*/
|
|
public function cleanTestData()
|
|
{
|
|
$this->deleteManager($this->sManagerId);
|
|
$this->deleteOrder($this->aOrderIdList[0]);
|
|
$this->deleteUser($this->aUserIdList[0]);
|
|
$this->deleteObject('d3ox.ordermanager.'.Object2Group::class, $this->aO2GroupIdList[0]);
|
|
|
|
$qb1 = d3database::getInstance()->getQueryBuilder();
|
|
$qb1->delete('oxobject2group')
|
|
->where($qb1->expr()->and(
|
|
$qb1->expr()->eq('oxobjectid', $qb1->createNamedParameter($this->aUserIdList[0])),
|
|
$qb1->expr()->eq('oxgroupsid', $qb1->createNamedParameter($this->aGroupsIdList[0]))
|
|
))->execute();
|
|
|
|
$qb2 = d3database::getInstance()->getQueryBuilder();
|
|
$qb2->delete('oxobject2group')
|
|
->where($qb2->expr()->and(
|
|
$qb2->expr()->eq('oxobjectid', $qb2->createNamedParameter($this->aUserIdList[0])),
|
|
$qb2->expr()->eq('oxgroupsid', $qb2->createNamedParameter($this->aGroupsIdList[1]))
|
|
))->execute();
|
|
}
|
|
|
|
/**
|
|
* @return d3ordermanager
|
|
* @throws Exception
|
|
*/
|
|
public function getConfiguredManagerSingleGroupsExists()
|
|
{
|
|
$oManager = $this->getManagerMock($this->sManagerId);
|
|
|
|
$oManager->setValue('blActionCust2Group_status', true);
|
|
$oManager->setValue('sCustAddGroup', [$this->aGroupsIdList[0]]);
|
|
$oManager->setValue('blItemExecute', true);
|
|
|
|
return $oManager;
|
|
}
|
|
|
|
/**
|
|
* @return d3ordermanager
|
|
* @throws Exception
|
|
*/
|
|
public function getConfiguredManagerMultiGroupsExists()
|
|
{
|
|
$oManager = $this->getManagerMock($this->sManagerId);
|
|
|
|
$oManager->setValue('blActionCust2Group_status', true);
|
|
$oManager->setValue('sCustAddGroup', [$this->aGroupsIdList[0], $this->aGroupsIdList[1]]);
|
|
$oManager->setValue('blItemExecute', true);
|
|
|
|
return $oManager;
|
|
}
|
|
|
|
/**
|
|
* @return d3ordermanager
|
|
* @throws Exception
|
|
*/
|
|
public function getConfiguredManagerSingleGroupsNotExistsNotAssigned()
|
|
{
|
|
$oManager = $this->getManagerMock($this->sManagerId);
|
|
|
|
$oManager->setValue('blActionCust2Group_status', true);
|
|
$oManager->setValue('sCustAddGroup', ['unknownGroupId']);
|
|
$oManager->setValue('blItemExecute', true);
|
|
|
|
return $oManager;
|
|
}
|
|
|
|
/**
|
|
* @return d3ordermanager
|
|
* @throws Exception
|
|
*/
|
|
public function getConfiguredManagerNoGroups()
|
|
{
|
|
$oManager = $this->getManagerMock($this->sManagerId);
|
|
|
|
$oManager->setValue('blActionCust2Group_status', true);
|
|
$oManager->setValue('sCustAddGroup', []);
|
|
$oManager->setValue('blItemExecute', true);
|
|
|
|
return $oManager;
|
|
}
|
|
|
|
/**
|
|
* @return ListModel
|
|
* @throws Exception
|
|
*/
|
|
public function getFilledResultList()
|
|
{
|
|
return $this->getResultList([$this->aOrderIdList[0]]);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
* @throws DBALException
|
|
* @throws DatabaseConnectionException
|
|
* @throws DatabaseErrorException
|
|
* @throws StandardException
|
|
* @throws d3ShopCompatibilityAdapterException
|
|
* @throws d3_cfg_mod_exception
|
|
* @throws Exception
|
|
*/
|
|
public function actionChangeConcernedOrderSingleGroupsExistsNotAssigned()
|
|
{
|
|
$oExecute = $this->getExecuteMock($this->getConfiguredManagerSingleGroupsExists());
|
|
$oExecute->startJobItemExecution();
|
|
|
|
// check assignment pass
|
|
$qb = d3database::getInstance()->getQueryBuilder();
|
|
$qb->select('count(*)')
|
|
->from('oxobject2group')
|
|
->where(
|
|
$qb->expr()->and(
|
|
$qb->expr()->eq('oxobjectid', $qb->createNamedParameter($this->aUserIdList[0])),
|
|
$qb->expr()->in('oxgroupsid', implode(', ', array_map(
|
|
function ($value) use ($qb) {
|
|
return $qb->createNamedParameter($value);
|
|
},
|
|
[
|
|
$this->aGroupsIdList[0],
|
|
]
|
|
)))
|
|
)
|
|
);
|
|
$this->assertSame(
|
|
1,
|
|
(int) $qb->execute()->fetchOne()
|
|
);
|
|
|
|
// check other assignments
|
|
$qb = d3database::getInstance()->getQueryBuilder();
|
|
$qb->select('count(*)')
|
|
->from('oxobject2group')
|
|
->where(
|
|
$qb->expr()->and(
|
|
$qb->expr()->eq('oxobjectid', $qb->createNamedParameter($this->aUserIdList[0])),
|
|
$qb->expr()->notIn('oxgroupsid', implode(', ', array_map(
|
|
function ($value) use ($qb) {
|
|
return $qb->createNamedParameter($value);
|
|
},
|
|
[
|
|
$this->aGroupsIdList[0],
|
|
]
|
|
)))
|
|
)
|
|
);
|
|
$this->assertSame(
|
|
0,
|
|
(int) $qb->execute()->fetchOne()
|
|
);
|
|
|
|
$qb = d3database::getInstance()->getQueryBuilder();
|
|
$qb->select('count(*)')
|
|
->from('oxobject2group')
|
|
->where(
|
|
$qb->expr()->and(
|
|
$qb->expr()->neq('oxobjectid', $qb->createNamedParameter($this->aUserIdList[0])),
|
|
$qb->expr()->in('oxgroupsid', implode(', ', array_map(
|
|
function ($value) use ($qb) {
|
|
return $qb->createNamedParameter($value);
|
|
},
|
|
[
|
|
$this->aGroupsIdList[0],
|
|
]
|
|
)))
|
|
)
|
|
);
|
|
$this->assertSame(
|
|
0,
|
|
(int) $qb->execute()->fetchOne()
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
* @throws DBALException
|
|
* @throws DatabaseConnectionException
|
|
* @throws DatabaseErrorException
|
|
* @throws StandardException
|
|
* @throws d3ShopCompatibilityAdapterException
|
|
* @throws d3_cfg_mod_exception
|
|
* @throws Exception
|
|
*/
|
|
public function actionChangeConcernedOrderMultiGroupsExistsNotAssigned()
|
|
{
|
|
$oExecute = $this->getExecuteMock($this->getConfiguredManagerMultiGroupsExists());
|
|
$oExecute->startJobItemExecution();
|
|
|
|
// check assignment pass
|
|
$qb = d3database::getInstance()->getQueryBuilder();
|
|
$qb->select('count(*)')
|
|
->from('oxobject2group')
|
|
->where(
|
|
$qb->expr()->and(
|
|
$qb->expr()->eq('oxobjectid', $qb->createNamedParameter($this->aUserIdList[0])),
|
|
$qb->expr()->in('oxgroupsid', implode(', ', array_map(
|
|
function ($value) use ($qb) {
|
|
return $qb->createNamedParameter($value);
|
|
},
|
|
[
|
|
$this->aGroupsIdList[0],
|
|
$this->aGroupsIdList[1],
|
|
]
|
|
)))
|
|
)
|
|
);
|
|
$this->assertSame(
|
|
2,
|
|
(int) $qb->execute()->fetchOne()
|
|
);
|
|
|
|
// check other assignments
|
|
$qb = d3database::getInstance()->getQueryBuilder();
|
|
$qb->select('count(*)')
|
|
->from('oxobject2group')
|
|
->where(
|
|
$qb->expr()->and(
|
|
$qb->expr()->eq('oxobjectid', $qb->createNamedParameter($this->aUserIdList[0])),
|
|
$qb->expr()->notIn('oxgroupsid', implode(', ', array_map(
|
|
function ($value) use ($qb) {
|
|
return $qb->createNamedParameter($value);
|
|
},
|
|
[
|
|
$this->aGroupsIdList[0],
|
|
$this->aGroupsIdList[1],
|
|
]
|
|
)))
|
|
)
|
|
);
|
|
$this->assertSame(
|
|
0,
|
|
(int) $qb->execute()->fetchOne()
|
|
);
|
|
|
|
$qb = d3database::getInstance()->getQueryBuilder();
|
|
$qb->select('count(*)')
|
|
->from('oxobject2group')
|
|
->where(
|
|
$qb->expr()->and(
|
|
$qb->expr()->neq('oxobjectid', $qb->createNamedParameter($this->aUserIdList[0])),
|
|
$qb->expr()->in('oxgroupsid', implode(', ', array_map(
|
|
function ($value) use ($qb) {
|
|
return $qb->createNamedParameter($value);
|
|
},
|
|
[
|
|
$this->aGroupsIdList[0],
|
|
$this->aGroupsIdList[1],
|
|
]
|
|
)))
|
|
)
|
|
);
|
|
$this->assertSame(
|
|
0,
|
|
(int) $qb->execute()->fetchOne()
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
* @throws DBALException
|
|
* @throws DatabaseConnectionException
|
|
* @throws DatabaseErrorException
|
|
* @throws StandardException
|
|
* @throws d3ShopCompatibilityAdapterException
|
|
* @throws d3_cfg_mod_exception
|
|
* @throws Exception
|
|
*/
|
|
public function actionChangeConcernedOrderSingleGroupsExistsAlreadyAssigned()
|
|
{
|
|
$this->createObject(
|
|
'd3ox.ordermanager.'.Object2Group::class,
|
|
$this->aO2GroupIdList[0],
|
|
[
|
|
'oxshopid' => 1,
|
|
'oxobjectid' => $this->aUserIdList[0],
|
|
'oxgroupsid' => $this->aGroupsIdList[0],
|
|
]
|
|
);
|
|
|
|
$oExecute = $this->getExecuteMock($this->getConfiguredManagerSingleGroupsExists());
|
|
$oExecute->startJobItemExecution();
|
|
|
|
// check assignment pass
|
|
$qb = d3database::getInstance()->getQueryBuilder();
|
|
$qb->select('count(*)')
|
|
->from('oxobject2group')
|
|
->where(
|
|
$qb->expr()->and(
|
|
$qb->expr()->eq('oxobjectid', $qb->createNamedParameter($this->aUserIdList[0])),
|
|
$qb->expr()->in('oxgroupsid', implode(', ', array_map(
|
|
function ($value) use ($qb) {
|
|
return $qb->createNamedParameter($value);
|
|
},
|
|
[
|
|
$this->aGroupsIdList[0],
|
|
]
|
|
)))
|
|
)
|
|
);
|
|
$this->assertSame(
|
|
1,
|
|
(int) $qb->execute()->fetchOne()
|
|
);
|
|
|
|
// check other assignments
|
|
$qb = d3database::getInstance()->getQueryBuilder();
|
|
$qb->select('count(*)')
|
|
->from('oxobject2group')
|
|
->where(
|
|
$qb->expr()->and(
|
|
$qb->expr()->eq('oxobjectid', $qb->createNamedParameter($this->aUserIdList[0])),
|
|
$qb->expr()->notIn('oxgroupsid', implode(', ', array_map(
|
|
function ($value) use ($qb) {
|
|
return $qb->createNamedParameter($value);
|
|
},
|
|
[
|
|
$this->aGroupsIdList[0],
|
|
]
|
|
)))
|
|
)
|
|
);
|
|
$this->assertSame(
|
|
0,
|
|
(int) $qb->execute()->fetchOne()
|
|
);
|
|
|
|
$qb = d3database::getInstance()->getQueryBuilder();
|
|
$qb->select('count(*)')
|
|
->from('oxobject2group')
|
|
->where(
|
|
$qb->expr()->and(
|
|
$qb->expr()->neq('oxobjectid', $qb->createNamedParameter($this->aUserIdList[0])),
|
|
$qb->expr()->in('oxgroupsid', implode(', ', array_map(
|
|
function ($value) use ($qb) {
|
|
return $qb->createNamedParameter($value);
|
|
},
|
|
[
|
|
$this->aGroupsIdList[0],
|
|
]
|
|
)))
|
|
)
|
|
);
|
|
$this->assertSame(
|
|
0,
|
|
(int) $qb->execute()->fetchOne()
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
* @throws DBALException
|
|
* @throws DatabaseConnectionException
|
|
* @throws DatabaseErrorException
|
|
* @throws StandardException
|
|
* @throws d3ShopCompatibilityAdapterException
|
|
* @throws d3_cfg_mod_exception
|
|
* @throws Exception
|
|
*/
|
|
public function actionChangeConcernedOrderSingleGroupsNotExistsNotAssigned()
|
|
{
|
|
$oExecute = $this->getExecuteMock($this->getConfiguredManagerSingleGroupsNotExistsNotAssigned());
|
|
$oExecute->startJobItemExecution();
|
|
|
|
// check assignment pass
|
|
$qb = d3database::getInstance()->getQueryBuilder();
|
|
$qb->select('count(*)')
|
|
->from('oxobject2group')
|
|
->where(
|
|
$qb->expr()->and(
|
|
$qb->expr()->eq('oxobjectid', $qb->createNamedParameter($this->aUserIdList[0])),
|
|
$qb->expr()->in('oxgroupsid', implode(', ', array_map(
|
|
function ($value) use ($qb) {
|
|
return $qb->createNamedParameter($value);
|
|
},
|
|
[
|
|
'unknownGroupId',
|
|
]
|
|
)))
|
|
)
|
|
);
|
|
$this->assertSame(
|
|
0,
|
|
(int) $qb->execute()->fetchOne()
|
|
);
|
|
|
|
// check other assignments
|
|
$qb = d3database::getInstance()->getQueryBuilder();
|
|
$qb->select('count(*)')
|
|
->from('oxobject2group')
|
|
->where(
|
|
$qb->expr()->and(
|
|
$qb->expr()->eq('oxobjectid', $qb->createNamedParameter($this->aUserIdList[0])),
|
|
$qb->expr()->notIn('oxgroupsid', implode(', ', array_map(
|
|
function ($value) use ($qb) {
|
|
return $qb->createNamedParameter($value);
|
|
},
|
|
[
|
|
'unknownGroupId',
|
|
]
|
|
)))
|
|
)
|
|
);
|
|
$this->assertSame(
|
|
0,
|
|
(int) $qb->execute()->fetchOne()
|
|
);
|
|
|
|
$qb = d3database::getInstance()->getQueryBuilder();
|
|
$qb->select('count(*)')
|
|
->from('oxobject2group')
|
|
->where(
|
|
$qb->expr()->and(
|
|
$qb->expr()->neq('oxobjectid', $qb->createNamedParameter($this->aUserIdList[0])),
|
|
$qb->expr()->in('oxgroupsid', implode(', ', array_map(
|
|
function ($value) use ($qb) {
|
|
return $qb->createNamedParameter($value);
|
|
},
|
|
[
|
|
'unknownGroupId',
|
|
]
|
|
)))
|
|
)
|
|
);
|
|
$this->assertSame(
|
|
0,
|
|
(int) $qb->execute()->fetchOne()
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
* @throws DBALException
|
|
* @throws DatabaseConnectionException
|
|
* @throws DatabaseErrorException
|
|
* @throws StandardException
|
|
* @throws d3ShopCompatibilityAdapterException
|
|
* @throws d3_cfg_mod_exception
|
|
* @throws Exception
|
|
*/
|
|
public function actionChangeConcernedOrderNoGroups()
|
|
{
|
|
$oExecute = $this->getExecuteMock($this->getConfiguredManagerNoGroups());
|
|
$oExecute->startJobItemExecution();
|
|
|
|
$qb = d3database::getInstance()->getQueryBuilder();
|
|
$qb->select('count(*)')
|
|
->from('oxobject2group')
|
|
->where('oxobjectid = '.$qb->createNamedParameter($this->aUserIdList[0]));
|
|
$this->assertSame(
|
|
0,
|
|
(int) $qb->execute()->fetchOne()
|
|
);
|
|
}
|
|
}
|