-
Notifications
You must be signed in to change notification settings - Fork 11
/
users.spec.ts
879 lines (758 loc) · 27.9 KB
/
users.spec.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
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
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
import { Test, TestingModule } from '@nestjs/testing';
import { AppModule } from '../../app.module';
import { INestApplication } from '@nestjs/common';
import * as UserApis from '../../api/functional/api/v1/users';
import * as AuthApis from '../../api/functional/api/v1/auth';
import * as ArticleApis from '../../api/functional/api/v1/articles';
import typia from 'typia';
import { CreateUserDto } from '../../models/dtos/create-user.dto';
import { DecodedUserToken } from '../../models/tables/user.entity';
import { Try } from '../../types';
import { CreateArticleDto } from '../../models/dtos/create-article.dto';
import { isBusinessErrorGuard, isErrorGuard } from '../../config/errors';
import { IConnection } from '@nestia/fetcher';
import { describe, it, after, before, beforeEach } from 'node:test';
import assert from 'node:assert';
import { UserBridgeEntity } from '../../models/tables/user-bridge.entity';
describe('E2E users test', () => {
const host = 'http://localhost:4000';
let app: INestApplication;
let testingModule: TestingModule;
before(async () => {
testingModule = await Test.createTestingModule({
imports: [AppModule],
}).compile();
app = testingModule.createNestApplication();
await (await app.init()).listen(4000);
});
after(async () => {
await app.close();
});
describe('PUT api/v1/users/profile', { concurrency: false }, () => {
let connection: IConnection;
before(async () => {
const designer = typia.random<CreateUserDto>();
await AuthApis.sign_up.signUp({ host }, designer);
const response = await AuthApis.login({ host }, designer);
connection = {
host,
headers: {
Authorization: response.data,
},
};
});
it('커버 이미지를 수정하는 기능을 테스트', async () => {
const before = await UserApis.profile.getProfile(connection);
await UserApis.profile.updateProfile(connection, { coverImage: 'test.jpg' });
const after = await UserApis.profile.getProfile(connection);
if (isBusinessErrorGuard(before) || isBusinessErrorGuard(after)) {
assert.strictEqual(1, 2);
return;
}
assert.strictEqual(before.data.coverImage, null);
assert.strictEqual(after.data.coverImage, 'test.jpg');
});
it('프로필 이미지를 수정하는 기능을 테스트', async () => {
const before = await UserApis.profile.getProfile(connection);
await UserApis.profile.updateProfile(connection, { profileImage: 'test.jpg' });
const after = await UserApis.profile.getProfile(connection);
if (isBusinessErrorGuard(before) || isBusinessErrorGuard(after)) {
assert.strictEqual(1, 2);
return;
}
assert.strictEqual(before.data.profileImage, null);
assert.strictEqual(after.data.profileImage, 'test.jpg');
});
it('소개글 수정을 테스트', async () => {
const before = await UserApis.profile.getProfile(connection);
const res = await UserApis.profile.updateProfile(connection, { introduce: 'test.jpg' });
const after = await UserApis.profile.getProfile(connection);
if (isBusinessErrorGuard(before) || isBusinessErrorGuard(after)) {
assert.strictEqual(1, 2);
return;
}
assert.strictEqual(before.data.introduce, null);
assert.strictEqual(after.data.introduce, 'test.jpg');
});
});
/**
* 이미지 업로드
*/
describe('POST api/v1/users/profile/cover', { concurrency: false }, () => {
let connection: IConnection;
before(async () => {
const designer = typia.random<CreateUserDto>();
await AuthApis.sign_up.signUp({ host }, designer);
const response = await AuthApis.login({ host }, designer);
connection = {
host,
headers: {
Authorization: response.data,
},
};
});
/**
* 이미지 업로드 같은 경우는 nestia로는 불가능하기 때문에 추후에 하는 것으로.
*/
it('프로필의 커버 이미지를 업로드하는 기능을 테스트', { todo: true });
it('이미지가 없을 경우에 대한 예외 처리', async () => {
const uploadCoverImageResponse = await UserApis.profile.cover_image.uploadCoverImage(connection);
if (!isBusinessErrorGuard(uploadCoverImageResponse)) {
assert.strictEqual(1, 2);
return;
}
assert.strictEqual(uploadCoverImageResponse.data, '적어도 1장 이상의 이미지를 골라야 합니다.');
});
});
describe('GET api/v1/users/profile', { concurrency: false }, () => {
let token: string = '';
before(async () => {
const designer = typia.random<CreateUserDto>();
await AuthApis.sign_up.signUp({ host }, designer);
const response = await AuthApis.login({ host }, designer);
token = response.data;
});
it('디자이너가 회원 가입 후 자신의 프로필을 조회하는 시나리오', async () => {
const profile = await UserApis.profile.getProfile({
host,
headers: {
Authorization: token,
},
});
assert.notStrictEqual(profile, undefined);
});
it('디자이너 프로필 조회 시 프로필 이미지가 나와야 한다.', async () => {
const profile = await UserApis.profile.getProfile({
host,
headers: {
Authorization: token,
},
});
if (isBusinessErrorGuard(profile)) {
assert.strictEqual(1, 2);
return;
}
assert.notStrictEqual(profile, undefined);
assert.notStrictEqual(Object.keys(profile.data).includes('profileImage'), undefined);
});
it('디자이너 프로필 조회 시 프로필 이미지가 나와야 한다.', async () => {
const profile = await UserApis.profile.getProfile({
host,
headers: {
Authorization: token,
},
});
if (isBusinessErrorGuard(profile)) {
assert.strictEqual(1, 2);
return;
}
assert.notStrictEqual(profile, undefined);
assert.notStrictEqual(Object.keys(profile.data).includes('coverImage'), undefined);
});
it('토큰을 decode할 게 아니라, 업데이트된 이후의 최신 정보를 반환해야 한다.', { todo: true });
});
/**
* 다른 디자이너를 조회
*/
describe('GET api/v1/users/:id', { concurrency: false }, () => {
let token: string = '';
let decodedToken: DecodedUserToken;
let otherDesignerToken: string = '';
let otherDesignerDecodedToken: DecodedUserToken;
let connection: IConnection;
beforeEach(async () => {
const designer = typia.random<CreateUserDto>();
const signUpResponse = await AuthApis.sign_up.signUp({ host }, designer);
if (isBusinessErrorGuard(signUpResponse)) {
return false;
}
decodedToken = signUpResponse.data;
const response = await AuthApis.login({ host }, designer);
token = response.data;
connection = {
host,
headers: {
Authorization: token,
},
};
/**
* 조회할 대상을 추가
*/
const otherDesigner = typia.random<CreateUserDto>();
const otherDesignerSignUpResponse = await AuthApis.sign_up.signUp({ host }, otherDesigner);
if (isBusinessErrorGuard(otherDesignerSignUpResponse)) {
return false;
}
otherDesignerDecodedToken = otherDesignerSignUpResponse.data;
const otherDesignerLoginResponse = await AuthApis.login({ host }, otherDesigner);
otherDesignerToken = otherDesignerLoginResponse.data;
});
it.todo('조회에 성공해야 한다.');
/**
* @link {https://github.com/picktogram/server/issues/15}
*
* 조회한 유저를 팔로우 중인지 확인하기 위한 프로퍼티 필요
*/
it('다른 디자이너 조회 시, 서로 팔로우하지 않은 경우 nothing 상태 값이 나와야 한다.', async () => {
const response = await UserApis.getDetailProdfile(connection, otherDesignerDecodedToken.id);
if (isErrorGuard(response)) {
assert.strictEqual(1, 2);
return;
}
assert.strictEqual(response.data.followStatus === 'nothing', true);
});
it('다른 디자이너 조회 시, 팔로우한 경우 follow 상태가 나와야 한다.', async () => {
await UserApis.follow.follow(connection, otherDesignerDecodedToken.id);
const response = await UserApis.getDetailProdfile(connection, otherDesignerDecodedToken.id);
if (isErrorGuard(response)) {
assert.strictEqual(1, 2);
return;
}
assert.strictEqual(response.data.followStatus === 'follow', true);
});
it('다른 디자이너 조회 시, 맞팔로우한 경우 followUp 상태가 나와야 한다.', async () => {
/**
* 팔로우 후 맞 팔로우를 당했다고 가정한다.
*/
await UserApis.follow.follow(connection, otherDesignerDecodedToken.id);
await UserApis.follow.follow(
{
host,
headers: {
authorization: otherDesignerToken,
},
},
decodedToken.id,
);
const response = await UserApis.getDetailProdfile(connection, otherDesignerDecodedToken.id);
if (isErrorGuard(response)) {
assert.strictEqual(1, 2);
return;
}
const first = await UserBridgeEntity.findOne({ where: { firstUserId: decodedToken.id } });
const second = await UserBridgeEntity.findOne({ where: { secondUserId: otherDesignerDecodedToken.id } });
assert.notStrictEqual(first, null);
assert.notStrictEqual(second, null);
assert.strictEqual(response.data.followStatus === 'followUp', true);
});
/**
* 프로필 조회를 유저 조회로 합치면서, 자기 자신을 구분하기 위한 프로퍼티를 추가
*/
it('자기 자신을 조회한 경우, myself이 true로 나오며 followStatus는 nothing이어야 한다.', async () => {
const response = await UserApis.getDetailProdfile(connection, decodedToken.id);
if (isErrorGuard(response)) {
assert.strictEqual(1, 2);
return;
}
assert.strictEqual(response.data.myself, true);
assert.strictEqual(response.data.followStatus === 'nothing', true);
});
it('다른 디자이너 조회 시, 나를 조회한 사람인 경우 reverse 상태가 나와야 한다.', async () => {
await UserApis.follow.follow(
{
host,
headers: {
authorization: otherDesignerToken,
},
},
decodedToken.id,
);
const response = await UserApis.getDetailProdfile(connection, otherDesignerDecodedToken.id);
if (isErrorGuard(response)) {
assert.strictEqual(1, 2);
return;
}
assert.strictEqual(response.data.followStatus === 'reverse', true);
});
});
describe('POST api/v1/users/:id/follow', { concurrency: false }, () => {
let token: string = '';
let decodedToken: DecodedUserToken;
beforeEach(async () => {
const designer = typia.random<CreateUserDto>();
const signUpResponse = await AuthApis.sign_up.signUp({ host }, designer);
if (isBusinessErrorGuard(signUpResponse)) {
return false;
}
decodedToken = signUpResponse.data;
const response = await AuthApis.login({ host }, designer);
token = response.data;
});
it('디자이너가 다른 사람을 팔로우하는 경우에 대한 테스트', async () => {
// NOTE : 팔로우할 다른 디자이너 생성
const userData = typia.random<CreateUserDto>();
const follower = await AuthApis.sign_up.signUp({ host }, userData);
if (isBusinessErrorGuard(follower)) {
assert.strictEqual(1, 2);
return;
}
const response = await UserApis.follow.follow(
{
host,
headers: {
Authorization: token,
},
},
follower.data.id,
);
if (response.code === 1000) {
response.data;
} else if (response.code === 4008) {
response.data;
} else {
// 아직 명시되지 않았지만 에러가 추가될 수 있다.
response.data;
}
assert.strictEqual(response.data, true);
});
/**
* 단 회원 가입 시 이미 자기 자신을 팔로우한 상태로 되어 있다.
*/
it('나 자신을 팔로우하는 것은 불가능하다.', async () => {
const response = await UserApis.follow.follow(
{
host,
headers: {
Authorization: token,
},
},
decodedToken.id,
);
/*
* 반드시 에러로 진입하여야 하기 때문에 아래는 일부러 틀린 코드를 작성한다.
*/
assert.strictEqual(response.code, 4017);
});
/**
* @link {https://github.com/picktogram/server/issues/10}
*/
describe('#issue 10. followStatus 갱신 에러', { concurrency: false }, () => {
let writerToken: string = '';
let decodedWriterToken: DecodedUserToken;
let token: string = '';
let decodedToken: DecodedUserToken;
beforeEach(async () => {
/**
* 글을 작성할 사람으로, 팔로우 전 후로 게시글의 팔로우 상태 조회에 사용한다.
*/
const writer = typia.random<CreateUserDto>();
const writerSignUpResponse = await AuthApis.sign_up.signUp({ host }, writer);
if (isBusinessErrorGuard(writerSignUpResponse)) {
assert.strictEqual(1, 2);
return;
}
decodedWriterToken = writerSignUpResponse.data;
const writerLoginResponse = await AuthApis.login({ host }, writer);
writerToken = writerLoginResponse.data;
/**
* 팔로우 전후 글을 조회할 사람
*/
const designer = typia.random<CreateUserDto>();
const signUpResponse = await AuthApis.sign_up.signUp({ host }, designer);
if (isBusinessErrorGuard(signUpResponse)) {
assert.strictEqual(1, 2);
return;
}
decodedToken = signUpResponse.data;
const designerLoginResponse = await AuthApis.login({ host }, designer);
token = designerLoginResponse.data;
});
it('follow api 성공 메시지를 확인한 후에 게시글 리스트 조회 시 followStatus 갱신', async () => {
const dummyWriting = typia.random<CreateArticleDto>();
const writeArticleResponse = await ArticleApis.writeArticle(
{
host,
headers: {
Authorization: writerToken,
},
},
{ contents: dummyWriting.contents, type: 'writing' },
);
const before = await ArticleApis.getAllArticles(
{
host,
headers: {
Authorization: token,
},
},
{ page: 1, limit: 1 },
);
await UserApis.follow.follow(
{
host,
headers: {
Authorization: token,
},
},
decodedWriterToken.id,
);
const after = await ArticleApis.getAllArticles(
{
host,
headers: {
Authorization: token,
},
},
{ page: 1, limit: 1 },
);
assert.strictEqual(
before.data.list.some((el) => el.writer.followStatus !== 'nothing'),
false,
);
const articleBeforeFollow = before.data.list.find(
(el) => writeArticleResponse.code === 1000 && el.id === writeArticleResponse.data.id,
);
assert.strictEqual(articleBeforeFollow?.writer.followStatus === 'nothing', true);
assert.strictEqual(
after.data.list.some((el) => el.writer.followStatus !== 'nothing'),
true,
);
const articleAfterFollow = after.data.list.find(
(el) => writeArticleResponse.code === 1000 && el.id === writeArticleResponse.data.id,
);
assert.strictEqual(articleAfterFollow?.writer.followStatus === 'nothing', false);
});
});
});
/**
* 알 수도 있는 사람을 조회하는 API
*/
describe('GET api/v1/users/acquaintance', { concurrency: false }, () => {
let token: string = '';
let decodedToken: DecodedUserToken;
beforeEach(async () => {
const designer = typia.random<CreateUserDto>();
const signUpResponse = await AuthApis.sign_up.signUp({ host }, designer);
if (isBusinessErrorGuard(signUpResponse)) {
return;
}
decodedToken = signUpResponse.data;
const response = await AuthApis.login({ host }, designer);
token = response.data;
});
it('API 동작 자체에 대한 테스트로, 응답 값은 유저의 정보를 가진 배열(페이지네이션) 이다.', async () => {
const response = await UserApis.acquaintance.getAcquaintance(
{
host,
headers: {
Authorization: token,
},
},
{ page: 1, limit: 10 },
);
assert.notStrictEqual(response.data.list, undefined);
assert.strictEqual(response.data.list.length, 0);
});
it('팔로우를 당한 경우, 나를 팔로우한 상대가 추천 목록에 조회되어야 한다.', async () => {
// NOTE : 나를 팔로우할 대상을 생성
const userData = typia.random<CreateUserDto>();
const followee = await AuthApis.sign_up.signUp({ host }, userData);
if (isBusinessErrorGuard(followee)) {
assert.strictEqual(1, 2);
return;
}
// NOTE : 나를 팔로우할 대상이 로그인하여, 나를 팔로우
const loginResponse = await AuthApis.login({ host }, userData);
const followerToken = loginResponse.data;
await UserApis.follow.follow(
{
host,
headers: {
Authorization: followerToken,
},
},
decodedToken.id,
);
const response = await UserApis.acquaintance.getAcquaintance(
{
host,
headers: {
Authorization: token,
},
},
{ page: 1, limit: 10 },
);
assert.notStrictEqual(response.data.list, undefined);
assert.notStrictEqual(response.data.list.length, 0);
/**
* 자기 자신이 추천 목록에 나와서는 안 된다.
*/
assert.strictEqual(
response.data.list.some((el) => el.id === decodedToken.id),
false,
);
/**
* 상대는 추천 목록에 있어야 한다.
*/
assert.strictEqual(
response.data.list.some((el) => el.id === followee.data.id),
true,
);
});
/**
* 해당 로직에 문제가 있는 것으로 보인다.
*/
it('역으로 나도 팔로우를 하여, 서로 맞팔 상태가 되었을 때 친구 추천 목록에서 나오지 말아야 한다.', async () => {
// NOTE : 나를 팔로우할 대상을 생성
const userData = typia.random<CreateUserDto>();
const followee = await AuthApis.sign_up.signUp({ host }, userData);
if (isBusinessErrorGuard(followee)) {
assert.strictEqual(1, 2);
return;
}
// NOTE : 나를 팔로우할 대상이 로그인하여, 나를 팔로우
const loginResponse = await AuthApis.login({ host }, userData);
const followerToken = loginResponse.data;
await UserApis.follow.follow(
{
host,
headers: {
Authorization: followerToken,
},
},
decodedToken.id,
);
// NOTE : 나도 맞팔로우한다.
await UserApis.follow.follow(
{
host,
headers: {
Authorization: token,
},
},
followee.data.id,
);
// NOTE : 내 기준으로 조회할 때, 상대가 친구 추천 목록에 나오는지 확인한다.
const response = await UserApis.acquaintance.getAcquaintance(
{
host,
headers: {
Authorization: token,
},
},
{ page: 1, limit: 10 },
);
assert.notStrictEqual(response.data.list, undefined);
assert.strictEqual(response.data.list.length, 0);
/**
* 내가 조회한 친구 목록에서 먼저 팔로우해줬던 사람 (followee)이 있으면 안 된다.
*/
assert.strictEqual(
response.data.list.some((el) => el.id === followee.data.id),
false,
);
});
it('나 자신은 친구 추천 목록에서 나와서는 안 된다.', async () => {
const acquaintance = await UserApis.acquaintance.getAcquaintance(
{ host, headers: { Authorization: token } },
{ limit: 100, page: 1 },
);
const isIncludeMySelf = acquaintance.data.list.every((el) => el.id !== decodedToken.id);
assert.strictEqual(isIncludeMySelf, true);
});
/**
* 유명인의 기준은 팔로우가 100명 이상인 사람이다.
*/
it('유명인들을 추천해주어야 하며, 사유를 말해야 한다.', { todo: true });
it(
'내가 좋아요를 누른 게시글과 댓글이 우연히 n 번 이상 동일 인물인 경우 추천해주며, 사유를 말해줘야 한다.',
{
todo: true,
},
async () => {
// 나를 팔로우한 사람이 있다면 친구 추천 목록에서 나와야 한다.
// NOTE : 나를 팔로우할 대상을 생성
const userData = typia.random<CreateUserDto>();
const followee = await AuthApis.sign_up.signUp({ host }, userData);
if (isBusinessErrorGuard(followee)) {
assert.strictEqual(1, 2);
return;
}
// NOTE : 나를 팔로우할 대상이 로그인하여, 나를 팔로우
const loginResponse = await AuthApis.login({ host }, userData);
const followerToken = loginResponse.data;
await UserApis.follow.follow(
{
host,
headers: {
Authorization: followerToken,
},
},
decodedToken.id,
);
// NOTE : 내 기준으로 조회할 때, 상대가 친구 추천 목록에 나오는지 확인한다.
const response = await UserApis.acquaintance.getAcquaintance(
{
host,
headers: {
Authorization: token,
},
},
{ page: 1, limit: 10 },
);
assert.notStrictEqual(response.data.list, undefined);
assert.notStrictEqual(response.data.list.length, 0);
/**
* 내가 조회한 친구 목록에서 먼저 팔로우해줬던 사람 (followee)이 있어야 한다.
*/
assert.strictEqual(
response.data.list.some((el) => el.id === followee.data.id),
true,
);
assert.strictEqual(
response.data.list.every((profile) => profile.reason),
true,
);
},
);
});
describe('GET api/v1/users/:id/follwers', { concurrency: false }, () => {
let token: string = '';
let decodedToken: DecodedUserToken;
let connection: IConnection;
beforeEach(async () => {
const designer = typia.random<CreateUserDto>();
const signUpResponse = await AuthApis.sign_up.signUp({ host }, designer);
if (isBusinessErrorGuard(signUpResponse)) {
assert.strictEqual(1, 2);
return;
}
decodedToken = signUpResponse.data;
const response = await AuthApis.login({ host }, designer);
token = response.data;
connection = {
host,
headers: {
Authorization: response.data,
},
};
});
it('해당 유저가 팔로우한 사람들이 조회된다.', { todo: true });
/**
* 팔로우 자체를 못하게 막을 것이지만, 더 방어적으로 프로그래밍한다.
*/
it('해당 유저가 팔로워 목록에서 조회되서는 안 된다.', { todo: true });
});
describe('GET api/v1/users/:id/followees', { concurrency: false }, () => {
let token: string = '';
let decodedToken: DecodedUserToken;
let connection: IConnection;
beforeEach(async () => {
const designer = typia.random<CreateUserDto>();
const signUpResponse = await AuthApis.sign_up.signUp({ host }, designer);
if (isBusinessErrorGuard(signUpResponse)) {
assert.strictEqual(1, 2);
return;
}
decodedToken = signUpResponse.data;
const response = await AuthApis.login({ host }, designer);
token = response.data;
connection = {
host,
headers: {
Authorization: response.data,
},
};
});
it('해당 유저를 팔로이한 사람들이 조회된다.', async () => {
const checkFolloweesResponse = await UserApis.followees.checkFollowees(connection, decodedToken.id, {
page: 1,
limit: 1,
});
if (isErrorGuard(checkFolloweesResponse)) {
assert.strictEqual(1, 2);
return;
}
assert.strictEqual(checkFolloweesResponse.data.list instanceof Array, true);
});
/**
* 팔로우 자체를 못하게 막을 것이지만, 더 방어적으로 프로그래밍한다.
*/
it('해당 유저가 팔로이 목록에서 조회되서는 안 된다.', { todo: true });
});
/**
* 유저의 평판 조회하기 API
* 가리키는 아이디가 내 id일 경우, 내 평판 조회하는 것과 동일하게 된다.
*/
describe('GET api/v1/uesrs/:id/reputation', { concurrency: false }, () => {
let token: string = '';
let decodedToken: DecodedUserToken;
beforeEach(async () => {
const designer = typia.random<CreateUserDto>();
const signUpResponse = await AuthApis.sign_up.signUp({ host }, designer);
if (isBusinessErrorGuard(signUpResponse)) {
assert.strictEqual(1, 2);
return;
}
decodedToken = signUpResponse.data;
const response = await AuthApis.login({ host }, designer);
token = response.data;
});
it('유저의 평판 조회에 성공한다.', async () => {
const myReputation = await UserApis.reputation.checkReputation(
{
host,
headers: {
authorization: token,
},
},
decodedToken.id,
);
assert.notStrictEqual(myReputation.data, undefined);
});
it('조회한 유저가 자기 자신일 경우에는 그걸 의미하는 값을 전달해야 한다.', { todo: true });
});
/**
* 유저가 다른 유저를 언팔로우하는 상황
*/
describe('DELETE api/v1/users/:id/follow', { concurrency: false }, () => {
let token: string = '';
let decodedToken: DecodedUserToken;
let userToBeFollowed: Try<DecodedUserToken>;
beforeEach(async () => {
// NOTE : 팔로우를 하는 쪽
const designer = typia.random<CreateUserDto>();
const signUpResponse = await AuthApis.sign_up.signUp({ host }, designer);
if (isBusinessErrorGuard(signUpResponse)) {
assert.strictEqual(1, 2);
return;
}
decodedToken = signUpResponse.data;
// NOTE : 팔로우하는 쪽에서는 로그인까지 진행
const response = await AuthApis.login({ host }, designer);
token = response.data;
// NOTE : 팔로우를 당하는 쪽
const designer2 = typia.random<CreateUserDto>();
const followerSignUpResponse = await AuthApis.sign_up.signUp({ host }, designer2);
if (isBusinessErrorGuard(followerSignUpResponse)) {
assert.strictEqual(1, 2);
return;
}
userToBeFollowed = followerSignUpResponse;
/**
* NOTE : 언팔로우를 테스트하기 위해 팔로우를 미리 걸어놓는다.
*/
const followResponse = await UserApis.follow.follow(
{
host,
headers: {
authorization: token,
},
},
userToBeFollowed.data.id,
);
});
it('유저가 언팔로우에 성공한다.', async () => {
const unfollowResponse = await UserApis.follow.unfollow(
{
host,
headers: {
authorization: token,
},
},
userToBeFollowed.data.id,
);
assert.notStrictEqual(unfollowResponse.data, undefined);
});
});
});