-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtest_apply.cc
251 lines (168 loc) · 5.61 KB
/
test_apply.cc
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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
/*
* Copyright (C) 2019 Swift Navigation Inc.
* Contact: Swift Navigation <[email protected]>
*
* This source is subject to the license found in the file 'LICENSE' which must
* be distributed together with this source. All other rights reserved.
*
* THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND,
* EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE.
*/
#include <albatross/Indexing>
#include <gtest/gtest.h>
namespace albatross {
std::vector<double> test_double_vector() { return linspace(0., 10., 11); }
double square(double x) { return x * x; }
struct Foo {
Foo() : value(){};
Foo(const double &x) : value(x){};
bool operator==(const Foo &other) const {
return fabs(other.value - value) < std::numeric_limits<double>::epsilon();
}
double value;
};
Foo make_foo(double x) { return Foo(x); }
class Square {
public:
double operator()(double x) const { return square(x); }
};
/*
* Test Cases
*/
struct SquareClassMethodApply {
auto get_parent() const { return test_double_vector(); }
auto get_function() const { return Square(); }
};
struct SquareFunctionPointerApply {
auto get_parent() const { return test_double_vector(); }
auto get_function() const { return □ }
};
struct SquareFunctionApply {
auto get_parent() const { return test_double_vector(); }
auto get_function() const { return square; }
};
struct SquareLambdaApply {
auto get_parent() const { return test_double_vector(); }
auto get_function() const {
const auto lambda_square = [](double x) { return square(x); };
return lambda_square;
}
};
struct MakeFooFunctionApply {
auto get_parent() const { return test_double_vector(); }
auto get_function() const { return make_foo; }
};
template <typename CaseType> class ApplyTester : public ::testing::Test {
public:
CaseType test_case;
};
typedef ::testing::Types<SquareClassMethodApply, SquareFunctionPointerApply,
SquareFunctionApply, SquareLambdaApply>
ApplyTestCases;
TYPED_TEST_SUITE_P(ApplyTester);
TYPED_TEST_P(ApplyTester, test_apply_sanity) {
auto parent = this->test_case.get_parent();
const auto actual = apply(parent, this->test_case.get_function());
typename std::remove_const<decltype(actual)>::type expected;
for (const auto &x : parent) {
expected.emplace_back(this->test_case.get_function()(x));
}
EXPECT_EQ(expected, actual);
}
REGISTER_TYPED_TEST_SUITE_P(ApplyTester, test_apply_sanity);
INSTANTIATE_TYPED_TEST_SUITE_P(test_apply, ApplyTester, ApplyTestCases);
TEST(test_apply, test_vector_apply_free_function) {
const auto xs = linspace(0., 10., 11);
const auto actual = apply(xs, square);
std::vector<double> expected;
for (const auto &x : xs) {
expected.push_back(x * x);
}
EXPECT_EQ(expected.size(), actual.size());
EXPECT_EQ(expected, actual);
}
TEST(test_apply, test_vector_apply_void) {
const auto xs = linspace(0., 10., 11);
std::size_t call_count = 0;
const auto count_calls = [&](const double &x ALBATROSS_UNUSED) {
++call_count;
};
apply(xs, count_calls);
EXPECT_EQ(call_count, xs.size());
}
struct AutoApplyTest {
AutoApplyTest(int x_) : x(x_){};
int x;
};
TEST(test_apply, test_works_with_auto) {
std::vector<AutoApplyTest> values;
values.emplace_back(0);
values.emplace_back(1);
auto apply_func_with_auto = [](const auto &f) { return f.x; };
const auto output = apply(values, apply_func_with_auto);
}
TEST(test_apply, test_vector_apply_all) {
std::vector<std::vector<bool>> input;
std::vector<bool> expected;
std::vector<bool> empty = {};
input.push_back(empty);
expected.push_back(true);
input.push_back({true});
expected.push_back(true);
input.push_back({false});
expected.push_back(false);
input.push_back({true, true});
expected.push_back(true);
input.push_back({true, false});
expected.push_back(false);
input.push_back({false, true});
expected.push_back(false);
input.push_back({false, false});
expected.push_back(false);
input.push_back({true, true, true});
expected.push_back(true);
input.push_back({true, false, true});
expected.push_back(false);
const auto actual = apply(input, all);
EXPECT_EQ(actual, expected);
}
TEST(test_apply, test_vector_apply_any) {
std::vector<std::vector<bool>> input;
std::vector<bool> expected;
std::vector<bool> empty = {};
input.push_back(empty);
expected.push_back(false);
input.push_back({true});
expected.push_back(true);
input.push_back({false});
expected.push_back(false);
input.push_back({true, true});
expected.push_back(true);
input.push_back({true, false});
expected.push_back(true);
input.push_back({false, true});
expected.push_back(true);
input.push_back({false, false});
expected.push_back(false);
input.push_back({true, true, true});
expected.push_back(true);
input.push_back({true, false, true});
expected.push_back(true);
const auto actual = apply(input, any);
EXPECT_EQ(actual, expected);
}
TEST(test_apply, test_filter) {
const auto xs = linspace(0., 10., 11);
auto is_odd = [](const double &x) { return fmod(x, 2.) == 1.; };
const auto odds = filter(xs, is_odd);
const std::vector<double> expected = {1, 3, 5, 7, 9};
EXPECT_EQ(expected, odds);
auto keep_none = [](const double &) { return false; };
EXPECT_EQ(filter(xs, keep_none).size(), 0);
auto keep_all = [](const double &) { return true; };
EXPECT_EQ(xs, filter(xs, keep_all));
std::set<double> set_xs(xs.begin(), xs.end());
EXPECT_EQ(filter(set_xs, is_odd).size(), expected.size());
}
} // namespace albatross