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
|
// Copyright (c) 2001-2011 Hartmut Kaiser
//
// 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/spirit/include/karma_auxiliary.hpp>
#include <boost/spirit/include/karma_char.hpp>
#include <boost/spirit/include/karma_string.hpp>
#include <boost/spirit/include/karma_operator.hpp>
#include <boost/spirit/include/karma_directive.hpp>
#include <boost/spirit/include/karma_generate.hpp>
#include <boost/spirit/include/karma_nonterminal.hpp>
#include <boost/core/lightweight_test.hpp>
#include <boost/core/lightweight_test_trait.hpp>
#include "test.hpp"
namespace fusion = boost::fusion;
template <typename T>
inline std::vector<T>
make_vector(T const& t1, T const& t2)
{
std::vector<T> v;
v.push_back(t1);
v.push_back(t2);
return v;
}
int main()
{
using spirit_test::test;
using boost::spirit::karma::symbols;
{ // basics
symbols<char, std::string> sym;
sym.add
('j', "Joel")
('h', "Hartmut")
('t', "Tom")
('k', "Kim")
;
BOOST_TEST_TRAIT_TRUE((
boost::spirit::traits::is_generator<
symbols<char, std::string> >));
BOOST_TEST((test("Joel", sym, 'j')));
BOOST_TEST((test("Hartmut", sym, 'h')));
BOOST_TEST((test("Tom", sym, 't')));
BOOST_TEST((test("Kim", sym, 'k')));
BOOST_TEST((!test("", sym, 'x')));
// test copy
symbols<char, std::string> sym2;
sym2 = sym;
BOOST_TEST((test("Joel", sym2, 'j')));
BOOST_TEST((test("Hartmut", sym2, 'h')));
BOOST_TEST((test("Tom", sym2, 't')));
BOOST_TEST((test("Kim", sym2, 'k')));
BOOST_TEST((!test("", sym2, 'x')));
// make sure it plays well with other generators
BOOST_TEST((test("Joelyo", sym << "yo", 'j')));
sym.remove
('j')
('h')
;
BOOST_TEST((!test("", sym, 'j')));
BOOST_TEST((!test("", sym, 'h')));
}
{ // lower/upper handling
using namespace boost::spirit::ascii;
using boost::spirit::karma::lower;
using boost::spirit::karma::upper;
symbols<char, std::string> sym;
sym.add
('j', "Joel")
('h', "Hartmut")
('t', "Tom")
('k', "Kim")
;
BOOST_TEST((test("joel", lower[sym], 'j')));
BOOST_TEST((test("hartmut", lower[sym], 'h')));
BOOST_TEST((test("tom", lower[sym], 't')));
BOOST_TEST((test("kim", lower[sym], 'k')));
BOOST_TEST((test("JOEL", upper[sym], 'j')));
BOOST_TEST((test("HARTMUT", upper[sym], 'h')));
BOOST_TEST((test("TOM", upper[sym], 't')));
BOOST_TEST((test("KIM", upper[sym], 'k')));
// make sure it plays well with other generators
BOOST_TEST((test("joelyo", lower[sym] << "yo", 'j')));
BOOST_TEST((test("JOELyo", upper[sym] << "yo", 'j')));
}
return boost::report_errors();
}
|