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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
/*=============================================================================
Copyright (c) 2001-2015 Joel de Guzman
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/detail/lightweight_test.hpp>
#include <boost/spirit/home/x3.hpp>
#include <string>
#include <cstring>
#include <iostream>
#include "test.hpp"
int
main()
{
using spirit_test::test_attr;
using spirit_test::test;
using namespace boost::spirit::x3::ascii;
using boost::spirit::x3::rule;
using boost::spirit::x3::lit;
using boost::spirit::x3::int_;
using boost::spirit::x3::unused_type;
using boost::spirit::x3::phrase_parse;
using boost::spirit::x3::skip_flag;
using boost::spirit::x3::traits::has_attribute;
// check attribute advertising
static_assert( has_attribute<rule<class r, int>, /*Context=*/unused_type>::value, "");
static_assert(!has_attribute<rule<class r >, /*Context=*/unused_type>::value, "");
static_assert( has_attribute<decltype(rule<class r, int>{} = int_), /*Context=*/unused_type>::value, "");
static_assert(!has_attribute<decltype(rule<class r >{} = int_), /*Context=*/unused_type>::value, "");
{ // basic tests
auto a = lit('a');
auto b = lit('b');
auto c = lit('c');
rule<class r> r;
{
auto start =
r = *(a | b | c);
BOOST_TEST(test("abcabcacb", start));
}
{
auto start =
r = (a | b) >> (r | b);
BOOST_TEST(test("aaaabababaaabbb", start));
BOOST_TEST(test("aaaabababaaabba", start, false));
// ignore the skipper!
BOOST_TEST(test("aaaabababaaabba", start, space, false));
}
}
{ // basic tests w/ skipper
auto a = lit('a');
auto b = lit('b');
auto c = lit('c');
rule<class r> r;
{
auto start =
r = *(a | b | c);
BOOST_TEST(test(" a b c a b c a c b ", start, space));
}
{
auto start =
r = (a | b) >> (r | b);
BOOST_TEST(test(" a a a a b a b a b a a a b b b ", start, space));
BOOST_TEST(test(" a a a a b a b a b a a a b b a ", start, space, false));
}
}
{ // basic tests w/ skipper but no final post-skip
auto a = rule<class a>()
= lit('a');
auto b = rule<class b>()
= lit('b');
auto c = rule<class c>()
= lit('c');
{
auto start = rule<class start>() = *(a | b) >> c;
char const *s1 = " a b a a b b a c ... "
, *const e1 = s1 + std::strlen(s1);
BOOST_TEST(phrase_parse(s1, e1, start, space, skip_flag::dont_post_skip)
&& s1 == e1 - 5);
}
{
rule<class start> start;
auto p =
start = (a | b) >> (start | c);
{
char const *s1 = " a a a a b a b a b a a a b b b c "
, *const e1 = s1 + std::strlen(s1);
BOOST_TEST(phrase_parse(s1, e1, p, space, skip_flag::post_skip)
&& s1 == e1);
}
{
char const *s1 = " a a a a b a b a b a a a b b b c "
, *const e1 = s1 + std::strlen(s1);
BOOST_TEST(phrase_parse(s1, e1, p, space, skip_flag::dont_post_skip)
&& s1 == e1 - 1);
}
}
}
return boost::report_errors();
}
|