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
|
/***************************************************************************
* Copyright (c) Johan Mabille, Sylvain Corlay and Wolf Vollprecht *
* Copyright (c) QuantStack *
* *
* Distributed under the terms of the BSD 3-Clause License. *
* *
* The full license is in the file LICENSE, distributed with this software. *
****************************************************************************/
#include "xtl/xsequence.hpp"
#include <array>
#include <vector>
#include "gtest/gtest.h"
namespace xtl
{
template <class T, std::size_t N>
struct aligned_array
: std::array<T, N>
{
};
bool result(const std::array<int, 2>& /*lval*/)
{
return false;
}
bool result(std::array<int, 2>&& /*lval*/)
{
return true;
}
template <class T>
bool test(T&& arg)
{
using shape_type = std::array<int, 2>;
return result(xtl::forward_sequence<shape_type, T>(arg));
}
TEST(xsequence, forward_type)
{
std::array<int, 2> a, b;
std::vector<int> c;
EXPECT_TRUE(test(std::move(a)));
EXPECT_FALSE(test(a));
EXPECT_TRUE(test(c));
EXPECT_TRUE(test(std::move(c)));
}
template <class R, class T>
R test_different_array(T& array)
{
return xtl::forward_sequence<R, T>(array);
}
TEST(xsequence, different_arrays)
{
std::array<int, 3> x, y;
aligned_array<int, 3> aa, ab;
auto res1 = test_different_array<aligned_array<int, 3>>(x);
auto res2 = test_different_array<aligned_array<int, 3>>(aa);
}
TEST(xsequence, forward)
{
std::array<int, 2> a = { 1, 2 };
std::vector<int> b = { 1, 2 };
std::vector<int> resa = xtl::forward_sequence<std::vector<int>, decltype(a)>(a);
EXPECT_EQ(resa, b);
std::array<int, 2> resb = xtl::forward_sequence<std::array<int, 2>, decltype(b)>(b);
EXPECT_EQ(resb, a);
}
TEST(xsequence, make_sequence)
{
using vector_type = std::vector<int>;
using array_type = std::array<int, 3>;
std::size_t size = 3u;
int init_value = 2;
std::initializer_list<int> init_list = { 3, 2, 4 };
vector_type v0 = xtl::make_sequence<vector_type>(size);
EXPECT_EQ(v0.size(), size);
array_type a0 = xtl::make_sequence<array_type>(size);
EXPECT_EQ(a0.size(), size);
vector_type v1 = xtl::make_sequence<vector_type>(size, init_value);
EXPECT_EQ(v1.size(), size);
EXPECT_EQ(v1[0], init_value);
EXPECT_EQ(v1[1], init_value);
EXPECT_EQ(v1[2], init_value);
array_type a1 = xtl::make_sequence<array_type>(size, init_value);
EXPECT_EQ(a1.size(), size);
EXPECT_EQ(a1[0], init_value);
EXPECT_EQ(a1[1], init_value);
EXPECT_EQ(a1[2], init_value);
vector_type v2 = xtl::make_sequence<vector_type>(init_list);
EXPECT_EQ(v2.size(), size);
EXPECT_EQ(v2[0], 3);
EXPECT_EQ(v2[1], 2);
EXPECT_EQ(v2[2], 4);
array_type a2 = xtl::make_sequence<array_type>(init_list);
EXPECT_EQ(a2.size(), size);
EXPECT_EQ(a2[0], 3);
EXPECT_EQ(a2[1], 2);
EXPECT_EQ(a2[2], 4);
}
TEST(xsequence, are_equivalent_sequences)
{
std::array<size_t, 2> a = {2, 3};
std::array<size_t, 2> b = {2, 4};
std::array<size_t, 3> c = {2, 4, 4};
EXPECT_TRUE(xtl::are_equivalent_sequences(a, a) == true);
EXPECT_TRUE(xtl::are_equivalent_sequences(a, b) == false);
EXPECT_TRUE(xtl::are_equivalent_sequences(a, c) == false);
}
}
|