-
Notifications
You must be signed in to change notification settings - Fork 73
/
Copy path218.md
517 lines (438 loc) · 13 KB
/
218.md
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
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
<details open><summary>Info</summary><p>
* **Did you know about different ways of constructor Dependency Injection?**
* https://en.wikipedia.org/wiki/Dependency_injection
</p></details><details open><summary>Example</summary><p>
```cpp
class iapi {
public:
virtual ~iapi() = default;
virtual auto call() const -> int { return 42; }
};
class app_interface {
public:
constexpr explicit(true) app_interface(const iapi& api) : api_{api} {}
auto run() const -> int { return api_.call(); }
private:
const iapi& api_;
};
template<class TApi>
class app_template {
public:
constexpr explicit(true) app_template(const TApi& api) : api_{api} {}
auto run() const -> int { return api_.call(); }
private:
const TApi& api_;
};
template<class T>
concept api = requires(T t) {
t.call();
};
template<api TApi>
class app_concept {
public:
constexpr explicit(true) app_concept(const TApi& api) : api_{api} {}
auto run() const -> int { return api_.call(); }
private:
const TApi& api_;
};
int main() {
// interface injection
{
struct : iapi {
auto call() const -> int override { return 42; }
} fake_api;
app_interface app{fake_api};
assert(42 == app.run());
}
// template injection
{
iapi api{};
app_template app{api};
assert(42 == app.run());
}
// concept injection
{
iapi api{};
app_concept app{api};
assert(42 == app.run());
}
}
```
> https://godbolt.org/z/qM85TT186
</p></details><details open><summary>Puzzle</summary><p>
* **Can you implement required steps with injecting `api` via {interface, template, concept}?**
* Double points for injection via type erasure!
```cpp
class iapi {
public:
virtual ~iapi() = default;
virtual auto call() const -> int = 0;
};
template<class T>
concept api = requires(const T& t) {
{ t.call() } -> std::same_as<int>;
};
class app_interface; // TODO
template<class TApi> class app_template; // TODO
template<api TApi> class app_concept; // TODO
// NOTE: Double points for injection via type erasure!
int main() {
using namespace boost::ut;
bdd::gherkin::steps steps = [](auto& steps) {
steps.feature("Dependency Injection*") = [&] {
steps.scenario("*") = [&] {
steps.given("I have an api which returns {}") = [&](int value) {
// TODO
steps.given("I have an app interface") = [&] {
// TODO
auto run_result = 0;
steps.when("I call run on the app") = [&] {
run_result = app.run();
};
steps.then("I should get {} from app call") = [&](_i result) {
expect(run_result == result);
};
};
steps.given("I have an app template") = [&] {
// TODO
auto run_result = 0;
steps.when("I call run on the app") = [&] {
run_result = app.run();
};
steps.then("I should get {} from app call") = [&](_i result) {
expect(run_result == result);
};
};
steps.given("I have an app concept") = [&] {
// TODO
auto run_result = 0;
steps.when("I call run on the app") = [&] {
run_result = app.run();
};
steps.then("I should get {} from app call") = [&](_i result) {
expect(run_result == result);
};
};
};
};
};
};
"app"_test = steps | R"(
Feature: Dependency Injection
Scenario: Via interface
Given I have an api which returns 10
Given I have an app interface
When I call run on the app
Then I should get 10 from app call
Scenario: Via template
Given I have an api which returns 100
Given I have an app template
When I call run on the app
Then I should get 100 from app call
Scenario: Via concept
Given I have an api which returns 1000
Given I have an app concept
When I call run on the app
Then I should get 1000 from app call
)";
}
```
> https://godbolt.org/z/YsGzxodMc
</p></details><details><summary>Solutions</summary><p>
```cpp
class app_interface{
const iapi& api_;
public:
app_interface(const iapi& api) : api_{api} {}
auto run() const {
return api_.call();
}
};
template<class TApi> class app_template {
const TApi& api_;
public:
app_template(const TApi& api) : api_{api} {}
auto run() const {
return api_.call();
}
};
template<api TApi> class app_concept {
const TApi& api_;
public:
app_concept(const TApi& api) : api_{api} {}
auto run() const {
return api_.call();
}
};
class app_erasure {
const std::any api_;
public:
app_erasure(const auto& api) : api_{api} {}
auto run() const {
return std::any_cast<const iapi&>(api_).call();
}
};
struct fake_api : iapi {
fake_api(int value):value_{value}{}
int value_{};
virtual int call() const override {
return value_;
}
};
bdd::gherkin::steps steps = [](auto& steps) {
steps.feature("Dependency Injection*") = [&] {
steps.scenario("*") = [&] {
steps.given("I have an api which returns {}") = [&](int value) {
const fake_api fake_{value};
steps.given("I have an app interface") = [&] {
const app_interface app{fake_};
auto run_result = 0;
steps.when("I call run on the app") = [&] {
run_result = app.run();
};
steps.then("I should get {} from app call") = [&](_i result) {
expect(run_result == result);
};
};
steps.given("I have an app template") = [&] {
const app_template<fake_api> app{fake_};
auto run_result = 0;
steps.when("I call run on the app") = [&] {
run_result = app.run();
};
steps.then("I should get {} from app call") = [&](_i result) {
expect(run_result == result);
};
};
steps.given("I have an app concept") = [&] {
const app_concept<fake_api> app{fake_};
auto run_result = 0;
steps.when("I call run on the app") = [&] {
run_result = app.run();
};
steps.then("I should get {} from app call") = [&](_i result) {
expect(run_result == result);
};
};
steps.given("I have an app app erasure") = [&] {
const app_erasure app{fake_};
auto run_result = 0;
steps.when("I call run on the app") = [&] {
run_result = app.run();
};
steps.then("I should get {} from app call") = [&](_i result) {
expect(run_result+1 == result);
};
};
};
};
};
};
```
> https://godbolt.org/z/xhc3MfsbG
```cpp
class app_interface
{
public:
app_interface( iapi const & p_api ):m_api(p_api){}
auto run(){ return m_api.call();}
iapi const & m_api;
};
template<class TApi> class app_template
{
public:
app_template(TApi const & p_api):m_api(p_api){}
auto run(){ return m_api.call();}
TApi const& m_api;
};
template<api TApi> class app_concept
{
public:
app_concept(TApi const & p_api):m_api(p_api){}
auto run(){ return m_api.call();}
TApi const& m_api;
};
bdd::gherkin::steps steps = [](auto& steps) {
steps.feature("Dependency Injection*") = [&] {
steps.scenario("*") = [&] {
steps.given("I have an api which returns {}") = [&](int value) {
struct fake_api:public iapi
{
fake_api(int v):v(v){}
int call() const override{ return v; }
int v;
};
fake_api my_api(value);
steps.given("I have an app interface") = [&] {
app_interface app{my_api};
auto run_result = 0;
steps.when("I call run on the app") = [&] {
run_result = app.run();
};
steps.then("I should get {} from app call") = [&](_i result) {
expect(run_result == result);
};
};
steps.given("I have an app template") = [&] {
app_template app{my_api};
auto run_result = 0;
steps.when("I call run on the app") = [&] {
run_result = app.run();
};
steps.then("I should get {} from app call") = [&](_i result) {
expect(run_result == result);
};
};
steps.given("I have an app concept") = [&] {
app_concept app{my_api};
auto run_result = 0;
steps.when("I call run on the app") = [&] {
run_result = app.run();
};
steps.then("I should get {} from app call") = [&](_i result) {
expect(run_result == result);
};
};
};
};
};
};
```
> https://godbolt.org/z/5TKdca8v4
```cpp
class app_interface {
public:
app_interface(const iapi& a) : api_{a} {}
const auto run() const { return api_.call(); }
private:
const iapi& api_;
};
template <api TApi> class app_template {
public:
app_template(const TApi& a) : api_{a} {}
const auto run() const { return api_.call(); }
private:
const TApi& api_;
};
class app_concept {
public:
template <api TApi>
app_concept(const TApi& a) : api_{std::make_unique<erased_api<TApi>>(a)} {}
const auto run() const { return api_->call(); }
private:
template <api TApi>
struct erased_api : iapi {
erased_api(const TApi& a) : api_{a} {}
auto call() const -> int override { return api_.call(); }
TApi api_;
};
std::unique_ptr<iapi> api_;
};
bdd::gherkin::steps steps = [](auto& steps) {
steps.feature("Dependency Injection*") = [&] {
steps.scenario("*") = [&] {
steps.given("I have an api which returns {}") = [&](int value) {
struct local_api : iapi {
local_api(int value) : value_{value} {}
auto call() const -> int override { return value_; }
int value_;
} a{value};
steps.given("I have an app interface") = [&] {
const auto app = app_interface{a};
auto run_result = 0;
steps.when("I call run on the app") = [&] {
run_result = app.run();
};
steps.then("I should get {} from app call") = [&](_i result) {
expect(run_result == result);
};
};
steps.given("I have an app template") = [&] {
const auto app = app_template{a};
auto run_result = 0;
steps.when("I call run on the app") = [&] {
run_result = app.run();
};
steps.then("I should get {} from app call") = [&](_i result) {
expect(run_result == result);
};
};
steps.given("I have an app concept") = [&] {
const auto app = app_concept{a};
auto run_result = 0;
steps.when("I call run on the app") = [&] {
run_result = app.run();
};
steps.then("I should get {} from app call") = [&](_i result) {
expect(run_result == result);
};
};
};
};
};
};
```
> https://godbolt.org/z/6bnjW6M91
```cpp
class app_interface {
public:
constexpr explicit(true) app_interface(const iapi& api) : api_{api} {}
auto run() const -> int { return api_.call(); }
private:
const iapi& api_;
};
template<class TApi> class app_template {
public:
constexpr explicit(true) app_template(const TApi& api) : api_{api} {}
auto run() const -> int {return api_.call(); }
private:
const TApi& api_;
};
template<api TApi> class app_concept {
public:
constexpr explicit(true) app_concept(const TApi& api) : api_{api} {}
auto run() const -> int { return api_.call(); }
private:
const TApi& api_;
};
bdd::gherkin::steps steps = [](auto& steps) {
steps.feature("Dependency Injection*") = [&] {
steps.scenario("*") = [&] {
steps.given("I have an api which returns {}") = [&](int value) {
api1 myApi(value);
steps.given("I have an app interface") = [&] {
app_interface app(myApi);
auto run_result = 0;
steps.when("I call run on the app") = [&] {
run_result = app.run();
};
steps.then("I should get {} from app call") = [&](_i result) {
expect(run_result == result);
};
};
steps.given("I have an app template") = [&] {
app_template app(myApi);
auto run_result = 0;
steps.when("I call run on the app") = [&] {
run_result = app.run();
};
steps.then("I should get {} from app call") = [&](_i result) {
expect(run_result == result);
};
};
steps.given("I have an app concept") = [&] {
app_concept app(myApi);
auto run_result = 0;
steps.when("I call run on the app") = [&] {
run_result = app.run();
};
steps.then("I should get {} from app call") = [&](_i result) {
expect(run_result == result);
};
};
};
};
};
};
```
> https://godbolt.org/z/cxP4dc8EE