Viewing file: class.AbstractTest.php (3.45 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php /** * @package info.ajaxplorer * * Copyright 2007-2009 Cyril Russo * This file is part of AjaXplorer. * The latest code can be found at http://www.ajaxplorer.info/ * * This program is published under the LGPL Gnu Lesser General Public License. * You should have received a copy of the license along with AjaXplorer. * * The main conditions are as follow : * You must conspicuously and appropriately publish on each copy distributed * an appropriate copyright notice and disclaimer of warranty and keep intact * all the notices that refer to this License and to the absence of any warranty; * and give any other recipients of the Program a copy of the GNU Lesser General * Public License along with the Program. * * If you modify your copy or copies of the library or any portion of it, you may * distribute the resulting library provided you do so under the GNU Lesser * General Public License. However, programs that link to the library may be * licensed under terms of your choice, so long as the library itself can be changed. * Any translation of the GNU Lesser General Public License must be accompanied by the * GNU Lesser General Public License. * * If you copy or distribute the program, you must accompany it with the complete * corresponding machine-readable source code or with a written offer, valid for at * least three years, to furnish the complete corresponding machine-readable source code. * * Any of the above conditions can be waived if you get permission from the copyright holder. * AjaXplorer 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. * * Description : Abstract representation of an action driver. Must be implemented. */ global $MAIN_testsArray; /** The abstract test interface */ class AbstractTest { /** The test name */ var $name; /** The test information when failed */ var $failedInfo; /** The test results output (used for report) */ var $resultOutput; /** Tested params - When used as a diagnostic tool, can store variables used by the test*/ var $testedParas; /** The test level when failed (warning, info or error, default to error) */ var $failedLevel; /** The test parameters */ var $params; function AbstractTest($name, $failedInfo, $params = NULL) { $this->name = $name; $this->failedInfo = $failedInfo; $this->params = $params; $this->failedLevel = "error"; $this->testedParams = array(); global $MAIN_testsArray; $MAIN_testsArray[] = $this; } /** Perform the test, should be overwritten in concrete classes */ function doTest() { return FALSE; } /** * Perform the test on a given repository object, should be overwritten in concrete classes * @param Repository $repository * @return Boolean */ function doRepositoryTest($repository) { return FALSE; } /** * Utilitary to convert php config to numerical values. * * @param String $val * @return Integer */ function returnBytes($val) { $val = trim($val); $last = strtolower($val[strlen($val)-1]); switch($last) { // Le modifieur 'G' est disponible depuis PHP 5.1.0 case 'g': $val *= 1024; case 'm': $val *= 1024; case 'k': $val *= 1024; }
return $val; } };
?>
|