-
Notifications
You must be signed in to change notification settings - Fork 2
/
test.js
executable file
·458 lines (420 loc) · 10.7 KB
/
test.js
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
#!/usr/bin/env node
// ts-check
const crypto = require('crypto')
const Testing = require('simple-ql-testing')
const log = require('./src/utils/logger')// This is just to color the logs
const createTestServer = require('./example.js')
const { getQuery } = require('./src')
// We will use this as the password for our fake users.
const userHashedPassword = crypto.pbkdf2Sync('password', '', 1, 64, 'sha512').toString('base64')
// This date will be used in our requests
const date = new Date()
const test = Testing('/')
const createTest = Testing.createTest
createTestServer()
.then(() => log('info', '\n', 'Test server ready'))
.then(() => test([
createTest(true, 'Registration of 2 users',
{
User: [
{
pseudo: 'User1',
email: '[email protected]',
password: userHashedPassword,
create: true
},
{
pseudo: 'User2',
email: '[email protected]',
password: userHashedPassword,
create: true
}
]
}),
createTest(false, 'Forbidden: Registration of a user with the same email',
{
User:
{
pseudo: 'User1',
email: '[email protected]',
password: userHashedPassword,
create: true
}
}),
createTest(true, 'Login as User1',
{
User: {
email: '[email protected]',
password: userHashedPassword
}
}
)
]))
.then(response => Testing.setJWT(response.data.User[0].jwt))
.then(() => test([
createTest(true, 'Renew the jwt token', {
User: {
get: ['jwt']
}
})
]))
.then(response => Testing.setJWT(response.data.User[0].jwt))
.then(() => test([
createTest(false, 'Update user password without previous password',
{
User: {
email: '[email protected]',
set: {
password: 'test'
}
}
}),
createTest(false, 'Try to log in with new password',
{
User: {
email: '[email protected]',
password: 'test'
}
}),
createTest(false, 'Update user password with wrong previous password',
{
User: {
email: '[email protected]',
password: 'test',
set: {
password: 'test'
}
}
}),
createTest(false, 'Try to log in with new password',
{
User: {
email: '[email protected]',
password: 'test'
}
}),
createTest(true, 'Update user password',
{
User: {
email: '[email protected]',
password: userHashedPassword,
set: {
password: 'test'
}
}
}),
createTest(true, 'Try to log in with new password',
{
User: {
email: '[email protected]',
password: 'test'
}
})
]))
.then(response => Testing.setJWT(response.data.User[0].jwt))
.then(() => test([
createTest(true, 'Getting user with their contacts',
{
User: {
contacts: {
email: '[email protected]',
get: '*'
}
}
}),
createTest(true, 'Getting only users that have user2 as a contact',
{
User: {
contacts: {
email: '[email protected]',
get: '*',
required: true
}
}
}),
createTest(true, 'Retrive current profile',
{
User: {
email: '[email protected]',
get: '*'
}
}),
createTest(true, 'Restricted : Retrive profile from another user',
{
User: {
email: '[email protected]',
get: '*'
}
}),
createTest(false, 'Forbidden : Adding a contact',
{
User: {
email: '[email protected]',
contacts: {
add: { email: '[email protected]' }
}
}
}),
createTest(false, 'Forbidden : Inviting oneself as a contact',
{
User: {
email: '[email protected]',
invited: {
add: { email: '[email protected]' }
}
}
}),
createTest(true, 'Inviting a user as contact',
{
User: {
email: '[email protected]',
invited: {
add: { email: '[email protected]' }
}
}
}),
createTest(false, 'Forbidden : Adding as a contact someone that didn\'t invite you nor accepted you as a contact',
{
User: {
email: '[email protected]',
contacts: {
add: { email: '[email protected]' }
}
}
}),
createTest(true, 'Login as User2',
{
User: {
email: '[email protected]',
password: userHashedPassword
}
})
]))
.then(response => Testing.setJWT(response.data.User[0].jwt))
.then(() => test([
createTest(true, 'Adding a contact',
{
User: {
email: '[email protected]',
contacts: {
add: { email: '[email protected]' }
}
}
}),
createTest(false, 'Forbidden : Adding a contact as a contact',
{
User: {
email: '[email protected]',
contacts: {
add: { email: '[email protected]' }
}
}
}),
createTest(true, 'Creating a feed for the users',
{
Feed: {
create: true,
participants: [
{ email: '[email protected]' },
{ email: '[email protected]' }
]
}
}),
createTest(true, 'Creating a message',
{
Feed: {
participants: [
{ email: '[email protected]' },
{ email: '[email protected]' }
],
comments: {
add: {
create: true,
content: 'test',
title: 'Test',
author: {
email: '[email protected]'
}
}
}
}
}),
createTest(false, 'Forbidden: Creating a message with no feed',
{
Comment: {
create: true,
content: 'test',
title: 'Test',
author: {
email: '[email protected]'
}
}
}),
createTest(false, 'Forbidden: Creating a bad formatted message',
{
Feed: {
participants: [
{ email: '[email protected]' },
{ email: '[email protected]' }
],
comments: {
add: {
create: true,
content: { title: 'test', content: 'content' },
title: 'Test',
author: {
email: '[email protected]'
}
}
}
}
}),
createTest(true, 'Editing all messages between 2 dates',
{
Comment: {
title: 'Test',
author: {
email: '[email protected]'
},
date: {
lt: new Date(new Date(date).setHours(date.getHours() + 2)).toISOString(),
gt: new Date(new Date(date).setHours(date.getHours() - 2)).toISOString()
},
set: {
title: 'random'
}
}
}),
createTest(true, 'Retrieving messages using limit, offset and order',
{
Comment: {
author: {
email: '[email protected]'
},
limit: 1,
offset: 0,
order: ['-date', 'title'],
get: '*'
}
}),
createTest(false, 'Forbidden : Edit another user',
{
User: {
email: '[email protected]',
set: {
pseudo: 'random'
}
}
}),
createTest(true, 'Edit our personal data',
{
User: {
email: '[email protected]',
set: {
pseudo: 'random'
}
}
}),
createTest(false, 'Forbidden : Deleting another user',
{
User: {
email: '[email protected]',
delete: true
}
}),
createTest(true, 'Deleting our own message',
{
Comment: {
author: {
email: '[email protected]',
required: true
},
delete: true
}
}),
createTest(false, 'Replacing all contacts with bad formatted instruction',
{
User: {
email: '[email protected]',
set: {
contacts: 'id'
}
}
}),
createTest(true, 'Deleting our own data',
{
User: {
email: '[email protected]',
delete: true
}
})
]))
// Handle wrong jwt
.then(() => Testing.setJWT('dummy'))
.then(() => test([
createTest(false, 'Forbidden : wrong JWT', { User: { get: '*' } })
]))
.then(() => Testing.setJWT(''))
// Concurrent server-side request test
.then(() => {
return Promise.all([getQuery('simpleql').then(query => query({
User: {
pseudo: 'Admin',
email: '[email protected]',
password: userHashedPassword,
create: true
}
})),
getQuery('simpleql').then(query => query({
User: {
pseudo: 'Admin2',
email: '[email protected]',
password: userHashedPassword,
create: true
}
}))])
})
.then(() => test(createTest(true, 'Login as User1', {
User: {
email: '[email protected]',
password: 'test'
}
})))
.then(response => Testing.setJWT(response.data.User[0].jwt))
// Simple QL requests
.then(() => test([
createTest(true, 'Retrieve Customer from Stripe', {
Customer: { email: '[email protected]', get: '*' }
}),
createTest(true, 'Retrieve Products from Stripe', {
Product: { active: true, get: '*' }
}),
createTest(true, 'Retrieve Prices from Stripe', {
Price: { product: { name: 'Cantoo Scribe Trimestriel' }, get: '*' }
}),
createTest(true, 'Retrieve Subscriptions from Stripe', {
Customer: { email: '[email protected]', get: ['subscriptions'] }
}),
createTest(true, 'Retrieve SubscriptionItems from Stripe', {
SubscriptionItem: { subscription: { customer: { email: '[email protected]' } }, get: '*' }
})
]))
// Concurrent server-side request test
.then(() => {
console.log('We test to make two concurrent requests')
return Promise.all([getQuery('simpleql').then(query => query({
Customer: { email: '[email protected]', get: ['subscriptions'] }
})),
getQuery('simpleql').then(query => query({
Customer: { email: '[email protected]', get: ['subscriptions'] }
}))])
})
.then(() => console.log('Tests successful!'))
.catch(err => {
if (err.response) {
console.error(err.message, '\n', err.response.data)
} else {
console.error(err)
}
})
.then(process.exit)