File: to_array_rvalue_test.cpp

package info (click to toggle)
boost1.90 1.90.0-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 593,156 kB
  • sloc: cpp: 4,190,642; xml: 196,648; python: 34,618; ansic: 23,145; asm: 5,468; sh: 3,776; makefile: 1,161; perl: 1,020; sql: 728; ruby: 676; yacc: 478; java: 77; lisp: 24; csh: 6
file content (88 lines) | stat: -rw-r--r-- 3,085 bytes parent folder | download | duplicates (4)
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
// Copyright 2024 Ruben Perez Hidalgo.
// Distributed under the Boost Software License, Version 1.0.
// https://www.boost.org/LICENSE_1_0.txt

#include <boost/compat/to_array.hpp>
#include <boost/core/lightweight_test.hpp>
#include <boost/config.hpp>
#include <boost/config/workaround.hpp>
#include <boost/config/pragma_message.hpp>

#include <array>
#include <memory>
#include <utility>
#include <vector>

#if defined(BOOST_MSVC) && BOOST_MSVC < 1910

BOOST_PRAGMA_MESSAGE( "Test skipped because BOOST_MSVC < 1910" )
int main() {}

#else

namespace compat = boost::compat;

int main()
{
    {
        // regular C array
        int input[] = {5, 6};
        auto output = compat::to_array(std::move(input));
        static_assert(std::is_same<decltype(output), std::array<int, 2>>::value, "");
        BOOST_TEST_EQ(output[0], 5);
        BOOST_TEST_EQ(output[1], 6);
    }
    {
        // regular C array, const
        const int input[] = {5, 6};
        auto output = compat::to_array(std::move(input));
        static_assert(std::is_same<decltype(output), std::array<int, 2>>::value, "");
        BOOST_TEST_EQ(output[0], 5);
        BOOST_TEST_EQ(output[1], 6);
    }
    {
        // values moved
        const std::vector<int> vec{1, 2};
        std::vector<int> input[]{vec};
        auto output = compat::to_array(std::move(input));
        static_assert(std::is_same<decltype(output), std::array<std::vector<int>, 1>>::value, "");
        BOOST_TEST_ALL_EQ(output[0].begin(), output[0].end(), vec.begin(), vec.end());
#if !BOOST_WORKAROUND(BOOST_MSVC, < 1920)
        BOOST_TEST(input[0].empty());  // input left in a moved-from state
#endif
    }
    {
        // const values work (although they don't result in an effective move)
        const std::vector<int> vec{1, 2};
        const std::vector<int> input[]{vec};
        auto output = compat::to_array(std::move(input));
        static_assert(std::is_same<decltype(output), std::array<std::vector<int>, 1>>::value, "");
        BOOST_TEST_ALL_EQ(output[0].begin(), output[0].end(), vec.begin(), vec.end());
        BOOST_TEST_ALL_EQ(input[0].begin(), input[0].end(), vec.begin(), vec.end());  // input not modified
    }
#if !BOOST_WORKAROUND(BOOST_MSVC, < 1920)
    {
        // move-only types work
        std::unique_ptr<int> input[] = {std::unique_ptr<int>{new int(42)}};
        int* ptr = input[0].get();
        auto output = compat::to_array(std::move(input));
        static_assert(std::is_same<decltype(output), std::array<std::unique_ptr<int>, 1>>::value, "");
        BOOST_TEST_EQ(output[0].get(), ptr);
        BOOST_TEST_EQ(input[0].get(), nullptr);  // input left in a moved-from state
    }
#endif

    {
        // constexpr check
        constexpr int input[] = {1, 2, 3};
        constexpr auto output = compat::to_array(std::move(input));
        static_assert(std::is_same<decltype(output), const std::array<int, 3>>::value, "");
        BOOST_TEST_EQ(output[0], 1);
        BOOST_TEST_EQ(output[1], 2);
        BOOST_TEST_EQ(output[2], 3);
    }

    return boost::report_errors();
}

#endif