]> granicus.if.org Git - icinga2/blob - test/icinga-macros.cpp
test/cmake: Don't force dynamic builds for testing
[icinga2] / test / icinga-macros.cpp
1 /******************************************************************************
2  * Icinga 2                                                                   *
3  * Copyright (C) 2012-2018 Icinga Development Team (https://www.icinga.com/)  *
4  *                                                                            *
5  * This program is free software; you can redistribute it and/or              *
6  * modify it under the terms of the GNU General Public License                *
7  * as published by the Free Software Foundation; either version 2             *
8  * of the License, or (at your option) any later version.                     *
9  *                                                                            *
10  * This program is distributed in the hope that it will be useful,            *
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of             *
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the              *
13  * GNU General Public License for more details.                               *
14  *                                                                            *
15  * You should have received a copy of the GNU General Public License          *
16  * along with this program; if not, write to the Free Software Foundation     *
17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.             *
18  ******************************************************************************/
19
20 #include "icinga/macroprocessor.hpp"
21 #include <BoostTestTargetConfig.h>
22
23 using namespace icinga;
24
25 BOOST_AUTO_TEST_SUITE(icinga_macros)
26
27 BOOST_AUTO_TEST_CASE(simple)
28 {
29         Dictionary::Ptr macrosA = new Dictionary();
30         macrosA->Set("testA", 7);
31         macrosA->Set("testB", "hello");
32
33         Dictionary::Ptr macrosB = new Dictionary();
34         macrosB->Set("testA", 3);
35         macrosB->Set("testC", "world");
36
37         Array::Ptr testD = new Array();
38         testD->Add(3);
39         testD->Add("test");
40
41         macrosB->Set("testD", testD);
42
43         MacroProcessor::ResolverList resolvers;
44         resolvers.emplace_back("macrosA", macrosA);
45         resolvers.emplace_back("macrosB", macrosB);
46
47         BOOST_CHECK(MacroProcessor::ResolveMacros("$macrosA.testB$ $macrosB.testC$", resolvers) == "hello world");
48         BOOST_CHECK(MacroProcessor::ResolveMacros("$testA$", resolvers) == "7");
49         BOOST_CHECK(MacroProcessor::ResolveMacros("$testA$$testB$", resolvers) == "7hello");
50
51         Array::Ptr result = MacroProcessor::ResolveMacros("$testD$", resolvers);
52         BOOST_CHECK(result->GetLength() == 2);
53
54         /* verify the config validator macro checks */
55         BOOST_CHECK(MacroProcessor::ValidateMacroString("$host.address") == false);
56         BOOST_CHECK(MacroProcessor::ValidateMacroString("host.vars.test$") == false);
57
58         BOOST_CHECK(MacroProcessor::ValidateMacroString("host.vars.test$") == false);
59         BOOST_CHECK(MacroProcessor::ValidateMacroString("$template::test$abc$") == false);
60
61         BOOST_CHECK(MacroProcessor::ValidateMacroString("$$test $host.vars.test$") == true);
62
63         BOOST_CHECK(MacroProcessor::ValidateMacroString("test $host.vars.test$") == true);
64
65 }
66
67 BOOST_AUTO_TEST_SUITE_END()