2016-11-23 04:12:25 -05:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace Icinga\Module\Businessprocess\Test;
|
|
|
|
|
|
2016-11-23 17:03:48 -05:00
|
|
|
use Icinga\Application\Config;
|
2016-11-23 04:12:25 -05:00
|
|
|
use Icinga\Application\ApplicationBootstrap;
|
|
|
|
|
use Icinga\Application\Icinga;
|
2017-01-11 08:04:45 -05:00
|
|
|
use Icinga\Module\Businessprocess\BpConfig;
|
2016-11-24 04:57:30 -05:00
|
|
|
use Icinga\Module\Businessprocess\Storage\LegacyStorage;
|
2016-11-23 18:20:59 -05:00
|
|
|
use Icinga\Module\Businessprocess\Web\FakeRequest;
|
2016-11-23 04:12:25 -05:00
|
|
|
use PHPUnit_Framework_TestCase;
|
|
|
|
|
|
|
|
|
|
abstract class BaseTestCase extends PHPUnit_Framework_TestCase
|
|
|
|
|
{
|
|
|
|
|
/** @var ApplicationBootstrap */
|
|
|
|
|
private static $app;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @inheritdoc
|
|
|
|
|
*/
|
|
|
|
|
public function setUp()
|
|
|
|
|
{
|
|
|
|
|
$this->app();
|
2016-11-23 18:20:59 -05:00
|
|
|
FakeRequest::setConfiguredBaseUrl('/icingaweb2/');
|
2016-11-23 04:12:25 -05:00
|
|
|
}
|
|
|
|
|
|
2016-11-23 17:03:48 -05:00
|
|
|
protected function emptyConfigSection()
|
|
|
|
|
{
|
|
|
|
|
return Config::module('businessprocess')->getSection('global');
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-24 04:57:30 -05:00
|
|
|
/***
|
2017-01-11 08:04:45 -05:00
|
|
|
* @return BpConfig
|
2016-11-24 04:57:30 -05:00
|
|
|
*/
|
|
|
|
|
protected function makeLoop()
|
|
|
|
|
{
|
|
|
|
|
return $this->makeInstance()->loadFromString(
|
|
|
|
|
'loop',
|
|
|
|
|
"a = b\nb = c\nc = a\nd = a"
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @return LegacyStorage
|
|
|
|
|
*/
|
|
|
|
|
protected function makeInstance()
|
|
|
|
|
{
|
|
|
|
|
return new LegacyStorage($this->emptyConfigSection());
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-23 04:12:25 -05:00
|
|
|
/**
|
|
|
|
|
* @param null $subDir
|
|
|
|
|
* @return string
|
|
|
|
|
*/
|
|
|
|
|
protected function getTestsBaseDir($subDir = null)
|
|
|
|
|
{
|
|
|
|
|
$dir = dirname(dirname(dirname(__DIR__))) . '/test';
|
|
|
|
|
if ($subDir === null) {
|
|
|
|
|
return $dir;
|
|
|
|
|
} else {
|
|
|
|
|
return $dir . '/' . ltrim($subDir, '/');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @return ApplicationBootstrap
|
|
|
|
|
*/
|
|
|
|
|
protected function app()
|
|
|
|
|
{
|
|
|
|
|
if (self::$app === null) {
|
|
|
|
|
self::$app = Icinga::app();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return self::$app;
|
|
|
|
|
}
|
|
|
|
|
}
|