forked from canada-ca/tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmocker.js
More file actions
587 lines (548 loc) · 16.2 KB
/
mocker.js
File metadata and controls
587 lines (548 loc) · 16.2 KB
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
import { makeExecutableSchema } from '@graphql-tools/schema'
import { addMocksToSchema } from '@graphql-tools/mock'
import { getTypeNames } from './faked_schema'
import { ApolloServer } from 'apollo-server'
import faker from 'faker'
import { connectionFromArray } from 'graphql-relay/lib/connection/arrayconnection'
import { getStringOfDomains } from './helpers/getStringOfDomains'
import { getDmarcTableResults } from './helpers/getDmarcTableResults'
import { getDkimSelectors } from './helpers/getDkimSelectors'
import { getCanadianLocation } from './helpers/getCanadianLocation'
const schemaString = getTypeNames()
const schema = makeExecutableSchema({ typeDefs: schemaString })
// Add custom mocks here to override or customize default mocks, useful for forcing environments
// e.g. SignInUnion: () => ({ __typename: 'AuthResult' }) for correct password and no 2FA
const mockOverrides = {
PersonalUser: () => {
const affiliationCount = faker.datatype.number({ min: 0, max: 200 })
return {
displayName: faker.name.findName(),
affiliations: {
edges: [...new Array(affiliationCount)],
totalCount: affiliationCount,
},
preferredLang: 'ENGLISH',
}
},
SignInUnion: () => ({ __typename: 'AuthResult' }),
}
const mocks = {
Acronym: () =>
faker.random.arrayElement([
'AAFC',
'CICS',
'CRA',
'CSE',
'CSIS',
'DFO',
'DND',
'FCAC',
'FINTRAC',
'GAC',
'HC',
'INFC',
'OIC',
'PC',
'RCMP',
'TBS',
]),
AuthResult: () => ({
authToken: faker.datatype.uuid(),
}),
CategoryPercentages: () => {
let maxNumber = 100
const fullPassPercentage = faker.datatype.number({ min: 0, max: maxNumber })
maxNumber = maxNumber - fullPassPercentage
const passDkimOnlyPercentage = faker.datatype.number({
min: 0,
max: maxNumber,
})
maxNumber = maxNumber - passDkimOnlyPercentage
const passSpfOnlyPercentage = faker.datatype.number({
min: 0,
max: maxNumber,
})
maxNumber = maxNumber - passSpfOnlyPercentage
const failPercentage = maxNumber
return {
fullPassPercentage,
passDkimOnlyPercentage,
passSpfOnlyPercentage,
failPercentage,
totalMessages: faker.datatype.number({ min: 0, max: 15000 }),
}
},
Date: () => {
// gives date in format "2020-12-31 15:30:20.262Z"
return new Date(faker.date.between('2019-01-01', '2022-01-01'))
.toISOString()
.replace('T', ' ')
},
DkimFailureTable: () => {
const dkimDomains = getStringOfDomains(0, 2)
const dkimResults = getDmarcTableResults()
const dkimSelectors = getDkimSelectors()
const dnsHost = faker.internet.domainName()
const envelopeFrom = faker.internet.domainName()
const guidance = 'guidance' + faker.datatype.number({ min: 0, max: 8 })
const headerFrom = faker.internet.domainName()
const sourceIpAddress = faker.internet.ip()
const totalMessages = faker.datatype.number({ min: 1, max: 10000 })
return {
dkimDomains,
dkimResults,
dkimSelectors,
dnsHost,
envelopeFrom,
guidance,
headerFrom,
sourceIpAddress,
totalMessages,
}
},
DkimFailureTableConnection: () => {
const numberOfEdges = 50
return {
edges: [...new Array(numberOfEdges)],
totalCount: numberOfEdges,
}
},
DmarcFailureTable: () => {
const dkimDomains = getStringOfDomains(0, 2)
const dkimSelectors = getDkimSelectors()
const disposition = faker.helpers.randomize(['none', 'quarantine'])
const dnsHost = faker.internet.domainName()
const envelopeFrom = faker.internet.domainName()
const headerFrom = faker.internet.domainName()
const sourceIpAddress = faker.internet.ip()
const spfDomains = getStringOfDomains(0, 2)
const totalMessages = faker.datatype.number({ min: 1, max: 10000 })
return {
dkimDomains,
dkimSelectors,
disposition,
dnsHost,
envelopeFrom,
headerFrom,
sourceIpAddress,
spfDomains,
totalMessages,
}
},
DmarcFailureTableConnection: () => {
const numberOfEdges = 50
return {
edges: [...new Array(numberOfEdges)],
totalCount: numberOfEdges,
}
},
DmarcSummaryConnection: () => {
const numberOfEdges = faker.datatype.number({ min: 0, max: 500 })
return {
edges: [...new Array(numberOfEdges)],
totalCount: numberOfEdges,
}
},
Domain: () => {
// gives date in format "2020-12-31 15:30:20.262Z"
const lastRan =
Math.random() > 0.2
? new Date(faker.date.between('2019-01-01', '2022-01-01'))
.toISOString()
.replace('T', ' ')
: null
const curDate = new Date()
const dmarcPhase = faker.random.arrayElement([
'assess',
'deploy',
'enforce',
'maintain',
'not implemented',
])
// generate an object matching DmarcSummary
const generateFakeSummary = (currentDate, month, year) => {
const totalMessageCount = faker.datatype.number({ min: 0, max: 10000 })
const fullPassCount = faker.datatype.number({
min: 0,
max: totalMessageCount,
})
const passSpfOnlyCount = faker.datatype.number({
min: 0,
max: fullPassCount,
})
const passDkimOnlyCount = faker.datatype.number({
min: 0,
max: passSpfOnlyCount,
})
const failCount = faker.datatype.number({
min: 0,
max: passDkimOnlyCount,
})
const fullPassPercent = fullPassCount / totalMessageCount
const passSpfOnlyPercent = passSpfOnlyCount / totalMessageCount
const passDkimOnlyPercent = passDkimOnlyCount / totalMessageCount
const failPercent = failCount / totalMessageCount
return {
month:
month ||
currentDate
.toLocaleString('default', { month: 'long' })
.toUpperCase(),
year: year || currentDate.getFullYear(),
categoryTotals: {
fullPass: fullPassCount,
passSpfOnly: passSpfOnlyCount,
passDkimOnly: passDkimOnlyCount,
fail: failCount,
},
categoryPercentages: {
fullPassPercentage: fullPassPercent,
passSpfOnlyPercentage: passSpfOnlyPercent,
passDkimOnlyPercentage: passDkimOnlyPercent,
failPercentage: failPercent,
totalMessages: totalMessageCount,
},
}
}
const yearlyDmarcSummaries = []
// create list of summaries for the past 13 months
for (let i = 13; i > 0; i--) {
yearlyDmarcSummaries.push(generateFakeSummary(curDate))
curDate.setMonth(curDate.getMonth() - 1)
}
return {
lastRan,
dmarcPhase,
yearlyDmarcSummaries,
}
},
DomainConnection: () => {
const numberOfEdges = faker.datatype.number({ min: 0, max: 500 })
return {
edges: [...new Array(numberOfEdges)],
totalCount: numberOfEdges,
}
},
DomainScalar: () => faker.internet.domainName(),
EmailAddress: () => faker.internet.email(),
FullPassTable: () => {
const dkimDomains = getStringOfDomains(0, 2)
const dkimSelectors = getDkimSelectors()
const dnsHost = faker.internet.domainName()
const envelopeFrom = faker.internet.domainName()
const headerFrom = faker.internet.domainName()
const sourceIpAddress = faker.internet.ip()
const spfDomains = getStringOfDomains(0, 2)
const totalMessages = faker.datatype.number({ min: 1, max: 10000 })
return {
dkimDomains,
dkimSelectors,
dnsHost,
envelopeFrom,
headerFrom,
sourceIpAddress,
spfDomains,
totalMessages,
}
},
FullPassTableConnection: () => {
const numberOfEdges = 50
return {
edges: [...new Array(numberOfEdges)],
totalCount: numberOfEdges,
}
},
GuidanceTag: () => {
const tagId = 'tag' + faker.datatype.number({ min: 1, max: 14 })
const tagName =
'TAG-' +
faker.helpers.randomize([
'missing',
'downgraded',
'bad-chain',
'short-age',
'certificate-expired',
])
const guidance = faker.lorem.sentence()
const refLinks = [...new Array(1)]
const refLinksTech = [...new Array(1)]
return {
guidance,
refLinks,
refLinksTech,
tagId,
tagName,
}
},
HTTPSConnection: () => {
const numberOfEdges = 10
return {
edges: [...new Array(numberOfEdges)],
totalCount: numberOfEdges,
}
},
Organization: () => {
const name = faker.company.companyName()
const slug = faker.helpers.slugify(name)
const domainCount = faker.datatype.number({ min: 0, max: 500 })
const location = getCanadianLocation()
const city = location.city
const province = location.province
const webPassCount = faker.datatype.number({ min: 0, max: domainCount })
const webFailCount = domainCount - webPassCount
const webPassPercentage = (webPassCount / domainCount) * 100
const webFailPercentage = 100 - webPassPercentage
const web = {
total: domainCount,
categories: [
{
name: 'pass',
count: webPassCount,
percentage: webPassPercentage,
},
{
name: 'fail',
count: webFailCount,
percentage: webFailPercentage,
},
],
}
const mailPassCount = faker.datatype.number({ min: 0, max: domainCount })
const mailFailCount = domainCount - mailPassCount
const mailPassPercentage = (mailPassCount / domainCount) * 100
const mailFailPercentage = 100 - mailPassPercentage
const mail = {
total: domainCount,
categories: [
{
name: 'pass',
count: mailPassCount,
percentage: mailPassPercentage,
},
{
name: 'fail',
count: mailFailCount,
percentage: mailFailPercentage,
},
],
}
const affiliationCount = faker.datatype.number({ min: 0, max: 200 })
return {
affiliations: {
edges: [...new Array(affiliationCount)],
totalCount: affiliationCount,
},
city,
domainCount,
domains: {
edges: [...new Array(domainCount)],
totalCount: domainCount,
},
name,
province,
slug,
summaries: { web, mail },
}
},
OrganizationConnection: () => {
const numberOfEdges = faker.datatype.number({ min: 0, max: 500 })
return {
edges: [...new Array(numberOfEdges)],
totalCount: numberOfEdges,
}
},
PersonalUser: () => {
const affiliationCount = faker.datatype.number({ min: 0, max: 200 })
return {
displayName: faker.name.findName(),
affiliations: {
edges: [...new Array(affiliationCount)],
totalCount: affiliationCount,
},
}
},
PhoneNumber: () => faker.phone.phoneNumber('+1##########'),
RefLinks: () => {
const description = faker.lorem.sentence()
const refLink = faker.internet.url()
return {
description,
refLink,
}
},
Selector: () =>
'selector' + faker.datatype.number({ min: 1, max: 9 }) + '._domainkey',
SignInError: () => ({
description: 'Mocked sign in error description',
}),
SharedUser: () => ({ displayName: faker.name.findName() }),
SpfFailureTable: () => {
const dnsHost = faker.internet.domainName()
const envelopeFrom = faker.internet.domainName()
const guidance = 'guidance' + faker.datatype.number({ min: 0, max: 8 })
const headerFrom = faker.internet.domainName()
const sourceIpAddress = faker.internet.ip()
const spfDomains = getStringOfDomains(0, 2)
const spfResults = getDmarcTableResults()
const totalMessages = faker.datatype.number({ min: 1, max: 10000 })
return {
dnsHost,
envelopeFrom,
guidance,
headerFrom,
sourceIpAddress,
spfDomains,
spfResults,
totalMessages,
}
},
SpfFailureTableConnection: () => {
const numberOfEdges = 50
return {
edges: [...new Array(numberOfEdges)],
totalCount: numberOfEdges,
}
},
SSLConnection: () => {
const numberOfEdges = 10
return {
edges: [...new Array(numberOfEdges)],
totalCount: numberOfEdges,
}
},
TFASignInResult: () => ({
authenticateToken: faker.datatype.uuid(),
sendMethod: faker.random.arrayElement(['email', 'phone']),
}),
Year: () =>
faker.datatype.number({
min: 2019,
max: 2021,
}),
...mockOverrides,
}
const getConnectionObject = (store, args, resolveInfo) => {
// use key of calling object to ensure consistency
const allEdges = store.get(
resolveInfo.returnType.toString(),
resolveInfo.path.key,
'edges',
)
// we only need the nodes since connectionFromArray will generate the proper cursors
// extract all nodes and place into new array
const allNodes = allEdges.map((edge) => {
return store.get(edge.$ref.typeName, edge.$ref.key, 'node')
})
const requestedConnection = connectionFromArray(allNodes, args)
return {
totalCount: allNodes.length,
...requestedConnection,
}
}
// Create a new schema with mocks and resolvers
const schemaWithMocks = addMocksToSchema({
schema,
mocks,
resolvers: (store) => ({
Query: {
findMe: (_, _args, context, _resolveInfo, ___) => {
return store.get('PersonalUser', context.token)
},
findMyDmarcSummaries: (_, args, _context, resolveInfo, ___) => {
return getConnectionObject(store, args, resolveInfo)
},
findMyDomains: (_, args, _context, resolveInfo) => {
return getConnectionObject(store, args, resolveInfo)
},
findMyOrganizations: (_, args, _context, resolveInfo) => {
return getConnectionObject(store, args, resolveInfo)
},
},
DetailTables: {
dkimFailure: (_, args, _context, resolveInfo) => {
return getConnectionObject(store, args, resolveInfo)
},
dmarcFailure: (_, args, _context, resolveInfo) => {
return getConnectionObject(store, args, resolveInfo)
},
fullPass: (_, args, _context, resolveInfo) => {
return getConnectionObject(store, args, resolveInfo)
},
spfFailure: (_, args, _context, resolveInfo) => {
return getConnectionObject(store, args, resolveInfo)
},
},
WebScan: {
https: (_, args, _context, resolveInfo) => {
return getConnectionObject(store, args, resolveInfo)
},
ssl: (_, args, _context, resolveInfo) => {
return getConnectionObject(store, args, resolveInfo)
},
},
Mutation: {
updateOrganization: (_, args, _context, _resolveInfo) => {
Object.entries(args.input).forEach((entry) => {
const [key, value] = entry
if (key === 'id') return
// Current mock implementation does not support multi-lang, remove language from keys
store.set(
'Organization',
args.input.id,
key.substring(0, key.length - 2),
value,
)
})
return {
result: store.get('Organization', args.input.id),
}
},
setPhoneNumber: (_, args, context, _resolveInfo) => {
store.set(
'PersonalUser',
context.token,
'phoneNumber',
args.input.phoneNumber,
)
return {
result: {
status:
'Phone number has been successfully set, you will receive a verification text message shortly.',
user: store.get('PersonalUser', context.token),
type: 'SetPhoneNumberResult',
},
}
},
signIn: (_, _args, _context, _resolveInfo) => {
const uuid = faker.datatype.uuid()
const user = store.get('PersonalUser', uuid)
return {
result: {
authToken: uuid,
user,
},
}
},
},
SetPhoneNumberUnion: {
__resolveType: ({ type }) => {
return type
},
},
SignInUnion: {
__resolveType: (obj, _context, _resolveInfo) => {
if (obj.authToken) return 'AuthResult'
},
},
}),
})
const server = new ApolloServer({
schema: schemaWithMocks,
context: ({ req }) => {
const token = req.headers.authorization
return { token }
},
})
server.listen().then(({ url }) => {
console.log(`🚀 Server ready at ${url}`)
})