-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtest_zip_two.cpp
159 lines (116 loc) · 3.65 KB
/
test_zip_two.cpp
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
#include "zip_two.hpp"
#include <iostream>
#include <iostream>
#include <memory>
#include <type_traits>
#include <gtest/gtest.h>
TEST(ZipTuple, CanIterateVector)
{
auto a = std::vector<int>{1, 2, 3, 4, 5, 6};
auto b = std::vector<int>{1, 2, 3, 4, 5, 6};
auto expected = std::vector<int>{2, 4, 6, 8, 10, 12};
auto result = std::vector<int>{};
for (auto && [i, j] : c9::zip(a, b)) {
result.push_back(i + j);
}
EXPECT_EQ(result, expected);
}
TEST(ZipTuple, CanAssignZippedByReference)
{
auto a = std::vector<int>{1, 2, 3, 4, 5, 6};
auto b = std::vector<int>{};
b.resize(a.size());
for (auto && [i, j] : c9::zip(a, b)) {
j = i;
}
EXPECT_EQ(a, b);
}
TEST(ZipTuple, WillIterateOverShortestSize)
{
auto a = std::vector<int>{1, 2, 3};
auto b = std::vector<int>{1, 2, 3, 4, 5, 6, 7};
auto count = 0ull;
for (auto && [i, j] : c9::zip(a, b)) {
++count;
}
EXPECT_EQ(a.size(), count);
}
TEST(ZipTuple, ZippedProvidesReference)
{
auto a = std::vector<int>{1, 2, 3, 4, 5, 6};
auto zipper = c9::zip(a, a);
using iter_type = decltype(zipper.begin()); /* zip_iterator<...> */
using iter_value_type = iter_type::value_type;
using expected_value_type = std::pair<int&, int&>;
constexpr static auto is_same = std::is_same_v<
iter_value_type,
expected_value_type>;
EXPECT_TRUE(is_same);
}
TEST(ZipTuple, ConstZippedProvidesConstReference)
{
const auto a = std::vector<int>{1, 2, 3, 4, 5, 6};
auto zipper = c9::zip(a, a);
using iter_type = decltype(zipper.begin()); /* zip_iterator<...> */
using iter_value_type = iter_type::value_type;
using expected_value_type = std::pair<int const &, int const &>;
constexpr static auto is_same = std::is_same_v<
iter_value_type,
expected_value_type>;
EXPECT_TRUE(is_same);
}
TEST(ZipTuple, MixedZippedProvidesMixedReference)
{
const auto a = std::vector<int>{1, 2, 3, 4, 5, 6};
auto b = std::vector<int>{1, 2, 3, 4, 5, 6};
auto zipper = c9::zip(a, b);
using iter_type = decltype(zipper.begin()); /* zip_iterator<...> */
using iter_value_type = iter_type::value_type;
using expected_value_type = std::pair<const int&, int&>;
constexpr static auto is_same = std::is_same_v<
iter_type::value_type,
expected_value_type>;
EXPECT_TRUE(is_same);
}
TEST(ZipTuple, CanIterateArray)
{
auto a = std::array<int, 6>{1, 2, 3, 4, 5, 6};
auto b = std::array<int, 6>{1, 2, 3, 4, 5, 6};
auto expected = std::vector<int>{2, 4, 6, 8, 10, 12};
auto result = std::vector<int>{};
for (auto && [i, j] : c9::zip(a, b)) {
result.push_back(i + j);
}
EXPECT_EQ(result, expected);
}
TEST(ZipTuple, CanIterateRawArray)
{
int a[] = {1, 2, 3, 4, 5, 6};
int b[] = {1, 2, 3, 4, 5, 6};
auto expected = std::vector<int>{2, 4, 6, 8, 10, 12};
auto result = std::vector<int>{};
for (auto && [i, j] : c9::zip(a, b)) {
result.push_back(i + j);
}
EXPECT_EQ(result, expected);
}
TEST(ZipTuple, CanIterateConstRawArray)
{
const int a[] = {1, 2, 3, 4, 5, 6};
const int b[] = {1, 2, 3, 4, 5, 6};
auto expected = std::vector<int>{2, 4, 6, 8, 10, 12};
auto result = std::vector<int>{};
for (auto && [i, j] : c9::zip(a, b)) {
result.push_back(i + j);
}
EXPECT_EQ(result, expected);
}
TEST(ZipTuple, CanAssignToVectorOfBool)
{
const auto a = std::vector<bool>{1, 0, 1, 0, 1, 0};
auto b = std::vector<bool>{0, 0, 0, 0, 0, 0};
for (auto && [i, j] : c9::zip(a, b)) {
j = i;
}
EXPECT_EQ(a, b);
}