parent
c0b5aa962d
commit
c36cbd3cb8
|
@ -24,6 +24,7 @@ namespace Icinga\Web
|
|||
|
||||
namespace Test\Monitoring\Testlib
|
||||
{
|
||||
use Icinga\Protocol\Statusdat\Reader;
|
||||
use Test\Monitoring\Testlib\DataSource\TestFixture;
|
||||
use Test\Monitoring\Testlib\DataSource\DataSourceTestSetup;
|
||||
use Monitoring\Backend\Ido;
|
||||
|
@ -115,6 +116,11 @@ namespace Test\Monitoring\Testlib
|
|||
'pass' => "icinga_unittest",
|
||||
'db' => "icinga_unittest"
|
||||
)));
|
||||
} else if ($type == "statusdat") {
|
||||
return new Reader(new \Zend_Config(array(
|
||||
'status_file' => '/tmp/teststatus.dat',
|
||||
'objects_file' => '/tmp/testobjects.cache'
|
||||
)), null, true);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -8,6 +8,10 @@ require_once(dirname(__FILE__).'/strategies/SetupStrategy.php');
|
|||
require_once(dirname(__FILE__).'/strategies/MySQLSetupStrategy.php');
|
||||
require_once(dirname(__FILE__).'/strategies/PgSQLSetupStrategy.php');
|
||||
require_once(dirname(__FILE__).'/strategies/PDOInsertionStrategy.php');
|
||||
|
||||
require_once(dirname(__FILE__).'/strategies/StatusdatInsertionStrategy.php');
|
||||
require_once(dirname(__FILE__).'/strategies/StatusdatSetupStrategy.php');
|
||||
|
||||
require_once(dirname(__FILE__).'/TestFixture.php');
|
||||
|
||||
use \Test\Monitoring\Testlib\Datasource\Strategies\InsertionStrategy;
|
||||
|
@ -15,6 +19,8 @@ use \Test\Monitoring\Testlib\Datasource\Strategies\SetupStrategy;
|
|||
use \Test\Monitoring\Testlib\Datasource\Strategies\MySQLSetupStrategy;
|
||||
use \Test\Monitoring\Testlib\Datasource\Strategies\PgSQLSetupStrategy;
|
||||
use \Test\Monitoring\Testlib\Datasource\Strategies\PDOInsertionStrategy;
|
||||
use \Test\Monitoring\Testlib\Datasource\Strategies\StatusdatInsertionStrategy;
|
||||
use \Test\Monitoring\Testlib\Datasource\Strategies\StatusdatSetupStrategy;
|
||||
|
||||
class DataSourceTestSetup implements SetupStrategy, InsertionStrategy
|
||||
{
|
||||
|
@ -31,6 +37,9 @@ class DataSourceTestSetup implements SetupStrategy, InsertionStrategy
|
|||
$this->setupStrategy = new PgSQLSetupStrategy();
|
||||
$this->insertionStrategy = new PDOInsertionStrategy();
|
||||
$this->insertionStrategy->datetimeFormat = "Y-m-d H:i:s";
|
||||
} elseif ($type == 'statusdat') {
|
||||
$this->setupStrategy = new StatusdatSetupStrategy();
|
||||
$this->insertionStrategy = new StatusdatInsertionStrategy();
|
||||
} else {
|
||||
throw new \Exception('Unsupported backend '.$type);
|
||||
}
|
||||
|
@ -44,6 +53,7 @@ class DataSourceTestSetup implements SetupStrategy, InsertionStrategy
|
|||
public function setup($version = null, $connection = null)
|
||||
{
|
||||
$c = $this->setupStrategy->setup($version, $connection);
|
||||
|
||||
$this->insertionStrategy->setConnection($c);
|
||||
}
|
||||
|
||||
|
|
|
@ -0,0 +1,97 @@
|
|||
<?php
|
||||
|
||||
|
||||
namespace Test\Monitoring\Testlib\DataSource\schemes;
|
||||
|
||||
|
||||
class ObjectsCacheTemplates {
|
||||
|
||||
public static $HOST =<<<'EOF'
|
||||
define host {
|
||||
host_name\t{{HOST_NAME}}
|
||||
alias\t{{HOST_NAME}} alias
|
||||
address\t{{HOST_ADDRESS}}
|
||||
check_period\t24x7
|
||||
check_command\ttest-check-host-alive-parent!flap!$HOSTSTATE:router_00$
|
||||
contact_groups\ttest_contact
|
||||
notification_period\t24x7
|
||||
initial_state\to
|
||||
check_interval\t10.000000
|
||||
retry_interval\t1.000000
|
||||
max_check_attempts\t5
|
||||
active_checks_enabled\t1
|
||||
passive_checks_enabled\t1
|
||||
obsess_over_host\t1
|
||||
event_handler_enabled\t1
|
||||
low_flap_threshold\t0.000000
|
||||
high_flap_threshold\t0.000000
|
||||
flap_detection_enabled\t1
|
||||
flap_detection_options\to,d,u
|
||||
freshness_threshold\t0
|
||||
check_freshness\t0
|
||||
notification_options\td,u,r
|
||||
notifications_enabled\t1
|
||||
notification_interval\t0.000000
|
||||
first_notification_delay\t0.000000
|
||||
stalking_options\tn
|
||||
process_perf_data\t1
|
||||
failure_prediction_enabled\t1
|
||||
icon_image\t{{ICON_IMAGE}}
|
||||
icon_image_alt\ticon alt string
|
||||
notes\tjust a notes string
|
||||
notes_url\t{{NOTES_URL}}
|
||||
action_url\t{{ACTION_URL}}
|
||||
retain_status_information\t1
|
||||
retain_nonstatus_information\t1
|
||||
}
|
||||
EOF;
|
||||
public static $SERVICE =<<<'EOF'
|
||||
define service {
|
||||
host_name\t{{HOST_NAME}}
|
||||
service_description\t{{SERVICE_NAME}}
|
||||
check_period\t24x7
|
||||
check_command\tcheck_service!critical
|
||||
contact_groups\ttest_contact
|
||||
notification_period\t24x7
|
||||
initial_state\to
|
||||
check_interval\t5.000000
|
||||
retry_interval\t2.000000
|
||||
max_check_attempts\t3
|
||||
is_volatile\t0
|
||||
parallelize_check\t1
|
||||
active_checks_enabled\t1
|
||||
passive_checks_enabled\t1
|
||||
obsess_over_service\t1
|
||||
event_handler_enabled\t1
|
||||
low_flap_threshold\t0.000000
|
||||
high_flap_threshold\t0.000000
|
||||
flap_detection_enabled\t1
|
||||
flap_detection_options\to,w,u,c
|
||||
freshness_threshold\t0
|
||||
check_freshness\t0
|
||||
notification_options\tu,w,c,r
|
||||
notifications_enabled\t1
|
||||
notification_interval\t0.000000
|
||||
first_notification_delay\t0.000000
|
||||
stalking_options\tn
|
||||
process_perf_data\t1
|
||||
failure_prediction_enabled\t1
|
||||
icon_image\t{{ICON_IMAGE}}
|
||||
icon_image_alt\ticon alt string
|
||||
notes\tjust a notes string
|
||||
notes_url\t{{NOTES_URL}}
|
||||
action_url\t{{ACTION_URL}}
|
||||
retain_status_information\t1
|
||||
retain_nonstatus_information\t1
|
||||
}
|
||||
EOF;
|
||||
|
||||
public static $GROUP =<<<'EOF'
|
||||
define {{TYPE}}group {
|
||||
{{TYPE}}group_name\t{{NAME}}
|
||||
alias\t{{NAME}}
|
||||
members\t{{MEMBERS}}
|
||||
}
|
||||
EOF;
|
||||
|
||||
};
|
|
@ -0,0 +1,171 @@
|
|||
<?php
|
||||
/**
|
||||
* Created by JetBrains PhpStorm.
|
||||
* User: moja
|
||||
* Date: 7/17/13
|
||||
* Time: 10:25 AM
|
||||
* To change this template use File | Settings | File Templates.
|
||||
*/
|
||||
|
||||
namespace Test\Monitoring\Testlib\DataSource\schemes;
|
||||
|
||||
|
||||
class StatusdatTemplates {
|
||||
|
||||
public static $HOST =<<<'EOF'
|
||||
hoststatus {
|
||||
host_name={{HOST_NAME}}
|
||||
modified_attributes=0
|
||||
check_command=test-check-host-alive-parent!pending!$HOSTSTATE:router_01$
|
||||
check_period=24x7
|
||||
notification_period=24x7
|
||||
check_interval=10.000000
|
||||
retry_interval=1.000000
|
||||
event_handler=
|
||||
has_been_checked=0
|
||||
should_be_scheduled=0
|
||||
check_execution_time=0.000
|
||||
check_latency=0.000
|
||||
check_type=0
|
||||
current_state={{HOST_STATUS}}
|
||||
last_hard_state=0
|
||||
last_event_id=14750
|
||||
current_event_id=14756
|
||||
current_problem_id=6016
|
||||
last_problem_id=6010
|
||||
plugin_output=host_00 (checked by localhost.localdomain) FLAP: flap hostcheck down
|
||||
long_plugin_output=
|
||||
performance_data=
|
||||
last_check=1373991189
|
||||
next_check=1374002661
|
||||
check_options=0
|
||||
current_attempt=2
|
||||
max_attempts=5
|
||||
state_type=0
|
||||
last_state_change={{TIME}}
|
||||
last_hard_state_change={{TIME}}
|
||||
last_time_up=1373984768
|
||||
last_time_down=1373984818
|
||||
last_time_unreachable=1373984748
|
||||
last_notification=0
|
||||
next_notification=0
|
||||
no_more_notifications=1
|
||||
current_notification_number=0
|
||||
current_down_notification_number=0
|
||||
current_unreachable_notification_number=0
|
||||
current_notification_id=0
|
||||
notifications_enabled={{NOTIFICATIONS_ENABLED}}
|
||||
problem_has_been_acknowledged={{ACKNOWLEDGED}}
|
||||
acknowledgement_type=0
|
||||
acknowledgement_end_time=0
|
||||
active_checks_enabled={{ACTIVE_ENABLED}}
|
||||
passive_checks_enabled={{PASSIVE_ENABLED}}
|
||||
event_handler_enabled=1
|
||||
flap_detection_enabled=1
|
||||
failure_prediction_enabled=1
|
||||
process_performance_data=1
|
||||
obsess_over_host=1
|
||||
last_update=1374002209
|
||||
is_flapping={{FLAPPING}}
|
||||
percent_state_change=0.00
|
||||
scheduled_downtime_depth={{IN_DOWNTIME}}
|
||||
{{CVS}}
|
||||
}
|
||||
EOF;
|
||||
|
||||
|
||||
public static $SERIVCE =<<<'EOF'
|
||||
servicestatus {
|
||||
host_name={{HOST_NAME}}
|
||||
service_description={{SERVICE_NAME}}
|
||||
modified_attributes=0
|
||||
check_command=check_service!critical
|
||||
check_period=24x7
|
||||
notification_period=24x7
|
||||
check_interval=5.000000
|
||||
retry_interval=2.000000
|
||||
event_handler=
|
||||
has_been_checked=1
|
||||
should_be_scheduled=1
|
||||
check_execution_time=0.250
|
||||
check_latency=0.113
|
||||
check_type=0
|
||||
current_state={{SERVICE_STATUS}}
|
||||
last_hard_state=2
|
||||
last_event_id=0
|
||||
current_event_id=6179
|
||||
current_problem_id=2434
|
||||
last_problem_id=0
|
||||
current_attempt=3
|
||||
max_attempts=3
|
||||
state_type=1
|
||||
last_state_change={{TIME}}
|
||||
last_hard_state_change={{TIME}}
|
||||
last_time_ok=0
|
||||
last_time_warning=0
|
||||
last_time_unknown=0
|
||||
last_time_critical=1373024663
|
||||
plugin_output=host_00 (checked by localhost.localdomain) CRITICAL: critical critical_6
|
||||
long_plugin_output=
|
||||
performance_data=runtime=0.012226
|
||||
last_check=1373087666
|
||||
next_check=1374002401
|
||||
check_options=0
|
||||
current_notification_number=0
|
||||
current_warning_notification_number=0
|
||||
current_critical_notification_number=0
|
||||
current_unknown_notification_number=0
|
||||
current_notification_id=0
|
||||
last_notification=0
|
||||
next_notification=0
|
||||
no_more_notifications=1
|
||||
notifications_enabled={{NOTIFICATIONS_ENABLED}}
|
||||
active_checks_enabled={{ACTIVE_ENABLED}}
|
||||
passive_checks_enabled={{PASSIVE_ENABLED}}
|
||||
event_handler_enabled=1
|
||||
problem_has_been_acknowledged=0
|
||||
acknowledgement_type={{ACKNOWLEDGED}}
|
||||
acknowledgement_end_time=0
|
||||
flap_detection_enabled=1
|
||||
failure_prediction_enabled=1
|
||||
process_performance_data=1
|
||||
obsess_over_service=1
|
||||
last_update=1374002209
|
||||
is_flapping={{FLAPPING}}
|
||||
percent_state_change=6.25
|
||||
scheduled_downtime_depth={{IN_DOWNTIME}}
|
||||
{{CVS}}
|
||||
}
|
||||
EOF;
|
||||
|
||||
public static $SERVICECOMMENT =<<<'EOF'
|
||||
servicecomment {
|
||||
host_name={{HOST_NAME}}
|
||||
service_description={{SERVICE_NAME}}
|
||||
entry_type=3
|
||||
comment_id={{ID}}
|
||||
source=0
|
||||
persistent=0
|
||||
entry_time={{TIME}}
|
||||
expires=0
|
||||
expire_time=0
|
||||
author={{AUTHOR}}
|
||||
comment_data={{TEXT}
|
||||
}
|
||||
EOF;
|
||||
|
||||
public static $HOSTCOMMENT =<<<'EOF'
|
||||
hostcomment {
|
||||
host_name={{HOST_NAME}}
|
||||
entry_type=3
|
||||
comment_id={{ID}}
|
||||
source=0
|
||||
persistent=0
|
||||
entry_time={{TIME}}
|
||||
expires=0
|
||||
expire_time=0
|
||||
author={{AUTHOR}}
|
||||
comment_data={{TEXT}}
|
||||
}
|
||||
EOF;
|
||||
}
|
|
@ -60,7 +60,7 @@ class PDOInsertionStrategy {
|
|||
|
||||
$insertObjectQuery->execute(array($this->objectId, $host["name"]));
|
||||
$insertHostQuery->execute(array(
|
||||
$this->objectId, $host["name"], $host["name"], $host["address"], $this->objectId,
|
||||
$this->objectId, $host["name"], $host["name"]." alias", $host["address"], $this->objectId,
|
||||
$host["icon_image"], $host["notes_url"], $host["action_url"]
|
||||
));
|
||||
$insertHostStatusQuery->execute(array(
|
||||
|
|
|
@ -3,6 +3,6 @@
|
|||
namespace Test\Monitoring\Testlib\Datasource\Strategies;
|
||||
|
||||
interface SetupStrategy {
|
||||
public function setup($version = null, $connection = null);
|
||||
public function teardown($connection = null);
|
||||
public function setup($version = null, $resource = null);
|
||||
public function teardown($resource = null);
|
||||
}
|
|
@ -0,0 +1,210 @@
|
|||
<?php
|
||||
/**
|
||||
* Created by JetBrains PhpStorm.
|
||||
* User: moja
|
||||
* Date: 7/17/13
|
||||
* Time: 10:18 AM
|
||||
* To change this template use File | Settings | File Templates.
|
||||
*/
|
||||
|
||||
namespace Test\Monitoring\Testlib\Datasource\Strategies;
|
||||
use Test\Monitoring\Testlib\DataSource\schemes\ObjectsCacheTemplates;
|
||||
use \Test\Monitoring\Testlib\DataSource\TestFixture;
|
||||
use \Test\Monitoring\Testlib\DataSource\schemes\StatusdatTemplates;
|
||||
|
||||
require_once(dirname(__FILE__).'/../schemes/ObjectsCacheTemplates.php');
|
||||
require_once(dirname(__FILE__).'/../schemes/StatusdatTemplates.php');
|
||||
|
||||
class StatusdatInsertionStrategy implements InsertionStrategy {
|
||||
|
||||
private $statusDatFile;
|
||||
private $objectsCacheFile;
|
||||
private $fixture;
|
||||
private $statusDat;
|
||||
private $objectsCache;
|
||||
|
||||
public function setConnection($ressource)
|
||||
{
|
||||
$this->statusDatFile = $ressource['status_file'];
|
||||
$this->objectsCacheFile = $ressource['objects_file'];
|
||||
}
|
||||
|
||||
public function insert(TestFixture $fixture)
|
||||
{
|
||||
$this->fixture = $fixture;
|
||||
$this->statusDat = '# Automatically created test statusdat from fixture\n';
|
||||
$this->objectsCache = '';
|
||||
$this->insertHoststatus();
|
||||
$this->insertHosts();
|
||||
$this->insertServicestatus();
|
||||
$this->insertServices();
|
||||
|
||||
$this->insertHostgroups();
|
||||
$this->insertServicegroups();
|
||||
$this->insertComments();
|
||||
|
||||
file_put_contents($this->statusDatFile, $this->statusDat);
|
||||
file_put_contents($this->objectsCacheFile, $this->objectsCache);
|
||||
}
|
||||
|
||||
private function insertHoststatus()
|
||||
{
|
||||
$hosts = $this->fixture->getHosts();
|
||||
foreach ($hosts as $host) {
|
||||
$cvs = '';
|
||||
foreach ($host['customvariables'] as $name=>$var) {
|
||||
$cvs .= '_'.$name.'='.$var."\n";
|
||||
}
|
||||
$flags = $host['flags'];
|
||||
$hostStatus = str_replace(
|
||||
array(
|
||||
'{{HOST_NAME}}', '{{TIME}}', '{{NOTIFICATIONS_ENABLED}}',
|
||||
'{{ACKNOWLEDGED}}', '{{ACTIVE_ENABLED}}', '{{PASSIVE_ENABLED}}',
|
||||
'{{FLAPPING}}', '{{IN_DOWNTIME}}', '{{HOST_STATUS}}','{{CVS}}')
|
||||
, array(
|
||||
$host['name'], $flags->time, $flags->notifications, $flags->acknowledged,
|
||||
$flags->active_checks, $flags->passive_checks, $flags->flapping,
|
||||
$flags->in_downtime, $host['state'], $cvs
|
||||
), StatusdatTemplates::$HOST);
|
||||
$this->statusDat .= "\n".$hostStatus;
|
||||
}
|
||||
}
|
||||
|
||||
private function insertHosts()
|
||||
{
|
||||
$hosts = $this->fixture->getHosts();
|
||||
foreach ($hosts as $host) {
|
||||
$hostDefinition = str_replace(
|
||||
array('\t',
|
||||
'{{HOST_NAME}}', '{{HOST_ADDRESS}}', '{{ICON_IMAGE}}',
|
||||
'{{NOTES_URL}}', '{{ACTION_URL}}'
|
||||
),
|
||||
array("\t",
|
||||
$host['name'], $host['address'], $host['icon_image'],
|
||||
$host['notes_url'], $host['action_url']
|
||||
),
|
||||
ObjectsCacheTemplates::$HOST
|
||||
);
|
||||
$this->objectsCache .= "\n".$hostDefinition;
|
||||
}
|
||||
}
|
||||
|
||||
private function insertServicestatus()
|
||||
{
|
||||
$services = $this->fixture->getServices();
|
||||
foreach ($services as $service) {
|
||||
$cvs = '';
|
||||
foreach ($service['customvariables'] as $name=>$var) {
|
||||
$cvs .= '_'.$name.'='.$var;
|
||||
}
|
||||
|
||||
$flags = $service['flags'];
|
||||
$serviceStatus = str_replace(
|
||||
array(
|
||||
'{{HOST_NAME}}','{{SERVICE_NAME}}', '{{TIME}}', '{{NOTIFICATIONS_ENABLED}}',
|
||||
'{{ACKNOWLEDGED}}', '{{ACTIVE_ENABLED}}', '{{PASSIVE_ENABLED}}',
|
||||
'{{FLAPPING}}', '{{IN_DOWNTIME}}', '{{SERVICE_STATUS}}','{{CVS}}')
|
||||
, array(
|
||||
$service['host']['name'], $service['name'], $flags->time, $flags->notifications,
|
||||
$flags->acknowledged, $flags->active_checks, $flags->passive_checks,
|
||||
$flags->flapping, $flags->in_downtime, $service['state'], $cvs
|
||||
), StatusdatTemplates::$SERIVCE);
|
||||
|
||||
|
||||
|
||||
$this->statusDat .= "\n".$serviceStatus;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
private function insertServices()
|
||||
{
|
||||
$services = $this->fixture->getServices();
|
||||
foreach ($services as $service) {
|
||||
$serviceDefinition = str_replace(
|
||||
array('\t',
|
||||
'{{HOST_NAME}}', '{{SERVICE_NAME}}', '{{ICON_IMAGE}}',
|
||||
'{{NOTES_URL}}', '{{ACTION_URL}}'
|
||||
),
|
||||
array("\t",
|
||||
$service['host']['name'], $service['name'], $service['icon_image'],
|
||||
$service['notes_url'], $service['action_url']
|
||||
),
|
||||
ObjectsCacheTemplates::$SERVICE
|
||||
);
|
||||
$this->objectsCache .= "\n".$serviceDefinition;
|
||||
}
|
||||
}
|
||||
|
||||
private function insertGroup($type, $name, array $members)
|
||||
{
|
||||
$groupDefinition = str_replace(
|
||||
array('\t',
|
||||
'{{TYPE}}', '{{NAME}}', '{{MEMBERS}}'
|
||||
),
|
||||
array("\t",
|
||||
'host', $name, implode(",", $members)
|
||||
),
|
||||
ObjectsCacheTemplates::$GROUP
|
||||
);
|
||||
$this->objectsCache .= "\n".$groupDefinition;
|
||||
}
|
||||
|
||||
private function insertHostgroups()
|
||||
{
|
||||
$hostgroups = $this->fixture->getHostgroups();
|
||||
foreach ($hostgroups as $hostgroup) {
|
||||
$memberNames = array();
|
||||
foreach ($hostgroup["members"] as $member) {
|
||||
$memberNames[] = $member["name"];
|
||||
}
|
||||
$this->insertGroup("host", $hostgroup["name"], $memberNames);
|
||||
}
|
||||
}
|
||||
|
||||
private function insertServicegroups()
|
||||
{
|
||||
$servicegroups = $this->fixture->getServicegroups();
|
||||
foreach ($servicegroups as $servicegroup) {
|
||||
$memberNames = array();
|
||||
foreach ($servicegroup["members"] as $member) {
|
||||
$memberNames[] = $member["host"]["name"];
|
||||
$memberNames[] = $member["name"];
|
||||
}
|
||||
$this->insertGroup("service", $serviegroup["name"], $memberNames);
|
||||
}
|
||||
}
|
||||
|
||||
private function insertComments()
|
||||
{
|
||||
$comments = $this->fixture->getComments();
|
||||
$commentId = 0;
|
||||
foreach($comments as $comment) {
|
||||
if (isset($comment["service"])) {
|
||||
$service = $comment["service"];
|
||||
$commentDefinition = str_replace(
|
||||
array('{{HOST_NAME}}', '{{SERVICE_NAME}}', '{{TIME}}', '{{AUTHOR}}', '{{TEXT}}', '{{ID}}'),
|
||||
array(
|
||||
$service["host"]["name"], $service["name"], $service["flags"]->time,
|
||||
$comment["author"], $comment["text"], $commentId++
|
||||
),
|
||||
StatusdatTemplates::$SERVICECOMMENT
|
||||
);
|
||||
} elseif (isset($comment["host"])) {
|
||||
$host = $comment["host"];
|
||||
$commentDefinition = str_replace(
|
||||
array('{{HOST_NAME}}', '{{TIME}}', '{{AUTHOR}}', '{{TEXT}}', '{{ID}}'),
|
||||
array(
|
||||
$host["name"], $host["flags"]->time,
|
||||
$comment["author"], $comment["text"], $commentId++
|
||||
),
|
||||
StatusdatTemplates::$HOSTCOMMENT
|
||||
);
|
||||
}
|
||||
$this->statusDat .= "\n".$commentDefinition;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
|
@ -0,0 +1,64 @@
|
|||
<?php
|
||||
|
||||
namespace Test\Monitoring\Testlib\Datasource\Strategies;
|
||||
|
||||
|
||||
class StatusdatSetupStrategy implements SetupStrategy {
|
||||
|
||||
private function requireFolder($folder)
|
||||
{
|
||||
$files = scandir($folder);
|
||||
foreach($files as $file) {
|
||||
if ($file[0] == ".") {
|
||||
continue;
|
||||
}
|
||||
if (is_dir($folder."/".$file)) {
|
||||
$this->requireFolder($folder."/".$file);
|
||||
} elseif (preg_match("/\.php/", $file)) {
|
||||
require_once($folder."/".$file);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private function requireStatusDat()
|
||||
{
|
||||
$moduleDir = realpath(dirname(__FILE__)."/../../../../../");
|
||||
$appDir = realpath($moduleDir."/../../");
|
||||
$base = $appDir."/library/Icinga/Protocol/StatusDat";
|
||||
require_once("Zend/Cache.php");
|
||||
require_once("Zend/Log.php");
|
||||
require_once($appDir."/library/Icinga/Application/Logger.php");
|
||||
require_once($appDir."/library/Icinga/Protocol/AbstractQuery.php");
|
||||
require_once($base."/Exception/ParsingException.php");
|
||||
require_once($base."/Query/IQueryPart.php");
|
||||
require_once($base."/IReader.php");
|
||||
$this->requireFolder($base);
|
||||
|
||||
}
|
||||
|
||||
public function setup($version = null, $resource = null)
|
||||
{
|
||||
if ($resource == null) {
|
||||
$resource = array(
|
||||
"status_file" => "/tmp/teststatus.dat",
|
||||
"objects_file" => "/tmp/testobjects.cache"
|
||||
);
|
||||
}
|
||||
$this->requireStatusDat();
|
||||
$this->teardown($resource);
|
||||
touch($resource["status_file"]);
|
||||
touch($resource["objects_file"]);
|
||||
return $resource;
|
||||
}
|
||||
|
||||
public function teardown($resource = null)
|
||||
{
|
||||
|
||||
if (file_exists($resource["status_file"])) {
|
||||
unlink($resource["status_file"]);
|
||||
}
|
||||
if (file_exists($resource["objects_file"])) {
|
||||
unlink($resource["objects_file"]);
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue