summaryrefslogtreecommitdiff
path: root/libs/fusion/test/sequence/deduce_sequence.cpp
blob: ea66166279652e72d09c9afdfa8c88a5ea96fb5c (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
/*=============================================================================
    Copyright (c) 2007 Tobias Schwinger

    Use modification and distribution are subject to 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/fusion/support/deduce_sequence.hpp>
#include <boost/fusion/mpl.hpp>
#include <boost/detail/lightweight_test.hpp>

#include <boost/mpl/equal.hpp>

#include <boost/ref.hpp>

using boost::is_same;
using boost::reference_wrapper;
using boost::fusion::traits::deduce;
using boost::fusion::traits::deduce_sequence;

namespace fusion = boost::fusion;

template <class Args>
struct test_seq_ctor
{
    typename deduce_sequence<Args>::type fsq_args;

    test_seq_ctor(Args const & args)
        : fsq_args(args)
    { }
};

#define TEST_SAME_TYPE(a,b) BOOST_TEST(( is_same< a, b >::value ))
#define TEST_SAME_ELEMENTS(a,b) BOOST_TEST(( boost::mpl::equal< a, b >::type::value ))

typedef fusion::vector<int, int const, int &, int const &> args1;
typedef fusion::vector<int, int, int &, int> storable1;
template struct test_seq_ctor<args1>;

typedef fusion::vector< reference_wrapper<int> &, reference_wrapper<int const> &,
    reference_wrapper<int> const &, reference_wrapper<int const> const & > args2;
typedef fusion::vector<int &, int const &, int &, int const &> storable2;
template struct test_seq_ctor<args2>;


typedef fusion::vector<int *, int const *, int const * const, int const * &, int const * const &> args3;
typedef fusion::vector<int *, int const *, int const *, int const * &, int const * > storable3;
template struct test_seq_ctor<args3>;

typedef fusion::vector<int(&)[2], int const(&)[2]> args4;
typedef args4 storable4;
template struct test_seq_ctor<args4>;

int main()
{
    TEST_SAME_TYPE(deduce<int &>::type, int &);
    TEST_SAME_TYPE(deduce<int volatile &>::type,  int volatile &);

    TEST_SAME_TYPE(deduce<int>::type, int);
    TEST_SAME_TYPE(deduce<int const &>::type, int);
    TEST_SAME_TYPE(deduce<int const volatile &>::type, int);

    TEST_SAME_TYPE(deduce< reference_wrapper<int> & >::type, int &);
    TEST_SAME_TYPE(deduce< reference_wrapper<int const> & >::type, int const &);
    TEST_SAME_TYPE(deduce< reference_wrapper<int> const & >::type, int &);
    TEST_SAME_TYPE(deduce< reference_wrapper<int const> const & >::type, int const &);

    TEST_SAME_TYPE(deduce< int(&)[2] >::type, int(&)[2]);
    TEST_SAME_TYPE(deduce< int const (&)[2] >::type, int const (&)[2]);
    TEST_SAME_TYPE(deduce< int volatile (&)[2] >::type, int volatile (&)[2]);
    TEST_SAME_TYPE(deduce< int const volatile (&)[2] >::type, int const volatile (&)[2]);

    TEST_SAME_ELEMENTS(deduce_sequence<args1>::type,storable1);
    TEST_SAME_ELEMENTS(deduce_sequence<args2>::type,storable2);
    TEST_SAME_ELEMENTS(deduce_sequence<args3>::type,storable3);
    TEST_SAME_ELEMENTS(deduce_sequence<args4>::type,storable4);

    return boost::report_errors();
}