mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 15:34:12 +01:00
222 lines
6.8 KiB
PHP
222 lines
6.8 KiB
PHP
<?php
|
|
|
|
namespace Combodo\iTop\Test\UnitTest\Core;
|
|
|
|
|
|
define('NUM_PRECISION', 2);
|
|
|
|
use CMDBSource;
|
|
use Combodo\iTop\Test\UnitTest\ItopDataTestCase;
|
|
use DBSearch;
|
|
use MetaModel;
|
|
use SetupUtils;
|
|
use utils;
|
|
|
|
/**
|
|
* @runTestsInSeparateProcesses
|
|
* @preserveGlobalState disabled
|
|
* @backupGlobals disabled
|
|
*/
|
|
class OQLToSQLNestedSelectTest extends ItopDataTestCase
|
|
{
|
|
const USE_TRANSACTION = false;
|
|
const TEST_CSV_RESULT = 'OQLToSQLTest.csv';
|
|
|
|
public function setUp()
|
|
{
|
|
parent::setUp();
|
|
require_once(APPROOT.'application/startup.inc.php');
|
|
|
|
SetupUtils::builddir(APPROOT.'log/test/OQLToSQL');
|
|
}
|
|
|
|
/**
|
|
* @doesNotPerformAssertions
|
|
*
|
|
* @throws \ConfigException
|
|
* @throws \CoreException
|
|
*/
|
|
public function testOQLSetup()
|
|
{
|
|
utils::GetConfig()->Set('use_legacy_dbsearch', false, 'test');
|
|
utils::GetConfig()->Set('apc_cache.enabled', false, 'test');
|
|
utils::GetConfig()->Set('query_cache_enabled', false, 'test');
|
|
utils::GetConfig()->Set('expression_cache_enabled', false, 'test');
|
|
$sConfigFile = utils::GetConfig()->GetLoadedFile();
|
|
@chmod($sConfigFile, 0770);
|
|
utils::GetConfig()->WriteToFile();
|
|
@chmod($sConfigFile, 0444); // Read-only
|
|
|
|
}
|
|
|
|
/**
|
|
* @dataProvider OQLSelectProvider
|
|
* @depends testOQLSetup
|
|
*
|
|
* @param $sOQL
|
|
*
|
|
* @param array $aOrderBy
|
|
* @param array $aArgs
|
|
* @param null $aAttToLoad
|
|
* @param null $aExtendedDataSpec
|
|
* @param int $iLimitCount
|
|
* @param int $iLimitStart
|
|
*
|
|
* @throws \Exception
|
|
* @throws \MissingQueryArgument
|
|
* @throws \OQLException
|
|
*/
|
|
public function testOQLSelect($sOQL, $aOrderBy = array(), $aArgs = array(), $aAttToLoad = null, $aExtendedDataSpec = null, $iLimitCount = 20, $iLimitStart = 0)
|
|
{
|
|
$this->assertFalse(utils::GetConfig()->Get('use_legacy_dbsearch'));
|
|
$this->assertFalse(utils::GetConfig()->Get('apc_cache.enabled'));
|
|
$this->assertFalse(utils::GetConfig()->Get('query_cache_enabled'));
|
|
$this->assertFalse(utils::GetConfig()->Get('expression_cache_enabled'));
|
|
|
|
$aResult = $this->OQLSelectRunner($sOQL, $aOrderBy, $aArgs, $aAttToLoad, $aExtendedDataSpec, $iLimitCount, $iLimitStart);
|
|
$this->assertNull($aResult);
|
|
}
|
|
|
|
/**
|
|
* @param $sOQL
|
|
*
|
|
* @param array $aOrderBy
|
|
* @param array $aArgs
|
|
* @param null $aAttToLoadNames
|
|
* @param null $aExtendedDataSpec
|
|
* @param int $iLimitCount
|
|
* @param int $iLimitStart
|
|
*
|
|
* @return array|null
|
|
* @throws \Exception
|
|
* @throws \MissingQueryArgument
|
|
* @throws \OQLException
|
|
*/
|
|
private function OQLSelectRunner($sOQL, $aOrderBy = array(), $aArgs = array(), $aAttToLoadNames = null, $aExtendedDataSpec = null, $iLimitCount = 20, $iLimitStart = 0)
|
|
{
|
|
if (is_null($aAttToLoadNames))
|
|
{
|
|
$aAttToLoad = null;
|
|
}
|
|
else
|
|
{
|
|
$aAttToLoad = array();
|
|
foreach ($aAttToLoadNames as $sClass => $aAttCodes)
|
|
{
|
|
$aAttToLoad[$sClass] = array();
|
|
foreach ($aAttCodes as $sAttCode)
|
|
{
|
|
if (!empty($sAttCode))
|
|
{
|
|
if (MetaModel::IsValidAttCode($sClass, $sAttCode))
|
|
{
|
|
$aAttToLoad[$sClass][$sAttCode] = MetaModel::GetAttributeDef($sClass, $sAttCode);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
$oSearch = DBSearch::FromOQL($sOQL);
|
|
$sClass = $oSearch->GetClass();
|
|
if (empty($aOrderBy))
|
|
{
|
|
$aOrderBy = MetaModel::GetOrderByDefault($sClass);
|
|
}
|
|
|
|
$sSQLCount = $oSearch->MakeSelectQuery($aOrderBy, $aArgs, $aAttToLoad, $aExtendedDataSpec, 0, 0, true);
|
|
$fStart = $this->GetMicroTime();
|
|
$aRow = $this->GetArrayResult($sSQLCount);
|
|
$fCountDuration = $this->GetMicroTime() - $fStart;
|
|
if (is_null($aRow))
|
|
{
|
|
$iCount = 0;
|
|
}
|
|
else
|
|
{
|
|
$iCount = intval($aRow[0]['COUNT']);
|
|
}
|
|
$iJoinCount = count(explode(' JOIN ', $sSQLCount)) - 1;
|
|
|
|
|
|
$sSQL = $oSearch->MakeSelectQuery($aOrderBy, $aArgs, $aAttToLoad, $aExtendedDataSpec, $iLimitCount, $iLimitStart);
|
|
$fStart = $this->GetMicroTime();
|
|
$this->GetArrayResult($sSQL);
|
|
$fDataDuration = $this->GetMicroTime() - $fStart;
|
|
$iJoinData = count(explode(' JOIN ', $sSQL)) - 1;
|
|
|
|
$aResult = array(
|
|
'oql' => $sOQL,
|
|
'count_sql' => $sSQLCount,
|
|
'count_join_count' => $iJoinCount,
|
|
'count' => $iCount,
|
|
'count_duration' => $fCountDuration,
|
|
'data_sql' => $sSQL,
|
|
'data_join_count' => $iJoinData,
|
|
'data_duration' => $fDataDuration,
|
|
);
|
|
|
|
$this->debug($aResult);
|
|
|
|
//$aResult['data'] = $aRow;
|
|
|
|
return null;
|
|
}
|
|
|
|
|
|
private function OQLSelectProviderStatic()
|
|
{
|
|
return array(
|
|
array('SELECT `UserRequest` FROM UserRequest AS `UserRequest` JOIN Person AS `P` ON `UserRequest`.agent_id = `P`.id JOIN Organization AS `Organization` ON `P`.org_id = `Organization`.id WHERE (`UserRequest`.`org_id` IN (SELECT `Organization` FROM Organization AS `Organization` WHERE (`Organization`.`id` = `UserRequest`.`org_id`)))',),
|
|
array('SELECT `UserRequest` FROM UserRequest AS `UserRequest` WHERE (`UserRequest`.org_id IN (SELECT `Organization` FROM Organization AS `Organization` WHERE (`Organization`.`id` = `UserRequest`.`org_id`)))'),
|
|
array("SELECT `UserRequest` FROM UserRequest AS `UserRequest` WHERE `UserRequest`.org_id IN (SELECT `Organization` FROM Organization AS `Organization` JOIN Organization AS `Organization1` ON `Organization`.parent_id BELOW `Organization1`.id WHERE (`Organization1`.`id` = '3'))"),
|
|
array("SELECT `UserRequest` FROM UserRequest AS `UserRequest` WHERE `UserRequest`.org_id IN (1,2,3)"),
|
|
array("SELECT User AS U JOIN Person AS P ON U.contactid = P.id WHERE U.status='enabled' AND U.id NOT IN (SELECT User AS U JOIN Person AS P ON U.contactid=P.id JOIN URP_UserOrg AS L ON L.userid = U.id WHERE U.status='enabled' AND L.allowed_org_id = P.org_id UNION SELECT User AS U WHERE U.status='enabled' AND U.id NOT IN (SELECT User AS U JOIN URP_UserOrg AS L ON L.userid = U.id WHERE U.status='enabled'))"),
|
|
array("SELECT UserRequest AS Ur WHERE Ur.id NOT IN (SELECT UserRequest AS Ur JOIN lnkFunctionalCIToTicket AS lnk ON lnk.ticket_id = Ur.id)"),
|
|
array("SELECT Ticket AS T WHERE T. finalclass IN ('userrequest' , 'change') AND T.id NOT IN (SELECT UserRequest AS Ur JOIN lnkFunctionalCIToTicket AS lnk ON lnk.ticket_id = Ur.id UNION SELECT Change AS C JOIN lnkFunctionalCIToTicket AS lnk ON lnk.ticket_id = C.id)"),
|
|
array("SELECT PhysicalDevice WHERE status='production' AND id NOT IN (SELECT PhysicalDevice AS p JOIN lnkFunctionalCIToProviderContract AS l ON l.functionalci_id=p.id)"),
|
|
);
|
|
}
|
|
|
|
public function OQLSelectProvider()
|
|
{
|
|
return $this->OQLSelectProviderStatic();
|
|
}
|
|
|
|
|
|
/**
|
|
* @param $sSQL
|
|
*
|
|
* @param int $iLimit
|
|
*
|
|
* @return array|null
|
|
* @throws \CoreException
|
|
* @throws \MySQLException
|
|
* @throws \MySQLHasGoneAwayException
|
|
*/
|
|
private function GetArrayResult($sSQL, $iLimit = 10)
|
|
{
|
|
$resQuery = CMDBSource::Query($sSQL);
|
|
if (!$resQuery)
|
|
{
|
|
return null;
|
|
}
|
|
else
|
|
{
|
|
$aRow = array();
|
|
$iCount = 0;
|
|
while ($aRes = CMDBSource::FetchArray($resQuery))
|
|
{
|
|
if ($iCount < $iLimit)
|
|
{
|
|
$aRow[] = $aRes;
|
|
}
|
|
$iCount++;
|
|
unset($aRes);
|
|
}
|
|
CMDBSource::FreeResult($resQuery);
|
|
return $aRow;
|
|
}
|
|
}
|
|
}
|