summaryrefslogtreecommitdiffstats
path: root/src/boost/libs/metaparse/test/foldl_start_with_parser.cpp
blob: a671cc43df1c4799fa19eca05d75bda5d933a313 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
// Copyright Abel Sinkovics (abel@sinkovics.hu) 2012.
// 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)

#include <boost/metaparse/foldl_start_with_parser.hpp>
#include <boost/metaparse/start.hpp>
#include <boost/metaparse/string.hpp>
#include <boost/metaparse/is_error.hpp>
#include <boost/metaparse/get_result.hpp>
#include <boost/metaparse/return_.hpp>
#include <boost/metaparse/v1/impl/back_inserter.hpp>

#include "common.hpp"

#include <boost/mpl/apply_wrap.hpp>
#include <boost/mpl/char.hpp>
#include <boost/mpl/assert.hpp>

#include "test_case.hpp"

namespace
{
  struct keep_state
  {
    typedef keep_state type;

    template <class S, class C>
    struct apply : S {};
  };
}

BOOST_METAPARSE_TEST_CASE(foldl_start_with_parser)
{
  using boost::metaparse::foldl_start_with_parser;
  using boost::metaparse::start;
  using boost::metaparse::is_error;
  using boost::metaparse::lit_c;
  using boost::metaparse::get_result;
  
  using boost::mpl::equal_to;
  using boost::mpl::apply_wrap2;
  using boost::mpl::char_;

  typedef foldl_start_with_parser<lit_c<'a'>, lit_c<'b'>, keep_state> p;

  // test_b
  BOOST_MPL_ASSERT((
    equal_to<get_result<apply_wrap2<p, str_b, start> >::type, char_<'b'> >
  ));
  
  // test_ba
  BOOST_MPL_ASSERT((
    equal_to<get_result<apply_wrap2<p, str_ba, start> >::type, char_<'b'> >
  ));

  // test_baaaa
  BOOST_MPL_ASSERT((
    equal_to<get_result<apply_wrap2<p, str_baaaa, start> >::type, char_<'b'> >
  ));

  // test_c
  BOOST_MPL_ASSERT((is_error<apply_wrap2<p, str_c, start> >));

  // test_ca
  BOOST_MPL_ASSERT((is_error<apply_wrap2<p, str_ca, start> >));
}

// Test foldl_start_with_parser as a normal fold

using boost::metaparse::foldl_start_with_parser;
using boost::metaparse::return_;
using boost::metaparse::v1::impl::back_inserter;

using boost::mpl::vector;

namespace
{
  template <class P>
  struct repeated :
    foldl_start_with_parser<P, return_<vector<> >, back_inserter>
  {};
}

#define TEST_NAME foldl_start_with_parser_as_foldl

#include "repeated_test.hpp"