mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-23 18:48:51 +02:00
# Conflicts: # composer.json # composer.lock # core/email.class.inc.php # css/ui-lightness/jqueryui.scss # lib/bin/php-parse # lib/bin/php-parse.bat # lib/composer/autoload_classmap.php # lib/composer/autoload_static.php # lib/composer/installed.json # lib/composer/installed.php # lib/composer/platform_check.php # lib/nikic/php-parser/grammar/php7.y # lib/nikic/php-parser/lib/PhpParser/Builder/FunctionLike.php # lib/nikic/php-parser/lib/PhpParser/Builder/Param.php # lib/nikic/php-parser/lib/PhpParser/Builder/Property.php # lib/nikic/php-parser/lib/PhpParser/BuilderFactory.php # lib/nikic/php-parser/lib/PhpParser/BuilderHelpers.php # lib/nikic/php-parser/lib/PhpParser/ConstExprEvaluator.php # lib/nikic/php-parser/lib/PhpParser/Lexer/Emulative.php # lib/nikic/php-parser/lib/PhpParser/Node/Expr/ArrowFunction.php # lib/nikic/php-parser/lib/PhpParser/Node/Expr/Closure.php # lib/nikic/php-parser/lib/PhpParser/Node/Expr/FuncCall.php # lib/nikic/php-parser/lib/PhpParser/Node/Expr/MethodCall.php # lib/nikic/php-parser/lib/PhpParser/Node/Expr/New_.php # lib/nikic/php-parser/lib/PhpParser/Node/Expr/NullsafeMethodCall.php # lib/nikic/php-parser/lib/PhpParser/Node/Expr/StaticCall.php # lib/nikic/php-parser/lib/PhpParser/Node/FunctionLike.php # lib/nikic/php-parser/lib/PhpParser/Node/Param.php # lib/nikic/php-parser/lib/PhpParser/Node/Stmt/ClassLike.php # lib/nikic/php-parser/lib/PhpParser/Node/Stmt/ClassMethod.php # lib/nikic/php-parser/lib/PhpParser/Node/Stmt/Function_.php # lib/nikic/php-parser/lib/PhpParser/Node/Stmt/Property.php # lib/nikic/php-parser/lib/PhpParser/Node/UnionType.php # lib/nikic/php-parser/lib/PhpParser/NodeVisitor/NameResolver.php # lib/nikic/php-parser/lib/PhpParser/Parser/Php7.php # lib/nikic/php-parser/lib/PhpParser/PrettyPrinter/Standard.php # lib/nikic/php-parser/lib/PhpParser/PrettyPrinterAbstract.php # test/core/ConfigValidator/iTopConfigAstValidatorTest.php
73 lines
2.1 KiB
PHP
73 lines
2.1 KiB
PHP
<?php
|
|
/**
|
|
* Copyright (C) 2010-2021 Combodo SARL
|
|
*
|
|
* This file is part of iTop.
|
|
*
|
|
* iTop is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* iTop is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with iTop. If not, see <http: *www.gnu.org/licenses/>
|
|
*
|
|
*/
|
|
|
|
use Combodo\iTop\Composer\iTopComposer;
|
|
|
|
$iTopFolder = __DIR__ . "/../../" ;
|
|
|
|
require_once ("$iTopFolder/approot.inc.php");
|
|
require_once (APPROOT."/setup/setuputils.class.inc.php");
|
|
|
|
if (php_sapi_name() !== 'cli')
|
|
{
|
|
throw new \Exception('This script can only run from CLI');
|
|
}
|
|
|
|
clearstatcache();
|
|
|
|
$oiTopComposer = new iTopComposer();
|
|
$aDeniedButStillPresent = $oiTopComposer->ListDeniedButStillPresent();
|
|
|
|
echo "\n";
|
|
foreach ($aDeniedButStillPresent as $sDir)
|
|
{
|
|
if (false === iTopComposer::IsTestDir($sDir))
|
|
{
|
|
echo "ERROR found INVALID denied test dir: '$sDir'\n";
|
|
throw new \Exception("$sDir must end with /Test/ or /test/");
|
|
}
|
|
|
|
if (false === file_exists($sDir)) {
|
|
echo "INFO $sDir is in denied list, but not existing on disk => skipping !\n";
|
|
continue;
|
|
}
|
|
|
|
try {
|
|
SetupUtils::rrmdir($sDir);
|
|
echo "OK Remove denied test dir: '$sDir'\n";
|
|
}
|
|
catch (\Exception $e) {
|
|
echo "\nFAILED to remove denied test dir: '$sDir'\n";
|
|
}
|
|
}
|
|
|
|
|
|
$aAllowedAndDeniedDirs = array_merge(
|
|
$oiTopComposer->ListAllowedTestDir(),
|
|
$oiTopComposer->ListDeniedTestDir()
|
|
);
|
|
$aExistingDirs = $oiTopComposer->ListAllTestDir();
|
|
$aMissing = array_diff($aExistingDirs, $aAllowedAndDeniedDirs);
|
|
if (false === empty($aMissing)) {
|
|
echo "Some new tests dirs exists !\n"
|
|
.' They must be declared either in the allowed or denied list in '.iTopComposer::class." (see N°2651).\n"
|
|
.' List of dirs:'."\n".var_export($aMissing, true);
|
|
} |