2019-02-25 08:48:22 -05:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2013-04-19 07:51:33 -04:00
|
|
|
|
2014-05-25 10:23:35 -04:00
|
|
|
#include "base/utility.hpp"
|
2016-09-07 02:20:51 -04:00
|
|
|
#include <BoostTestTargetConfig.h>
|
2013-04-19 07:51:33 -04:00
|
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_SUITE(base_match)
|
|
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(tolong)
|
|
|
|
|
{
|
|
|
|
|
BOOST_CHECK(Utility::Match("*", "hello"));
|
2013-04-19 08:47:41 -04: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 07:51:33 -04: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 08:47:41 -04: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 07:51:33 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_SUITE_END()
|