2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2016-05-24 13:37:14 +02:00
|
|
|
|
|
|
|
#include "config/configcompiler.hpp"
|
|
|
|
#include "config/configitem.hpp"
|
|
|
|
#include "base/application.hpp"
|
|
|
|
#include "base/loader.hpp"
|
2018-03-23 13:31:34 +01:00
|
|
|
#include "icingaapplication-fixture.hpp"
|
2016-05-24 13:37:14 +02:00
|
|
|
#include <BoostTestTargetConfig.h>
|
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
|
|
|
struct LivestatusFixture
|
|
|
|
{
|
2018-01-04 04:25:35 +01:00
|
|
|
LivestatusFixture()
|
2016-05-24 13:37:14 +02:00
|
|
|
{
|
2018-03-23 13:31:34 +01:00
|
|
|
// ensure IcingaApplication is initialized before we try to add config
|
|
|
|
IcingaApplicationFixture icinga;
|
|
|
|
|
2016-09-07 08:20:51 +02:00
|
|
|
BOOST_TEST_MESSAGE("Preparing config objects...");
|
2016-05-24 13:37:14 +02:00
|
|
|
|
2017-11-29 11:53:45 +01:00
|
|
|
ConfigItem::RunWithActivationContext(new Function("CreateTestObjects", CreateTestObjects));
|
2016-05-24 13:37:14 +02:00
|
|
|
}
|
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
static void CreateTestObjects()
|
2016-08-28 08:18:40 +02:00
|
|
|
{
|
|
|
|
String config = R"CONFIG(
|
|
|
|
object CheckCommand "dummy" {
|
|
|
|
command = "/bin/echo"
|
|
|
|
}
|
|
|
|
|
|
|
|
object Host "test-01" {
|
|
|
|
address = "127.0.0.1"
|
|
|
|
check_command = "dummy"
|
|
|
|
}
|
|
|
|
|
|
|
|
object Host "test-02" {
|
|
|
|
address = "127.0.0.2"
|
|
|
|
check_command = "dummy"
|
|
|
|
}
|
|
|
|
|
2016-08-28 10:41:01 +02:00
|
|
|
apply Service "livestatus" {
|
2016-08-28 08:18:40 +02:00
|
|
|
check_command = "dummy"
|
|
|
|
notes = "test livestatus"
|
|
|
|
assign where match("test-*", host.name)
|
|
|
|
}
|
|
|
|
)CONFIG";
|
|
|
|
|
2017-12-15 05:34:46 +01:00
|
|
|
std::unique_ptr<Expression> expr = ConfigCompiler::CompileText("<livestatus>", config);
|
2016-08-28 08:18:40 +02:00
|
|
|
expr->Evaluate(*ScriptFrame::GetCurrentFrame());
|
|
|
|
}
|
2016-05-24 13:37:14 +02:00
|
|
|
};
|
|
|
|
|
2017-01-10 15:54:22 +01:00
|
|
|
BOOST_GLOBAL_FIXTURE(LivestatusFixture);
|