-
-
Notifications
You must be signed in to change notification settings - Fork 825
/
Copy pathtestingSchemas.ts
519 lines (462 loc) · 10.6 KB
/
testingSchemas.ts
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
import {
GraphQLSchema,
graphql,
print,
Kind,
GraphQLScalarType,
ValueNode,
} from 'graphql';
import { ApolloLink, Observable } from 'apollo-link';
import { makeExecutableSchema } from '../schemaGenerator';
import { IResolvers } from '../Interfaces';
import makeRemoteExecutableSchema from '../stitching/makeRemoteExecutableSchema';
import introspectSchema from '../stitching/introspectSchema';
import { Fetcher } from '../stitching/makeRemoteExecutableSchema';
export type Property = {
id: string;
name: string;
location: {
name: string;
};
};
export type Booking = {
id: string;
propertyId: string;
customerId: string;
startTime: string;
endTime: string;
};
export type Customer = {
id: string;
email: string;
name: string;
address?: string;
vehicleId?: string;
};
export type Vehicle = {
id: string;
licensePlate?: string;
bikeType?: 'MOUNTAIN' | 'ROAD';
};
export const sampleData: {
Property: { [key: string]: Property };
Booking: { [key: string]: Booking };
Customer: { [key: string]: Customer };
Vehicle: { [key: string]: Vehicle };
} = {
Property: {
p1: {
id: 'p1',
name: 'Super great hotel',
location: {
name: 'Helsinki',
},
},
p2: {
id: 'p2',
name: 'Another great hotel',
location: {
name: 'San Francisco',
},
},
p3: {
id: 'p3',
name: 'BedBugs - The Affordable Hostel',
location: {
name: 'Helsinki',
},
},
},
Booking: {
b1: {
id: 'b1',
propertyId: 'p1',
customerId: 'c1',
startTime: '2016-05-04',
endTime: '2016-06-03',
},
b2: {
id: 'b2',
propertyId: 'p1',
customerId: 'c2',
startTime: '2016-06-04',
endTime: '2016-07-03',
},
b3: {
id: 'b3',
propertyId: 'p1',
customerId: 'c3',
startTime: '2016-08-04',
endTime: '2016-09-03',
},
b4: {
id: 'b4',
propertyId: 'p2',
customerId: 'c1',
startTime: '2016-10-04',
endTime: '2016-10-03',
},
},
Customer: {
c1: {
id: 'c1',
email: 'examplec1@example.com',
name: 'Exampler Customer',
vehicleId: 'v1',
},
c2: {
id: 'c2',
email: 'examplec2@example.com',
name: 'Joe Doe',
vehicleId: 'v2',
},
c3: {
id: 'c3',
email: 'examplec3@example.com',
name: 'Liisa Esimerki',
address: 'Esimerkikatu 1 A 77, 99999 Kyyjarvi',
},
},
Vehicle: {
v1: {
id: 'v1',
bikeType: 'MOUNTAIN',
},
v2: {
id: 'v2',
licensePlate: 'GRAPHQL',
},
},
};
function values<T>(o: { [s: string]: T }): T[] {
return Object.keys(o).map(k => o[k]);
}
function coerceString(value: any): string {
if (Array.isArray(value)) {
throw new TypeError(
`String cannot represent an array value: [${String(value)}]`,
);
}
return String(value);
}
const DateTime = new GraphQLScalarType({
name: 'DateTime',
description: 'Simple fake datetime',
serialize: coerceString,
parseValue: coerceString,
parseLiteral(ast) {
return ast.kind === Kind.STRING ? ast.value : null;
},
});
function identity(value: any): any {
return value;
}
function parseLiteral(ast: ValueNode): any {
switch (ast.kind) {
case Kind.STRING:
case Kind.BOOLEAN:
return ast.value;
case Kind.INT:
case Kind.FLOAT:
return parseFloat(ast.value);
case Kind.OBJECT: {
const value = Object.create(null);
ast.fields.forEach(field => {
value[field.name.value] = parseLiteral(field.value);
});
return value;
}
case Kind.LIST:
return ast.values.map(parseLiteral);
default:
return null;
}
}
const GraphQLJSON = new GraphQLScalarType({
name: 'JSON',
description:
'The `JSON` scalar type represents JSON values as specified by ' +
'[ECMA-404](http://www.ecma-international.org/' +
'publications/files/ECMA-ST/ECMA-404.pdf).',
serialize: identity,
parseValue: identity,
parseLiteral,
});
const addressTypeDef = `
type Address {
street: String
city: String
state: String
zip: String
}
`;
const propertyAddressTypeDef = `
type Property {
id: ID!
name: String!
location: Location
address: Address
}
`;
const propertyRootTypeDefs = `
type Location {
name: String!
}
enum TestInterfaceKind {
ONE
TWO
}
interface TestInterface {
kind: TestInterfaceKind
testString: String
}
type TestImpl1 implements TestInterface {
kind: TestInterfaceKind
testString: String
foo: String
}
type TestImpl2 implements TestInterface {
kind: TestInterfaceKind
testString: String
bar: String
}
type Query {
propertyById(id: ID!): Property
properties(limit: Int): [Property!]
contextTest(key: String!): String
dateTimeTest: DateTime
jsonTest(input: JSON): JSON
interfaceTest(kind: TestInterfaceKind): TestInterface
errorTest: String
errorTestNonNull: String!
}
`;
const propertyAddressTypeDefs = `
scalar DateTime
scalar JSON
${addressTypeDef}
${propertyAddressTypeDef}
${propertyRootTypeDefs}
`;
const propertyResolvers: IResolvers = {
Query: {
propertyById(root, { id }) {
return sampleData.Property[id];
},
properties(root, { limit }) {
const list = values(sampleData.Property);
if (limit) {
return list.slice(0, limit);
} else {
return list;
}
},
contextTest(root, args, context) {
return JSON.stringify(context[args.key]);
},
dateTimeTest() {
return '1987-09-25T12:00:00';
},
jsonTest(root, { input }) {
return input;
},
interfaceTest(root, { kind }) {
if (kind === 'ONE') {
return {
kind: 'ONE',
testString: 'test',
foo: 'foo',
};
} else {
return {
kind: 'TWO',
testString: 'test',
bar: 'bar',
};
}
},
errorTest() {
throw new Error('Sample error!');
},
errorTestNonNull() {
throw new Error('Sample error non-null!');
},
},
DateTime,
JSON: GraphQLJSON,
TestInterface: {
__resolveType(obj) {
if (obj.kind === 'ONE') {
return 'TestImpl1';
} else {
return 'TestImpl2';
}
},
},
};
const customerAddressTypeDef = `
type Customer implements Person {
id: ID!
email: String!
name: String!
address: Address
bookings(limit: Int): [Booking!]
vehicle: Vehicle
}
`;
const bookingRootTypeDefs = `
scalar DateTime
type Booking {
id: ID!
propertyId: ID!
customer: Customer!
startTime: String!
endTime: String!
}
interface Person {
id: ID!
name: String!
}
union Vehicle = Bike | Car
type Bike {
id: ID!
bikeType: String
}
type Car {
id: ID!
licensePlate: String
}
type Query {
bookingById(id: ID!): Booking
bookingsByPropertyId(propertyId: ID!, limit: Int): [Booking!]
customerById(id: ID!): Customer
bookings(limit: Int): [Booking!]
customers(limit: Int): [Customer!]
}
input BookingInput {
propertyId: ID!
customerId: ID!
startTime: DateTime!
endTime: DateTime!
}
type Mutation {
addBooking(input: BookingInput): Booking
}
`;
const bookingAddressTypeDefs = `
${addressTypeDef}
${customerAddressTypeDef}
${bookingRootTypeDefs}
`;
const bookingResolvers: IResolvers = {
Query: {
bookingById(parent, { id }) {
return sampleData.Booking[id];
},
bookingsByPropertyId(parent, { propertyId, limit }) {
const list = values(sampleData.Booking).filter(
(booking: Booking) => booking.propertyId === propertyId,
);
if (limit) {
return list.slice(0, limit);
} else {
return list;
}
},
customerById(parent, { id }) {
return sampleData.Customer[id];
},
bookings(parent, { limit }) {
const list = values(sampleData.Booking);
if (limit) {
return list.slice(0, limit);
} else {
return list;
}
},
customers(parent, { limit }) {
const list = values(sampleData.Customer);
if (limit) {
return list.slice(0, limit);
} else {
return list;
}
},
},
Mutation: {
addBooking(
parent,
{ input: { propertyId, customerId, startTime, endTime } },
) {
return {
id: 'newId',
propertyId,
customerId,
startTime,
endTime,
};
},
},
Booking: {
customer(parent: Booking) {
return sampleData.Customer[parent.customerId];
},
},
Customer: {
bookings(parent: Customer) {
return values(sampleData.Booking).filter(
(booking: Booking) => booking.customerId === parent.id,
);
},
vehicle(parent: Customer) {
return sampleData.Vehicle[parent.vehicleId];
},
},
Vehicle: {
__resolveType(parent) {
if (parent.licensePlate) {
return 'Car';
} else if (parent.bikeType) {
return 'Bike';
} else {
throw new Error('Could not resolve Vehicle type');
}
},
},
DateTime,
};
export const propertySchema: GraphQLSchema = makeExecutableSchema({
typeDefs: propertyAddressTypeDefs,
resolvers: propertyResolvers,
});
export const bookingSchema: GraphQLSchema = makeExecutableSchema({
typeDefs: bookingAddressTypeDefs,
resolvers: bookingResolvers,
});
// Pretend this schema is remote
async function makeSchemaRemoteFromLink(schema: GraphQLSchema) {
const link = new ApolloLink((operation) => {
return new Observable(observer => {
const { query, operationName, variables } = operation;
const context = operation.getContext();
graphql(schema, print(query), null, context, variables, operationName)
.then((result) => {
observer.next(result);
observer.complete();
})
.catch(observer.error.bind(observer));
});
});
const clientSchema = await introspectSchema(link);
return makeRemoteExecutableSchema({ schema: clientSchema, link });
}
// ensure fetcher support exists from the 2.0 api
async function makeExecutableSchemaFromFetcher(schema: GraphQLSchema) {
const fetcher: Fetcher = ({ query, operationName, variables, context }) => {
return graphql(schema, query, null, context, variables, operationName);
};
const clientSchema = await introspectSchema(fetcher);
return makeRemoteExecutableSchema({ schema: clientSchema, fetcher });
}
export const remotePropertySchema = makeSchemaRemoteFromLink(propertySchema);
export const remoteBookingSchema = makeExecutableSchemaFromFetcher(bookingSchema);