summaryrefslogtreecommitdiffstats
path: root/src/boost/libs/spirit/test/karma/buffer.cpp
blob: ef8d12a3e98524fa8437e577d3cc5d6a04ade456 (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
//  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/config/warning_disable.hpp>
#include <boost/detail/lightweight_test.hpp>

#include <boost/spirit/include/karma_numeric.hpp>
#include <boost/spirit/include/karma_generate.hpp>
#include <boost/spirit/include/karma_operator.hpp>
#include <boost/spirit/include/karma_directive.hpp>
#include <boost/spirit/include/karma_char.hpp>

#include <iostream>
#include "test.hpp"

int
main()
{
    using namespace spirit_test;
    using namespace boost::spirit;

    {
        using boost::spirit::karma::double_;
        using boost::spirit::karma::buffer;

        std::vector<double> v;
        BOOST_TEST(test("", -buffer['[' << +double_ << ']'], v));

        v.push_back(1.0);
        v.push_back(2.0);
        BOOST_TEST(test("[1.02.0]", buffer['[' << +double_ << ']'], v));
        BOOST_TEST(test("[1.02.0]", buffer[buffer['[' << +double_ << ']']], v));
    }

    {
        using boost::spirit::karma::double_;
        using boost::spirit::karma::buffer;
        using boost::spirit::ascii::space;

        std::vector<double> v;
        BOOST_TEST(test_delimited("", 
            -buffer['[' << +double_ << ']'], v, space));

        v.push_back(1.0);
        v.push_back(2.0);
        BOOST_TEST(test_delimited("[ 1.0 2.0 ] ", 
            buffer['[' << +double_ << ']'], v, space));
    }

    return boost::report_errors();
}