-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoption_test.cpp
185 lines (156 loc) · 6.45 KB
/
option_test.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
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
#include <cmath>
#include <gtest/gtest.h>
#include <rustly/option.h>
#include <rustly/result.h>
using namespace rustly;
TEST(Option, Constructor)
{
EXPECT_TRUE(None().is_none());
EXPECT_TRUE(None<uint16_t>().is_none());
EXPECT_FALSE(None().is_some());
EXPECT_FALSE(None<uint16_t>().is_some());
EXPECT_FALSE(Some("hiya").is_none());
EXPECT_TRUE(Some(71).is_some());
}
TEST(Option, Equality)
{
EXPECT_EQ(None(), None());
EXPECT_EQ(None(), None<uint32_t>()); // Also check that typed None's are equal to None
EXPECT_EQ(None<uint32_t>(), None());
EXPECT_EQ(None<uint32_t>(), None<uint32_t>());
EXPECT_EQ(Some("hiya"), Some("hiya"));
EXPECT_NE(Some("hiya"), Some(17));
EXPECT_NE(Some(17), Some("hiya"));
EXPECT_NE(Some("hiya"), None());
EXPECT_NE(None(), Some("hiya"));
EXPECT_NE(Some("hiya"), None<const char *>());
EXPECT_NE(None<const char *>(), Some("hiya"));
}
TEST(Option, Boolean)
{
EXPECT_TRUE(None().is_none());
EXPECT_FALSE(None().is_some());
EXPECT_FALSE(None().is_some_and([](auto v)
{ return true; }));
EXPECT_FALSE(None().is_some_and([](auto v)
{ return false; }));
EXPECT_FALSE(Some(17).is_none());
EXPECT_TRUE(Some(17).is_some());
EXPECT_TRUE(Some(17).is_some_and([](auto v)
{ return v == 17; }));
EXPECT_FALSE(Some(17).is_some_and([](auto v)
{ return v != 17; }));
EXPECT_EQ(None<uint32_t>().and_b(None<const char *>()), None()); // Add explicit types to check compatibility
EXPECT_EQ(None<uint32_t>().and_b(Some("foo")), None());
EXPECT_EQ(Some(2).and_b(None<std::string>()), None());
EXPECT_EQ(Some(2).and_b(Some("foo")), Some("foo"));
std::function<Option<std::string>(uint32_t)>
sq_then_to_string = [](uint32_t x)
{
return (x > sqrt(UINT32_MAX)) ? None() : Some(std::to_string(x * x));
};
EXPECT_EQ(Some((uint32_t)2).and_then(sq_then_to_string), Some("4"));
EXPECT_EQ(Some((uint32_t)1'000'000).and_then(sq_then_to_string), None());
EXPECT_EQ(None().and_then(sq_then_to_string), None());
EXPECT_EQ(None<uint32_t>().or_b(None()), None()); // Add explicit types to check compatibility
EXPECT_EQ(None().or_b(Some(100)), Some(100));
EXPECT_EQ(Some(2).or_b(None()), Some(2));
EXPECT_EQ(Some(2).or_b(Some(100)), Some(2));
std::function<Option<const char *>()> nobody = []()
{ return None(); };
std::function<Option<const char *>()> vikings = []()
{ return Some("vikings"); };
EXPECT_EQ(Some("barbarians").or_else(vikings), Some("barbarians"));
EXPECT_EQ(None().or_else(vikings), Some("vikings"));
EXPECT_EQ(None().or_else(nobody), None());
EXPECT_EQ(Some(2).xor_b(None()), Some(2));
EXPECT_EQ(None().xor_b(Some(2)), Some(2));
EXPECT_EQ(Some(2).xor_b(Some(2)), None());
EXPECT_EQ(None<uint32_t>().xor_b(None<uint32_t>()), None());
}
TEST(Option, Expect)
{
EXPECT_EXIT(None().expect("a message"), ::testing::KilledBySignal(SIGABRT), "panicked at .*\na message");
EXPECT_EQ(Some("foo").expect("a message"), "foo");
}
TEST(Option, Unwrap)
{
EXPECT_EXIT(None().unwrap(), ::testing::KilledBySignal(SIGABRT), "panicked at .*\ncalled `Option::unwrap\\(\\)` on a `None` value");
EXPECT_EQ(Some("foo").unwrap(), "foo");
EXPECT_EQ(None().unwrap_or("bar"), "bar");
EXPECT_EQ(Some("foo").unwrap_or("bar"), "foo");
EXPECT_EQ(None().unwrap_or_else<const char *>([]
{ return "bar"; }),
"bar");
EXPECT_EQ(Some("foo").unwrap_or_else([]
{ return "bar"; }),
"foo");
EXPECT_EQ(None<std::string>().unwrap_or_default(), "");
EXPECT_EQ(None<uint16_t>().unwrap_or_default(), 0);
EXPECT_EQ(Some("foo").unwrap_or_default(), "foo");
}
TEST(Option, Map)
{
std::function<size_t(std::string)> f = [](auto s)
{ return s.size(); };
// Test explicit and lambda notation
EXPECT_EQ(Some(std::string("Hello, World!")).map(f), Some(13));
EXPECT_EQ(Some(std::string("Hello, World!")).map<size_t>([](auto s)
{ return s.size(); }),
Some(13));
EXPECT_EQ(None().map(f), None());
EXPECT_EQ(None<std::string>().map<size_t>([](auto s)
{ return s.size(); }),
None());
// Same for map_or
EXPECT_EQ(Some(std::string("foo")).map_or((size_t)42, f), 3);
EXPECT_EQ(Some(std::string("foo")).map_or<size_t>(42, [](auto s)
{ return s.size(); }),
3);
EXPECT_EQ(None().map_or((size_t)42, f), 42);
EXPECT_EQ(None<std::string>().map_or<size_t>(42, [](auto s)
{ return s.size(); }),
42);
std::function<size_t()> d = []()
{ return 2 * 21; };
// And same for map_or_else
EXPECT_EQ(Some(std::string("foo")).map_or_else(d, f), 3);
EXPECT_EQ(Some(std::string("foo")).map_or_else<size_t>([]() -> size_t
{ return 42; },
[](auto s) -> size_t
{ return s.size(); }),
3);
EXPECT_EQ(None().map_or_else(d, f), 42);
EXPECT_EQ(None<std::string>().map_or_else<size_t>([]() -> size_t
{ return 42; },
[](auto s) -> size_t
{ return s.size(); }),
42);
}
TEST(Option, Filter)
{
std::function<bool(uint32_t)>
is_even = [](uint32_t x)
{
return x % 2 == 0;
};
EXPECT_EQ(None().filter(is_even), None());
EXPECT_EQ(Some(3).filter(is_even), None());
EXPECT_EQ(Some(4).filter(is_even), Some(4));
}
TEST(Option, Result)
{
EXPECT_TRUE(Some("foo").ok_or(0).is_ok());
EXPECT_TRUE(None().ok_or(0).is_err());
EXPECT_TRUE(Some("foo").ok_or_else<int>([]()
{ return 0; })
.is_ok());
EXPECT_TRUE(None().ok_or_else<int>([]()
{ return 0; })
.is_err());
}
// TEST(Option, Iterator)
// {
// std::vector<std::string> x = {};
// Some(x).begin();
// }