2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2013-04-19 13:51:33 +02:00
|
|
|
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "base/utility.hpp"
|
2016-09-07 08:20:51 +02:00
|
|
|
#include <BoostTestTargetConfig.h>
|
2013-04-19 13:51:33 +02:00
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_SUITE(base_match)
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(tolong)
|
|
|
|
{
|
|
|
|
BOOST_CHECK(Utility::Match("*", "hello"));
|
2013-04-19 14:47:41 +02:00
|
|
|
BOOST_CHECK(!Utility::Match("\\**", "hello"));
|
|
|
|
BOOST_CHECK(Utility::Match("\\**", "*ello"));
|
|
|
|
BOOST_CHECK(Utility::Match("?e*l?", "hello"));
|
|
|
|
BOOST_CHECK(Utility::Match("?e*l?", "helo"));
|
2013-04-19 13:51:33 +02:00
|
|
|
BOOST_CHECK(!Utility::Match("world", "hello"));
|
|
|
|
BOOST_CHECK(!Utility::Match("hee*", "hello"));
|
|
|
|
BOOST_CHECK(Utility::Match("he??o", "hello"));
|
|
|
|
BOOST_CHECK(Utility::Match("he?", "hel"));
|
2013-04-19 14:47:41 +02:00
|
|
|
BOOST_CHECK(Utility::Match("he*", "hello"));
|
|
|
|
BOOST_CHECK(Utility::Match("he*o", "heo"));
|
|
|
|
BOOST_CHECK(Utility::Match("he**o", "heo"));
|
|
|
|
BOOST_CHECK(Utility::Match("he**o", "hello"));
|
2013-04-19 13:51:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_SUITE_END()
|