summaryrefslogtreecommitdiffstats
path: root/library/Eventdb/Test/Bootstrap.php
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-14 13:18:42 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-14 13:18:42 +0000
commit9f39660f50004ca7c49ea171e2a6f199487cd667 (patch)
tree4a77cd3e323c37b0e5b3d7578b9718cdf1a89262 /library/Eventdb/Test/Bootstrap.php
parentInitial commit. (diff)
downloadicingaweb2-module-eventdb-9f39660f50004ca7c49ea171e2a6f199487cd667.tar.xz
icingaweb2-module-eventdb-9f39660f50004ca7c49ea171e2a6f199487cd667.zip
Adding upstream version 1.3.0.upstream/1.3.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'library/Eventdb/Test/Bootstrap.php')
-rw-r--r--library/Eventdb/Test/Bootstrap.php35
1 files changed, 35 insertions, 0 deletions
diff --git a/library/Eventdb/Test/Bootstrap.php b/library/Eventdb/Test/Bootstrap.php
new file mode 100644
index 0000000..848b360
--- /dev/null
+++ b/library/Eventdb/Test/Bootstrap.php
@@ -0,0 +1,35 @@
+<?php
+
+namespace Icinga\Module\Eventdb\Test;
+
+use Icinga\Application\EmbeddedWeb;
+use Icinga\Authentication\Auth;
+use Icinga\User;
+
+class Bootstrap
+{
+ public static function web($basedir = null)
+ {
+ error_reporting(E_ALL | E_STRICT);
+ if ($basedir === null) {
+ $basedir = dirname(dirname(dirname(__DIR__)));
+ }
+ $testsDir = $basedir . '/test';
+ require_once 'Icinga/Application/EmbeddedWeb.php';
+
+ if (array_key_exists('ICINGAWEB_CONFIGDIR', $_SERVER)) {
+ $configDir = $_SERVER['ICINGAWEB_CONFIGDIR'];
+ } else {
+ $configDir = $testsDir . '/config';
+ }
+
+ EmbeddedWeb::start($testsDir, $configDir)
+ ->getModuleManager()
+ ->loadModule('eventdb', $basedir)
+ ->loadModule('monitoring', $basedir . '/vendor/icingaweb2/modules/monitoring');
+
+ $user = new User('icingaadmin');
+ $user->setPermissions(array('*'));
+ Auth::getInstance()->setAuthenticated($user);
+ }
+}