1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
|
<?php
define('INGO_BASE', dirname(__FILE__) . '/../..');
define('HORDE_BASE', dirname(__FILE__) . '/../../..');
require_once HORDE_BASE . '/lib/core.php';
/**
* Common library for Ingo test cases
*
* $Horde: ingo/lib/tests/TestBase.php,v 1.1.2.2 2009/12/21 23:19:05 jan Exp $
*
* See the enclosed file LICENSE for license information (ASL). If you
* did not receive this file, see http://www.horde.org/licenses/asl.php.
*
* @author Jason M. Felice <jason.m.felice@gmail.com>
* @package Ingo
* @subpackage UnitTests
*/
class Ingo_TestBase extends PHPUnit_Framework_TestCase {
function _enableRule($rule)
{
$filters = $GLOBALS['ingo_storage']->retrieve(INGO_STORAGE_ACTION_FILTERS);
foreach ($filters->getFilterList() as $k => $v) {
if ($v['action'] == $rule) {
$v['disable'] = false;
$filters->updateRule($v, $k);
$this->store($filters);
}
}
}
function assertScript($expect)
{
$result = $GLOBALS['ingo_script']->generate();
if (!is_string($result)) {
$this->fail("result not a script", 1);
return;
}
/* Remove comments and crunch whitespace so we can have a functional
* comparison. */
$new = array();
foreach (explode("\n", $result) as $line) {
if (preg_match('/^\s*$/', $line)) {
continue;
}
if (preg_match('/^\s*#.*$/', $line)) {
continue;
}
$new[] = trim($line);
}
$new_script = join("\n", $new);
$this->assertEquals($expect, $new_script);
}
}
class Ingo_Test_Notification {
function push()
{
}
}
|