forked from microsoft/cppgraphqlgen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TodayMock.h
415 lines (324 loc) · 11.6 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
// 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 {
// These IDs are hard-coded in every test which uses TodayMock.
const response::IdType& getFakeAppointmentId() noexcept;
const response::IdType& getFakeTaskId() noexcept;
const response::IdType& getFakeFolderId() noexcept;
struct TodayMockService
{
std::shared_ptr<Operations> service {};
size_t getAppointmentsCount {};
size_t getTasksCount {};
size_t getUnreadCountsCount {};
};
std::unique_ptr<TodayMockService> mock_service() noexcept;
struct RequestState : service::RequestState
{
RequestState(size_t 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);
std::optional<std::string> getDefault() const noexcept;
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);
bool getHasNextPage() const noexcept;
bool getHasPreviousPage() const noexcept;
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;
service::AwaitableScalar<response::IdType> getId() const noexcept;
std::shared_ptr<const response::Value> getWhen() const noexcept;
std::shared_ptr<const response::Value> getSubject() const noexcept;
bool getIsNow() const noexcept;
std::optional<std::string> getForceError() const;
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);
std::shared_ptr<object::Appointment> getNode() const noexcept;
service::AwaitableScalar<response::Value> getCursor() const;
private:
std::shared_ptr<Appointment> _appointment;
};
class AppointmentConnection
{
public:
explicit AppointmentConnection(bool hasNextPage, bool hasPreviousPage,
std::vector<std::shared_ptr<Appointment>> appointments);
std::shared_ptr<object::PageInfo> getPageInfo() const noexcept;
std::optional<std::vector<std::shared_ptr<object::AppointmentEdge>>> getEdges() const noexcept;
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;
service::AwaitableScalar<response::IdType> getId() const noexcept;
std::shared_ptr<const response::Value> getTitle() const noexcept;
bool getIsComplete() const noexcept;
private:
response::IdType _id;
std::shared_ptr<const response::Value> _title;
bool _isComplete;
};
class TaskEdge
{
public:
explicit TaskEdge(std::shared_ptr<Task> task);
std::shared_ptr<object::Task> getNode() const noexcept;
service::AwaitableScalar<response::Value> getCursor() const noexcept;
private:
std::shared_ptr<Task> _task;
};
class TaskConnection
{
public:
explicit TaskConnection(
bool hasNextPage, bool hasPreviousPage, std::vector<std::shared_ptr<Task>> tasks);
std::shared_ptr<object::PageInfo> getPageInfo() const noexcept;
std::optional<std::vector<std::shared_ptr<object::TaskEdge>>> getEdges() const noexcept;
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;
service::AwaitableScalar<response::IdType> getId() const noexcept;
std::shared_ptr<const response::Value> getName() const noexcept;
int getUnreadCount() const noexcept;
private:
response::IdType _id;
std::shared_ptr<const response::Value> _name;
int _unreadCount;
};
class FolderEdge
{
public:
explicit FolderEdge(std::shared_ptr<Folder> folder);
std::shared_ptr<object::Folder> getNode() const noexcept;
service::AwaitableScalar<response::Value> getCursor() const noexcept;
private:
std::shared_ptr<Folder> _folder;
};
class FolderConnection
{
public:
explicit FolderConnection(
bool hasNextPage, bool hasPreviousPage, std::vector<std::shared_ptr<Folder>> folders);
std::shared_ptr<object::PageInfo> getPageInfo() const noexcept;
std::optional<std::vector<std::shared_ptr<object::FolderEdge>>> getEdges() const noexcept;
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);
std::shared_ptr<object::Task> getTask() const noexcept;
const std::optional<std::string>& getClientMutationId() const noexcept;
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;
std::shared_ptr<object::Node> getNodeChange(const response::IdType&) const;
};
class NextAppointmentChange
{
public:
using nextAppointmentChange =
std::function<std::shared_ptr<Appointment>(const std::shared_ptr<service::RequestState>&)>;
explicit NextAppointmentChange(nextAppointmentChange&& changeNextAppointment);
static size_t getCount(service::ResolverContext resolverContext);
std::shared_ptr<object::Appointment> getNextAppointmentChange(
const service::FieldParams& params) const;
std::shared_ptr<object::Node> getNodeChange(const response::IdType&) const;
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>(service::ResolverContext resolverContext,
const std::shared_ptr<service::RequestState>&, response::IdType&&)>;
explicit NodeChange(nodeChange&& changeNode);
std::shared_ptr<object::Appointment> getNextAppointmentChange() const;
std::shared_ptr<object::Node> getNodeChange(
const service::FieldParams& params, response::IdType&& idArg) const;
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