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 130 131 132 133 134 135 136 137 138 139 140 141
|
/*=============================================================================
Copyright (c) 2001-2011 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 <string>
#include <vector>
#include <set>
#include <map>
#include <boost/detail/lightweight_test.hpp>
#include <boost/spirit/include/qi_operator.hpp>
#include <boost/spirit/include/qi_char.hpp>
#include <boost/spirit/include/qi_string.hpp>
#include <boost/spirit/include/qi_numeric.hpp>
#include <boost/spirit/include/qi_directive.hpp>
#include <boost/spirit/include/qi_action.hpp>
#include <boost/spirit/include/support_argument.hpp>
#include <boost/spirit/include/phoenix_core.hpp>
#include <boost/spirit/include/phoenix_operator.hpp>
#include <boost/spirit/include/phoenix_object.hpp>
#include <boost/spirit/include/phoenix_container.hpp>
#include <boost/fusion/include/std_pair.hpp>
#include <string>
#include <iostream>
#include "test.hpp"
using namespace spirit_test;
int
main()
{
using namespace boost::spirit::ascii;
{
BOOST_TEST(test("a,b,c,d,e,f,g,h", char_ % ','));
BOOST_TEST(test("a,b,c,d,e,f,g,h,", char_ % ',', false));
}
{
BOOST_TEST(test("a, b, c, d, e, f, g, h", char_ % ',', space));
BOOST_TEST(test("a, b, c, d, e, f, g, h,", char_ % ',', space, false));
}
{
std::string s;
BOOST_TEST(test_attr("a,b,c,d,e,f,g,h", char_ % ',', s));
BOOST_TEST(s == "abcdefgh");
BOOST_TEST(!test("a,b,c,d,e,f,g,h,", char_ % ','));
}
{
std::string s;
BOOST_TEST(test_attr("ab,cd,ef,gh", (char_ >> char_) % ',', s));
BOOST_TEST(s == "abcdefgh");
BOOST_TEST(!test("ab,cd,ef,gh,", (char_ >> char_) % ','));
BOOST_TEST(!test("ab,cd,ef,g", (char_ >> char_) % ','));
s.clear();
BOOST_TEST(test_attr("ab,cd,efg", (char_ >> char_) % ',' >> char_, s));
BOOST_TEST(s == "abcdefg");
}
{
using boost::spirit::int_;
std::vector<int> v;
BOOST_TEST(test_attr("1,2", int_ % ',', v));
BOOST_TEST(2 == v.size() && 1 == v[0] && 2 == v[1]);
}
{
using boost::spirit::int_;
std::vector<int> v;
BOOST_TEST(test_attr("(1,2)", '(' >> int_ % ',' >> ')', v));
BOOST_TEST(2 == v.size() && 1 == v[0] && 2 == v[1]);
}
{
std::vector<std::string> v;
BOOST_TEST(test_attr("a,b,c,d", +alpha % ',', v));
BOOST_TEST(4 == v.size() && "a" == v[0] && "b" == v[1]
&& "c" == v[2] && "d" == v[3]);
}
{
std::vector<boost::optional<char> > v;
BOOST_TEST(test_attr("#a,#", ('#' >> -alpha) % ',', v));
BOOST_TEST(2 == v.size() &&
!!v[0] && 'a' == boost::get<char>(v[0]) && !v[1]);
std::vector<char> v2;
BOOST_TEST(test_attr("#a,#", ('#' >> -alpha) % ',', v2));
BOOST_TEST(1 == v2.size() && 'a' == v2[0]);
}
{
typedef std::set<std::pair<std::string, std::string> > set_type;
set_type s;
BOOST_TEST(test_attr("k1=v1&k2=v2",
(*(char_ - '=') >> '=' >> *(char_ - '&')) % '&', s));
set_type::const_iterator it = s.begin();
BOOST_TEST(s.size() == 2);
BOOST_TEST(it != s.end() && (*it).first == "k1" && (*it).second == "v1");
BOOST_TEST(++it != s.end() && (*it).first == "k2" && (*it).second == "v2");
}
{
typedef std::map<std::string, std::string> map_type;
map_type m;
BOOST_TEST(test_attr("k1=v1&k2=v2",
(*(char_ - '=') >> '=' >> *(char_ - '&')) % '&', m));
map_type::const_iterator it = m.begin();
BOOST_TEST(m.size() == 2);
BOOST_TEST(it != m.end() && (*it).first == "k1" && (*it).second == "v1");
BOOST_TEST(++it != m.end() && (*it).first == "k2" && (*it).second == "v2");
}
{ // actions
namespace phx = boost::phoenix;
using boost::phoenix::begin;
using boost::phoenix::end;
using boost::phoenix::construct;
using boost::spirit::qi::_1;
std::string s;
BOOST_TEST(test("a,b,c,d,e,f,g,h", (char_ % ',')
[phx::ref(s) = construct<std::string>(begin(_1), end(_1))]));
}
return boost::report_errors();
}
|