mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 07:24:13 +01:00
* add few APIs to ease tests * code style * log testname via IssueLog only through ItopDataTestCase * code style * ci: phpunit fix fatal error
57 lines
1.6 KiB
PHP
57 lines
1.6 KiB
PHP
<?php
|
|
|
|
namespace Combodo\iTop\Test\UnitTest\HubConnector;
|
|
|
|
use Combodo\iTop\Application\Helper\Session;
|
|
use Combodo\iTop\Test\UnitTest\ItopDataTestCase;
|
|
use PHPUnit\Framework\SkippedTestCase;
|
|
|
|
class AjaxPageTest extends ItopDataTestCase
|
|
{
|
|
public const USE_TRANSACTION = false;
|
|
public const AUTHENTICATION_TOKEN = '14b5da9d092f84044187421419a0347e7317bc8cd2b486fdda631be06b959269';
|
|
public const AUTHENTICATION_PASSWORD = "tagada-Secret,007";
|
|
|
|
protected function setUp(): void
|
|
{
|
|
$this->SkipIfModuleNotPresent('itop-hub-connector');
|
|
parent::setUp();
|
|
}
|
|
|
|
public function testCompileOperation()
|
|
{
|
|
// Given
|
|
static::RecurseMkdir(APPROOT.'data/hub');
|
|
file_put_contents(APPROOT.'data/hub/compile_authent', self::AUTHENTICATION_TOKEN);
|
|
$sLogin = $this->GivenUserInDB(self::AUTHENTICATION_PASSWORD, ['Administrator']);
|
|
|
|
$iLastCompilation = filemtime(APPROOT.'env-production');
|
|
|
|
// When
|
|
$sOutput = $this->CallItopUri(
|
|
"pages/exec.php?exec_module=itop-hub-connector&exec_page=ajax.php",
|
|
[
|
|
'auth_user' => $sLogin,
|
|
'auth_pwd' => self::AUTHENTICATION_PASSWORD,
|
|
'operation' => "compile",
|
|
'authent' => self::AUTHENTICATION_TOKEN,
|
|
],
|
|
);
|
|
|
|
// Then
|
|
$aRes = json_decode($sOutput, true);
|
|
$this->assertNotNull($aRes, "Response should be a valid json, found instead:".PHP_EOL.$sOutput);
|
|
$this->assertEquals(
|
|
[
|
|
'code' => 0,
|
|
'message' => 'Ok',
|
|
'fields' => [],
|
|
],
|
|
$aRes
|
|
);
|
|
|
|
clearstatcache();
|
|
$this->assertGreaterThan($iLastCompilation, filemtime(APPROOT.'env-production'), 'The env-production directory should have been rebuilt');
|
|
}
|
|
}
|