-
Notifications
You must be signed in to change notification settings - Fork 97
/
Copy pathsettings.ts
489 lines (425 loc) · 12.8 KB
/
settings.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
import { v4 as uuidv4 } from 'uuid';
import {
disposeGraphQLTesting,
GraphQLTestClient,
GraphQLTestingState,
initializeGraphQLTesting,
MockContext,
saveFixtures,
testMutationErrorCode,
testQueryError,
testQueryErrorCode,
} from './helpers';
import {
CampaignCtaPlacement,
ChecklistViewState,
Settings,
User,
} from '../src/entity';
import { DataSource } from 'typeorm';
import createOrGetConnection from '../src/db';
import { usersFixture } from './fixture/user';
import { SortCommentsBy } from '../src/schema/comments';
let con: DataSource;
let state: GraphQLTestingState;
let client: GraphQLTestClient;
let loggedUser: string = null;
beforeAll(async () => {
con = await createOrGetConnection();
state = await initializeGraphQLTesting(
() => new MockContext(con, loggedUser),
);
client = state.client;
});
beforeEach(async () => {
loggedUser = null;
await saveFixtures(con, User, usersFixture);
});
afterAll(() => disposeGraphQLTesting(state));
const compatibilityProps = { enableCardAnimations: true, appInsaneMode: true };
describe('query bookmarksSharing', () => {
const QUERY = `{
bookmarksSharing {
enabled
slug
rssUrl
}
}`;
it('should not authorize when not logged-in', () =>
testQueryErrorCode(client, { query: QUERY }, 'UNAUTHENTICATED'));
it('should return disabled settings', async () => {
loggedUser = '1';
const repo = con.getRepository(Settings);
const settings = repo.create({ userId: '1' });
const data = await repo.save(settings);
const expected = new Object({ ...data, ...compatibilityProps });
delete expected['updatedAt'];
const res = await client.query(QUERY);
expect(res.data.bookmarksSharing.enabled).toEqual(false);
expect(res.data.bookmarksSharing.slug).toBeFalsy();
expect(res.data.bookmarksSharing.rssUrl).toBeFalsy();
});
it('should return enabled settings', async () => {
loggedUser = '1';
const repo = con.getRepository(Settings);
const settings = repo.create({ userId: '1', bookmarkSlug: uuidv4() });
const data = await repo.save(settings);
const expected = new Object({ ...data, ...compatibilityProps });
delete expected['updatedAt'];
const res = await client.query(QUERY);
expect(res.data.bookmarksSharing.enabled).toEqual(true);
expect(res.data.bookmarksSharing.slug).toEqual(settings.bookmarkSlug);
expect(res.data.bookmarksSharing.rssUrl).toEqual(
`http://localhost:4000/rss/b/${settings.bookmarkSlug}`,
);
});
});
describe('mutation updateUserSettings', () => {
const MUTATION = `
mutation UpdateUserSettings($data: UpdateSettingsInput!) {
updateUserSettings(data: $data) {
userId
theme
enableCardAnimations
showTopSites
insaneMode
appInsaneMode
spaciness
showOnlyUnreadPosts
openNewTab
sidebarExpanded
companionExpanded
sortingEnabled
customLinks
optOutWeeklyGoal
optOutReadingStreak
optOutCompanion
campaignCtaPlacement
onboardingChecklistView
sortCommentsBy
flags {
sidebarCustomFeedsExpanded
sidebarOtherExpanded
sidebarResourcesExpanded
sidebarSquadExpanded
sidebarBookmarksExpanded
clickbaitShieldEnabled
}
}
}`;
it('should not authorize when not logged in', () =>
testMutationErrorCode(
client,
{
mutation: MUTATION,
variables: { data: { theme: 'bright', insaneMode: true } },
},
'UNAUTHENTICATED',
));
it('should create user settings when does not exist', async () => {
loggedUser = '1';
const res = await client.mutate(MUTATION, {
variables: { data: { theme: 'bright', insaneMode: true } },
});
expect(res.data).toMatchSnapshot();
});
it('should create user settings flags when does not exist', async () => {
loggedUser = '1';
const res = await client.mutate(MUTATION, {
variables: { data: { flags: { sidebarCustomFeedsExpanded: false } } },
});
expect(res.data.updateUserSettings.flags).toEqual({
sidebarCustomFeedsExpanded: false,
sidebarOtherExpanded: null,
sidebarResourcesExpanded: null,
sidebarSquadExpanded: null,
sidebarBookmarksExpanded: null,
clickbaitShieldEnabled: null,
});
});
it('should create user settings flags for prompts when does not exist', async () => {
loggedUser = '1';
const res = await client.mutate(MUTATION, {
variables: {
data: { flags: { prompt: { 'simplify-it': false } } },
},
});
expect(res.data.updateUserSettings.flags).toEqual({
sidebarCustomFeedsExpanded: null,
sidebarOtherExpanded: null,
sidebarResourcesExpanded: null,
sidebarSquadExpanded: null,
sidebarBookmarksExpanded: null,
clickbaitShieldEnabled: null,
});
const userSettings = await con.getRepository(Settings).findOneOrFail({
where: { userId: '1' },
});
expect(userSettings.flags).toEqual({
prompt: { 'simplify-it': false },
});
});
it('should not allow non boolean prompts', async () => {
loggedUser = '1';
testMutationErrorCode(
client,
{
mutation: MUTATION,
variables: {
data: { flags: { prompt: { 'simplify-it': 'some value' } } },
},
},
'GRAPHQL_VALIDATION_FAILED',
);
});
it('should not allow invalid user links', async () => {
loggedUser = '1';
testMutationErrorCode(
client,
{
mutation: MUTATION,
variables: { data: { customLinks: ['http://'] } },
},
'GRAPHQL_VALIDATION_FAILED',
);
});
it('should not allow invalid user links even when there are valid ones', async () => {
loggedUser = '1';
testMutationErrorCode(
client,
{
mutation: MUTATION,
variables: {
data: { customLinks: ['https://app.daily.dev', 'http://'] },
},
},
'GRAPHQL_VALIDATION_FAILED',
);
});
it('should update user links if valid', async () => {
loggedUser = '1';
const repo = con.getRepository(Settings);
await repo.save(
repo.create({
userId: '1',
}),
);
const res = await client.mutate(MUTATION, {
variables: { data: { customLinks: ['http://abc.com'] } },
});
expect(res.data).toMatchSnapshot();
});
it('should update selected algo by user for comments section', async () => {
loggedUser = '1';
const repo = con.getRepository(Settings);
const settings = await repo.save(repo.create({ userId: '1' }));
expect(settings.sortCommentsBy).toEqual('oldest');
const res = await client.mutate(MUTATION, {
variables: { data: { sortCommentsBy: SortCommentsBy.NewestFirst } },
});
expect(res.data.updateUserSettings.sortCommentsBy).toEqual('newest');
const updated = await repo.findOneBy({ userId: '1' });
expect(updated.sortCommentsBy).toEqual('newest');
});
it('should update user settings', async () => {
loggedUser = '1';
const repo = con.getRepository(Settings);
await repo.save(
repo.create({
userId: '1',
theme: 'bright',
insaneMode: true,
customLinks: ['http://abc.com'],
}),
);
const res = await client.mutate(MUTATION, {
variables: { data: { insaneMode: false } },
});
expect(res.data).toMatchSnapshot();
});
it('should update user settings flags', async () => {
loggedUser = '1';
const repo = con.getRepository(Settings);
await repo.save(
repo.create({
userId: '1',
flags: {
sidebarCustomFeedsExpanded: false,
sidebarOtherExpanded: true,
},
}),
);
const res = await client.mutate(MUTATION, {
variables: {
data: {
flags: {
sidebarCustomFeedsExpanded: true,
sidebarOtherExpanded: false,
},
},
},
});
expect(res.data.updateUserSettings.flags).toEqual({
sidebarCustomFeedsExpanded: true,
sidebarOtherExpanded: false,
sidebarResourcesExpanded: null,
sidebarSquadExpanded: null,
sidebarBookmarksExpanded: null,
clickbaitShieldEnabled: null,
});
});
it('should update but not remove user settings flags', async () => {
loggedUser = '1';
const repo = con.getRepository(Settings);
await repo.save(
repo.create({
userId: '1',
flags: {
sidebarCustomFeedsExpanded: false,
sidebarOtherExpanded: true,
},
}),
);
const res = await client.mutate(MUTATION, {
variables: {
data: {
flags: {
sidebarCustomFeedsExpanded: true,
},
},
},
});
expect(res.data.updateUserSettings.flags).toEqual({
sidebarCustomFeedsExpanded: true,
sidebarOtherExpanded: true,
sidebarResourcesExpanded: null,
sidebarSquadExpanded: null,
sidebarBookmarksExpanded: null,
clickbaitShieldEnabled: null,
});
});
it('should update opt out companion settings', async () => {
loggedUser = '1';
const repo = con.getRepository(Settings);
await repo.save(
repo.create({
userId: '1',
optOutCompanion: false,
}),
);
const res = await client.mutate(MUTATION, {
variables: { data: { optOutCompanion: true } },
});
expect(res.data).toMatchSnapshot();
});
it('should update campaignCtaPlacement', async () => {
loggedUser = '1';
const repo = con.getRepository(Settings);
await repo.insert({
userId: '1',
optOutCompanion: false,
campaignCtaPlacement: CampaignCtaPlacement.Header,
});
const res = await client.mutate(MUTATION, {
variables: {
data: { campaignCtaPlacement: CampaignCtaPlacement.ProfileMenu },
},
});
expect(res.data.updateUserSettings.campaignCtaPlacement).toBe(
CampaignCtaPlacement.ProfileMenu,
);
});
it('should return a validation error if passed an invalid value for campaignCtaPlacement', async () => {
loggedUser = '1';
const repo = con.getRepository(Settings);
await repo.insert({
userId: '1',
optOutCompanion: false,
campaignCtaPlacement: CampaignCtaPlacement.Header,
});
await testQueryError(
client,
{
query: MUTATION,
variables: {
data: { campaignCtaPlacement: 'foo' as CampaignCtaPlacement },
},
},
(errors) => {
expect(errors[0].extensions.code).toEqual('GRAPHQL_VALIDATION_FAILED');
expect(errors[0].message).toEqual(
`Invalid value for 'campaignCtaPlacement'`,
);
},
);
});
it('should update onboardingChecklistView', async () => {
loggedUser = '1';
const repo = con.getRepository(Settings);
await repo.insert({
userId: '1',
onboardingChecklistView: ChecklistViewState.Closed,
});
const res = await client.mutate(MUTATION, {
variables: {
data: { onboardingChecklistView: ChecklistViewState.Open },
},
});
expect(res.data.updateUserSettings.onboardingChecklistView).toBe(
ChecklistViewState.Open,
);
});
});
describe('mutation setBookmarksSharing', () => {
const MUTATION = `
mutation SetBookmarksSharing($enabled: Boolean!) {
setBookmarksSharing(enabled: $enabled) {
enabled
slug
rssUrl
}
}`;
it('should not authorize when not logged in', () =>
testMutationErrorCode(
client,
{
mutation: MUTATION,
variables: { enabled: true },
},
'UNAUTHENTICATED',
));
it('should enable bookmarks sharing', async () => {
loggedUser = '1';
const res = await client.mutate(MUTATION, {
variables: { enabled: true },
});
expect(res.data.setBookmarksSharing.enabled).toEqual(true);
expect(res.data.setBookmarksSharing.slug).toBeTruthy();
expect(res.data.setBookmarksSharing.rssUrl).toEqual(
`http://localhost:4000/rss/b/${res.data.setBookmarksSharing.slug}`,
);
});
it('should disable bookmarks sharing', async () => {
loggedUser = '1';
const repo = con.getRepository(Settings);
const settings = repo.create({ userId: '1', bookmarkSlug: uuidv4() });
await repo.save(settings);
const res = await client.mutate(MUTATION, {
variables: { enabled: false },
});
expect(res.data.setBookmarksSharing.enabled).toEqual(false);
expect(res.data.setBookmarksSharing.slug).toBeFalsy();
expect(res.data.setBookmarksSharing.rssUrl).toBeFalsy();
});
it('should not do anything when bookmarks sharing is enabled', async () => {
loggedUser = '1';
const repo = con.getRepository(Settings);
const settings = repo.create({ userId: '1', bookmarkSlug: uuidv4() });
const data = await repo.save(settings);
const res = await client.mutate(MUTATION, {
variables: { enabled: true },
});
expect(res.data.setBookmarksSharing.enabled).toEqual(true);
expect(res.data.setBookmarksSharing.slug).toEqual(data.bookmarkSlug);
});
});