-
-
Notifications
You must be signed in to change notification settings - Fork 69
/
Copy pathcursor.cpp
251 lines (206 loc) · 5.79 KB
/
cursor.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
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
//
// lager - library for functional interactive c++ programs
// Copyright (C) 2017 Juan Pedro Bolivar Puente
//
// This file is part of lager.
//
// lager is free software: you can redistribute it and/or modify
// it under the terms of the MIT License, as detailed in the LICENSE
// file located at the root of this source code distribution,
// or here: <https://github.com/arximboldi/lager/blob/master/LICENSE>
//
#include <catch2/catch.hpp>
#include <lager/constant.hpp>
#include <lager/cursor.hpp>
#include <lager/reader.hpp>
#include <lager/state.hpp>
#include <lager/writer.hpp>
#include <lager/lenses.hpp>
#include <lager/lenses/tuple.hpp>
#include <boost/fusion/include/adapt_struct.hpp>
#include <boost/fusion/include/comparison.hpp>
#include <immer/vector.hpp>
#include <vector>
#include "spies.hpp"
using namespace lager;
TEST_CASE("in, construction and assignment from temporary")
{
reader<int> in1;
// Access to uninitialized reader should throw an exception
REQUIRE_THROWS(in1.get());
in1 = make_state(0);
reader<int> in2{make_state(0)};
}
TEST_CASE("out, construction_and_assignment_from_temporary")
{
writer<int> out1;
// Access to uninitialized writer should throw an exception
REQUIRE_THROWS(out1.set(42));
REQUIRE_THROWS(out1.update([](auto){ return 42;}));
out1 = make_state(0);
writer<int> out2{make_state(0)};
}
TEST_CASE("inout, construction_and_assignment_from_temporary")
{
cursor<int> inout1;
// Access to uninitialized cursor should throw an exception
REQUIRE_THROWS(inout1.get());
REQUIRE_THROWS(inout1.set(42));
REQUIRE_THROWS(inout1.update([](auto){ return 42;}));
inout1 = make_state(0);
cursor<int> inout2{make_state(0)};
}
TEST_CASE("values, relaxing_requirements_works")
{
reader<int> in1 = make_state(0);
reader<int> in2 = cursor<int>{make_state(0)};
writer<int> out1 = make_state(0);
writer<int> out2 = cursor<int>{make_state(0)};
}
TEST_CASE("in, watching_and_getting")
{
auto st = make_state(0);
auto i = reader<int>{st};
auto s = testing::spy();
watch(i, s);
st.set(42);
commit(st);
CHECK(42 == i.get());
CHECK(1 == s.count());
}
TEST_CASE("inout, watching_and_setting_and_getting")
{
auto st = make_state(0);
auto io = cursor<int>{st};
auto s = testing::spy();
watch(io, s);
io.set(42);
commit(st);
CHECK(42 == io.get());
CHECK(1 == s.count());
}
TEST_CASE("out, setting")
{
auto st = make_state(0);
auto o = writer<int>{st};
o.set(42);
commit(st);
CHECK(42 == st.get());
}
TEST_CASE("values, scoped watching")
{
auto st = make_state(0);
auto s = testing::spy();
{
auto i = reader<int>(st);
auto io = cursor<int>(st);
watch(i, s);
watch(io, s);
st.set(42);
commit(st);
CHECK(2 == s.count());
}
st.set(52);
commit(st);
CHECK(2 == s.count());
}
struct yearday
{
int day;
int month;
};
BOOST_FUSION_ADAPT_STRUCT(yearday, day, month);
struct person
{
yearday birthday;
std::string name;
std::vector<std::string> things{};
};
BOOST_FUSION_ADAPT_STRUCT(person, birthday, name);
using boost::fusion::operators::operator==;
using boost::fusion::operators::operator!=;
TEST_CASE("zooming, unfocused")
{
state<std::vector<person>> st{{person{{5, 4}, "juanpe"}}};
auto p = st[0].make();
auto n1 = p[&person::name].make();
// auto n2 = p[lenses::attr(&person::name)];
// reader<std::optional<std::string>> n2 =
// p[lenses::attr(&person::name)];
auto n3 = p[lenses::value_or(person{{1, 1}, "NULL"})].make();
auto n4 = p[lenses::with_opt(lenses::attr(&person::name))].make();
}
TEST_CASE("zooming, unfocused, immutable")
{
auto l1 = lager::lenses::getset(
[](auto&& vec) -> size_t { return vec.size(); },
[](auto&& vec, size_t) { return LAGER_FWD(vec); });
state<immer::vector<person>> st{{person{{5, 4}, "juanpe"}}};
auto p = st[0].make();
auto n1 = p[&person::name].make();
auto n3 = p[lenses::value_or(person{{1, 1}, "NULL"})].make();
auto n4 = p[lenses::with_opt(lenses::attr(&person::name))].make();
auto s = st[l1].make();
}
TEST_CASE("in, constant")
{
auto c = make_constant(42);
auto i = reader<int>{c};
CHECK(*c == 42);
CHECK(*i == 42);
}
TEST_CASE("automatic_tag edge case")
{
using vec_t = std::vector<int>;
using cur_t = lager::cursor<std::optional<int>>;
lager::state<vec_t, lager::automatic_tag> st;
std::vector<cur_t> cursors;
auto spy = testing::spy();
st.watch([&](vec_t const& vec) {
cursors.clear();
for (size_t i = 0; i < vec.size(); ++i) {
cursors.push_back(st[i]);
cursors[i].watch(spy);
}
});
st.set(vec_t{1, 2, 3, 4, 5, 6, 7, 8});
cur_t cur = st[0];
cur.watch([&](auto const& optint) {
if (optint.value_or(0) > 10) {
st.set(vec_t{});
}
});
cur.set(42); // this would cause a crash before commit aefd37b
st.set(vec_t{1, 2, 3, 4}); // this will collect garbage
}
TEST_CASE("lenses over with expression")
{
state<person, automatic_tag> person_data;
person_data.set(person{{}, "old name", {}});
cursor<std::string> name = with(person_data[&person::name], person_data[&person::birthday]).zoom(lenses::first);
name.set("new name");
CHECK(person_data->name == "new name");
CHECK(name.get() == "new name");
}
struct Foo;
struct Bar
{
lager::reader<Foo> foo;
reader<Foo> get_reader() const;
};
struct Baz
{
Baz(const lager::reader<Foo>& r);
};
TEST_CASE("forward declare a reader value")
{
auto bar = Bar();
auto baz = Baz(bar.get_reader());
}
struct Foo
{};
lager::reader<Foo> Bar::get_reader() const
{
return lager::make_constant(Foo());
}
Baz::Baz(const lager::reader<Foo>&) {}