summaryrefslogtreecommitdiffstats
path: root/src/boost/libs/metaparse/test/one_char_test.hpp
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 18:45:59 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 18:45:59 +0000
commit19fcec84d8d7d21e796c7624e521b60d28ee21ed (patch)
tree42d26aa27d1e3f7c0b8bd3fd14e7d7082f5008dc /src/boost/libs/metaparse/test/one_char_test.hpp
parentInitial commit. (diff)
downloadceph-upstream.tar.xz
ceph-upstream.zip
Adding upstream version 16.2.11+ds.upstream/16.2.11+dsupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/boost/libs/metaparse/test/one_char_test.hpp')
-rw-r--r--src/boost/libs/metaparse/test/one_char_test.hpp103
1 files changed, 103 insertions, 0 deletions
diff --git a/src/boost/libs/metaparse/test/one_char_test.hpp b/src/boost/libs/metaparse/test/one_char_test.hpp
new file mode 100644
index 000000000..033415b50
--- /dev/null
+++ b/src/boost/libs/metaparse/test/one_char_test.hpp
@@ -0,0 +1,103 @@
+// Copyright Abel Sinkovics (abel@sinkovics.hu) 2010 - 2011.
+// Distributed under the Boost Software License, Version 1.0.
+// (See accompanying file LICENSE_1_0.txt or copy at
+// http://www.boost.org/LICENSE_1_0.txt)
+
+// This header file contains code that is reused by other cpp files
+
+#include <boost/metaparse/is_error.hpp>
+#include <boost/metaparse/start.hpp>
+#include <boost/metaparse/get_result.hpp>
+#include <boost/metaparse/get_remaining.hpp>
+#include <boost/metaparse/get_position.hpp>
+#include <boost/metaparse/get_line.hpp>
+#include <boost/metaparse/iterate_c.hpp>
+
+#include "common.hpp"
+
+#include <boost/mpl/equal_to.hpp>
+#include <boost/mpl/apply_wrap.hpp>
+#include <boost/mpl/assert.hpp>
+
+#include "test_case.hpp"
+
+namespace
+{
+ using boost::metaparse::start;
+
+ using boost::mpl::list_c;
+ using boost::mpl::apply_wrap2;
+
+ typedef list_c<char, 'a','\n','b'> unix_multi_line_text;
+ typedef list_c<char, 'a','\r','\n','b'> dos_multi_line_text;
+ typedef list_c<char, 'a','\r','b'> mac_multi_line_text;
+
+ typedef apply_wrap2<oc, str_hello, start> parse_first_char;
+}
+
+BOOST_METAPARSE_TEST_CASE(TEST_NAME)
+{
+ using boost::metaparse::get_result;
+ using boost::metaparse::get_remaining;
+ using boost::metaparse::get_position;
+ using boost::metaparse::is_error;
+ using boost::metaparse::iterate_c;
+ using boost::metaparse::get_line;
+
+ using boost::mpl::equal_to;
+
+ // test_for_non_empty_string
+ BOOST_MPL_ASSERT((equal_to<get_result<parse_first_char>::type, char_h>));
+
+ // test_for_non_empty_string_second
+ BOOST_MPL_ASSERT((
+ equal_to<
+ get_result<
+ apply_wrap2<
+ oc,
+ get_remaining<parse_first_char>::type,
+ get_position<parse_first_char>::type
+ >
+ >::type,
+ char_e
+ >
+ ));
+
+ // test_for_empty_string
+ BOOST_MPL_ASSERT((is_error<apply_wrap2<oc, str_, start> >));
+
+ // test_unix_multi_line_text
+ BOOST_MPL_ASSERT((
+ equal_to<
+ int2,
+ get_line<
+ get_position<
+ apply_wrap2<iterate_c<oc, 2>, unix_multi_line_text, start>
+ >
+ >
+ >
+ ));
+
+ // test_dos_multi_line_text
+ BOOST_MPL_ASSERT((
+ equal_to<
+ int2,
+ get_line<
+ get_position<apply_wrap2<iterate_c<oc, 3>, dos_multi_line_text, start> >
+ >
+ >
+ ));
+
+ // test_mac_multi_line_text
+ BOOST_MPL_ASSERT((
+ equal_to<
+ int2,
+ get_line<
+ get_position<apply_wrap2<iterate_c<oc, 2>, mac_multi_line_text, start> >
+ >
+ >
+ ));
+}
+
+
+