-
Notifications
You must be signed in to change notification settings - Fork 1
/
TodayMock.h
635 lines (515 loc) · 15.1 KB
/
TodayMock.h
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
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
#pragma once
#ifndef TODAYMOCK_H
#define TODAYMOCK_H
#include "TodaySchema.h"
#include "AppointmentEdgeObject.h"
#include "AppointmentObject.h"
#include "FolderEdgeObject.h"
#include "FolderObject.h"
#include "MutationObject.h"
#include "NodeObject.h"
#include "PageInfoObject.h"
#include "QueryObject.h"
#include "SubscriptionObject.h"
#include "TaskEdgeObject.h"
#include "TaskObject.h"
#include <atomic>
#include <memory>
#include <stack>
namespace graphql::today {
struct RequestState : service::RequestState
{
RequestState(size_t id)
: requestId(id)
{
}
const size_t requestId;
size_t appointmentsRequestId = 0;
size_t tasksRequestId = 0;
size_t unreadCountsRequestId = 0;
size_t loadAppointmentsCount = 0;
size_t loadTasksCount = 0;
size_t loadUnreadCountsCount = 0;
};
class Appointment;
class Task;
class Folder;
class Expensive;
class Query : public std::enable_shared_from_this<Query>
{
public:
using appointmentsLoader = std::function<std::vector<std::shared_ptr<Appointment>>()>;
using tasksLoader = std::function<std::vector<std::shared_ptr<Task>>()>;
using unreadCountsLoader = std::function<std::vector<std::shared_ptr<Folder>>()>;
explicit Query(appointmentsLoader&& getAppointments, tasksLoader&& getTasks,
unreadCountsLoader&& getUnreadCounts);
service::AwaitableObject<std::shared_ptr<object::Node>> getNode(
service::FieldParams params, response::IdType id);
std::future<std::shared_ptr<object::AppointmentConnection>> getAppointments(
const service::FieldParams& params, std::optional<int> first,
std::optional<response::Value>&& after, std::optional<int> last,
std::optional<response::Value>&& before);
std::future<std::shared_ptr<object::TaskConnection>> getTasks(
const service::FieldParams& params, std::optional<int> first,
std::optional<response::Value>&& after, std::optional<int> last,
std::optional<response::Value>&& before);
std::future<std::shared_ptr<object::FolderConnection>> getUnreadCounts(
const service::FieldParams& params, std::optional<int> first,
std::optional<response::Value>&& after, std::optional<int> last,
std::optional<response::Value>&& before);
std::vector<std::shared_ptr<object::Appointment>> getAppointmentsById(
const service::FieldParams& params, const std::vector<response::IdType>& ids);
std::vector<std::shared_ptr<object::Task>> getTasksById(
const service::FieldParams& params, const std::vector<response::IdType>& ids);
std::vector<std::shared_ptr<object::Folder>> getUnreadCountsById(
const service::FieldParams& params, const std::vector<response::IdType>& ids);
std::shared_ptr<object::NestedType> getNested(service::FieldParams&& params);
std::vector<std::shared_ptr<object::Expensive>> getExpensive();
TaskState getTestTaskState();
std::vector<std::shared_ptr<object::UnionType>> getAnyType(
const service::FieldParams& params, const std::vector<response::IdType>& ids);
private:
std::shared_ptr<Appointment> findAppointment(
const service::FieldParams& params, const response::IdType& id);
std::shared_ptr<Task> findTask(const service::FieldParams& params, const response::IdType& id);
std::shared_ptr<Folder> findUnreadCount(
const service::FieldParams& params, const response::IdType& id);
// Lazy load the fields in each query
void loadAppointments(const std::shared_ptr<service::RequestState>& state);
void loadTasks(const std::shared_ptr<service::RequestState>& state);
void loadUnreadCounts(const std::shared_ptr<service::RequestState>& state);
appointmentsLoader _getAppointments;
tasksLoader _getTasks;
unreadCountsLoader _getUnreadCounts;
std::vector<std::shared_ptr<Appointment>> _appointments;
std::vector<std::shared_ptr<Task>> _tasks;
std::vector<std::shared_ptr<Folder>> _unreadCounts;
};
class PageInfo
{
public:
explicit PageInfo(bool hasNextPage, bool hasPreviousPage)
: _hasNextPage(hasNextPage)
, _hasPreviousPage(hasPreviousPage)
{
}
bool getHasNextPage() const noexcept
{
return _hasNextPage;
}
bool getHasPreviousPage() const noexcept
{
return _hasPreviousPage;
}
private:
const bool _hasNextPage;
const bool _hasPreviousPage;
};
class Appointment
{
public:
explicit Appointment(
response::IdType&& id, std::string&& when, std::string&& subject, bool isNow);
// EdgeConstraints accessor
const response::IdType& id() const noexcept
{
return _id;
}
service::AwaitableScalar<response::IdType> getId() const noexcept
{
return _id;
}
std::shared_ptr<const response::Value> getWhen() const noexcept
{
return _when;
}
std::shared_ptr<const response::Value> getSubject() const noexcept
{
return _subject;
}
bool getIsNow() const noexcept
{
return _isNow;
}
std::optional<std::string> getForceError() const
{
throw std::runtime_error(R"ex(this error was forced)ex");
}
private:
response::IdType _id;
std::shared_ptr<const response::Value> _when;
std::shared_ptr<const response::Value> _subject;
bool _isNow;
};
class AppointmentEdge
{
public:
explicit AppointmentEdge(std::shared_ptr<Appointment> appointment)
: _appointment(std::move(appointment))
{
}
std::shared_ptr<object::Appointment> getNode() const noexcept
{
return std::make_shared<object::Appointment>(_appointment);
}
service::AwaitableScalar<response::Value> getCursor() const
{
co_return response::Value(co_await _appointment->getId());
}
private:
std::shared_ptr<Appointment> _appointment;
};
class AppointmentConnection
{
public:
explicit AppointmentConnection(bool hasNextPage, bool hasPreviousPage,
std::vector<std::shared_ptr<Appointment>> appointments)
: _pageInfo(std::make_shared<PageInfo>(hasNextPage, hasPreviousPage))
, _appointments(std::move(appointments))
{
}
std::shared_ptr<object::PageInfo> getPageInfo() const noexcept
{
return std::make_shared<object::PageInfo>(_pageInfo);
}
std::optional<std::vector<std::shared_ptr<object::AppointmentEdge>>> getEdges() const noexcept
{
auto result = std::make_optional<std::vector<std::shared_ptr<object::AppointmentEdge>>>(
_appointments.size());
std::transform(_appointments.cbegin(),
_appointments.cend(),
result->begin(),
[](const std::shared_ptr<Appointment>& node) {
return std::make_shared<object::AppointmentEdge>(
std::make_shared<AppointmentEdge>(node));
});
return result;
}
private:
std::shared_ptr<PageInfo> _pageInfo;
std::vector<std::shared_ptr<Appointment>> _appointments;
};
class Task
{
public:
explicit Task(response::IdType&& id, std::string&& title, bool isComplete);
// EdgeConstraints accessor
const response::IdType& id() const
{
return _id;
}
service::AwaitableScalar<response::IdType> getId() const noexcept
{
return _id;
}
std::shared_ptr<const response::Value> getTitle() const noexcept
{
return _title;
}
bool getIsComplete() const noexcept
{
return _isComplete;
}
private:
response::IdType _id;
std::shared_ptr<const response::Value> _title;
bool _isComplete;
TaskState _state = TaskState::New;
};
class TaskEdge
{
public:
explicit TaskEdge(std::shared_ptr<Task> task)
: _task(std::move(task))
{
}
std::shared_ptr<object::Task> getNode() const noexcept
{
return std::make_shared<object::Task>(_task);
}
service::AwaitableScalar<response::Value> getCursor() const noexcept
{
co_return response::Value(co_await _task->getId());
}
private:
std::shared_ptr<Task> _task;
};
class TaskConnection
{
public:
explicit TaskConnection(
bool hasNextPage, bool hasPreviousPage, std::vector<std::shared_ptr<Task>> tasks)
: _pageInfo(std::make_shared<PageInfo>(hasNextPage, hasPreviousPage))
, _tasks(std::move(tasks))
{
}
std::shared_ptr<object::PageInfo> getPageInfo() const noexcept
{
return std::make_shared<object::PageInfo>(_pageInfo);
}
std::optional<std::vector<std::shared_ptr<object::TaskEdge>>> getEdges() const noexcept
{
auto result =
std::make_optional<std::vector<std::shared_ptr<object::TaskEdge>>>(_tasks.size());
std::transform(_tasks.cbegin(),
_tasks.cend(),
result->begin(),
[](const std::shared_ptr<Task>& node) {
return std::make_shared<object::TaskEdge>(std::make_shared<TaskEdge>(node));
});
return result;
}
private:
std::shared_ptr<PageInfo> _pageInfo;
std::vector<std::shared_ptr<Task>> _tasks;
};
class Folder
{
public:
explicit Folder(response::IdType&& id, std::string&& name, int unreadCount);
// EdgeConstraints accessor
const response::IdType& id() const noexcept
{
return _id;
}
service::AwaitableScalar<response::IdType> getId() const noexcept
{
return _id;
}
std::shared_ptr<const response::Value> getName() const noexcept
{
return _name;
}
int getUnreadCount() const noexcept
{
return _unreadCount;
}
private:
response::IdType _id;
std::shared_ptr<const response::Value> _name;
int _unreadCount;
};
class FolderEdge
{
public:
explicit FolderEdge(std::shared_ptr<Folder> folder)
: _folder(std::move(folder))
{
}
std::shared_ptr<object::Folder> getNode() const noexcept
{
return std::make_shared<object::Folder>(_folder);
}
service::AwaitableScalar<response::Value> getCursor() const noexcept
{
co_return response::Value(co_await _folder->getId());
}
private:
std::shared_ptr<Folder> _folder;
};
class FolderConnection
{
public:
explicit FolderConnection(
bool hasNextPage, bool hasPreviousPage, std::vector<std::shared_ptr<Folder>> folders)
: _pageInfo(std::make_shared<PageInfo>(hasNextPage, hasPreviousPage))
, _folders(std::move(folders))
{
}
std::shared_ptr<object::PageInfo> getPageInfo() const noexcept
{
return std::make_shared<object::PageInfo>(_pageInfo);
}
std::optional<std::vector<std::shared_ptr<object::FolderEdge>>> getEdges() const noexcept
{
auto result =
std::make_optional<std::vector<std::shared_ptr<object::FolderEdge>>>(_folders.size());
std::transform(_folders.cbegin(),
_folders.cend(),
result->begin(),
[](const std::shared_ptr<Folder>& node) {
return std::make_shared<object::FolderEdge>(std::make_shared<FolderEdge>(node));
});
return result;
}
private:
std::shared_ptr<PageInfo> _pageInfo;
std::vector<std::shared_ptr<Folder>> _folders;
};
class CompleteTaskPayload
{
public:
explicit CompleteTaskPayload(
std::shared_ptr<Task> task, std::optional<std::string>&& clientMutationId)
: _task(std::move(task))
, _clientMutationId(std::move(clientMutationId))
{
}
std::shared_ptr<object::Task> getTask() const noexcept
{
return std::make_shared<object::Task>(_task);
}
const std::optional<std::string>& getClientMutationId() const noexcept
{
return _clientMutationId;
}
private:
std::shared_ptr<Task> _task;
std::optional<std::string> _clientMutationId;
};
class Mutation
{
public:
using completeTaskMutation =
std::function<std::shared_ptr<CompleteTaskPayload>(CompleteTaskInput&&)>;
explicit Mutation(completeTaskMutation&& mutateCompleteTask);
static double getFloat() noexcept;
std::shared_ptr<object::CompleteTaskPayload> applyCompleteTask(
CompleteTaskInput&& input) noexcept;
double applySetFloat(double valueArg) noexcept;
private:
completeTaskMutation _mutateCompleteTask;
static std::optional<double> _setFloat;
};
class Subscription
{
public:
explicit Subscription() = default;
std::shared_ptr<object::Appointment> getNextAppointmentChange() const
{
throw std::runtime_error("Unexpected call to getNextAppointmentChange");
}
std::shared_ptr<object::Node> getNodeChange(const response::IdType&) const
{
throw std::runtime_error("Unexpected call to getNodeChange");
}
};
class NextAppointmentChange
{
public:
using nextAppointmentChange =
std::function<std::shared_ptr<Appointment>(const std::shared_ptr<service::RequestState>&)>;
explicit NextAppointmentChange(nextAppointmentChange&& changeNextAppointment)
: _changeNextAppointment(std::move(changeNextAppointment))
{
}
static size_t getCount(service::ResolverContext resolverContext)
{
switch (resolverContext)
{
case service::ResolverContext::NotifySubscribe:
return _notifySubscribeCount;
case service::ResolverContext::Subscription:
return _subscriptionCount;
case service::ResolverContext::NotifyUnsubscribe:
return _notifyUnsubscribeCount;
default:
throw std::runtime_error("Unexpected ResolverContext");
}
}
std::shared_ptr<object::Appointment> getNextAppointmentChange(
const service::FieldParams& params) const
{
switch (params.resolverContext)
{
case service::ResolverContext::NotifySubscribe:
{
++_notifySubscribeCount;
break;
}
case service::ResolverContext::Subscription:
{
++_subscriptionCount;
break;
}
case service::ResolverContext::NotifyUnsubscribe:
{
++_notifyUnsubscribeCount;
break;
}
default:
throw std::runtime_error("Unexpected ResolverContext");
}
return std::make_shared<object::Appointment>(_changeNextAppointment(params.state));
}
std::shared_ptr<object::Node> getNodeChange(const response::IdType&) const
{
throw std::runtime_error("Unexpected call to getNodeChange");
}
private:
nextAppointmentChange _changeNextAppointment;
static size_t _notifySubscribeCount;
static size_t _subscriptionCount;
static size_t _notifyUnsubscribeCount;
};
class NodeChange
{
public:
using nodeChange = std::function<std::shared_ptr<object::Node>(
const std::shared_ptr<service::RequestState>&, response::IdType&&)>;
explicit NodeChange(nodeChange&& changeNode)
: _changeNode(std::move(changeNode))
{
}
std::shared_ptr<object::Appointment> getNextAppointmentChange() const
{
throw std::runtime_error("Unexpected call to getNextAppointmentChange");
}
std::shared_ptr<object::Node> getNodeChange(
const service::FieldParams& params, response::IdType&& idArg) const
{
return _changeNode(params.state, std::move(idArg));
}
private:
nodeChange _changeNode;
};
struct CapturedParams
{
// Copied in the constructor
const service::Directives operationDirectives;
const service::Directives fragmentDefinitionDirectives;
const service::Directives fragmentSpreadDirectives;
const service::Directives inlineFragmentDirectives;
// Moved in the constructor
const service::Directives fieldDirectives;
};
class NestedType
{
public:
explicit NestedType(service::FieldParams&& params, int depth);
int getDepth() const noexcept;
std::shared_ptr<object::NestedType> getNested(service::FieldParams&& params) const noexcept;
static std::stack<CapturedParams> getCapturedParams() noexcept;
private:
static std::stack<CapturedParams> _capturedParams;
// Initialized in the constructor
const int depth;
};
class Expensive
{
public:
static bool Reset() noexcept;
explicit Expensive();
~Expensive();
std::future<int> getOrder(const service::FieldParams& params) const noexcept;
static constexpr size_t count = 5;
static std::mutex testMutex;
private:
// Block async calls to getOrder until pendingExpensive == count
static std::mutex pendingExpensiveMutex;
static std::condition_variable pendingExpensiveCondition;
static size_t pendingExpensive;
// Number of instances
static std::atomic<size_t> instances;
// Initialized in the constructor
const size_t order;
};
class EmptyOperations : public service::Request
{
public:
explicit EmptyOperations();
};
} // namespace graphql::today
#endif // TODAYMOCK_H