1
+ import { ForbiddenError } from '../../../../../src/shared/application/http-errors.js' ;
2
+ import { NotFoundError } from '../../../../../src/shared/domain/errors.js' ;
1
3
import { CERTIFICATION_CENTER_MEMBERSHIP_ROLES } from '../../../../../src/shared/domain/models/CertificationCenterMembership.js' ;
2
4
import { usecases } from '../../../../../src/team/domain/usecases/index.js' ;
3
5
import { certificationCenterMembershipRepository } from '../../../../../src/team/infrastructure/repositories/certification-center-membership.repository.js' ;
4
- import { databaseBuilder , expect , knex , sinon } from '../../../../test-helper.js' ;
6
+ import { catchErr , databaseBuilder , expect , knex , sinon } from '../../../../test-helper.js' ;
5
7
6
8
describe ( 'Integration | Team | UseCases | update-certification-center-membership-last-accessed-at' , function ( ) {
9
+ context ( 'when the certification center membership does not exist' , function ( ) {
10
+ it ( 'throws a NotFoundError' , async function ( ) {
11
+ // given
12
+ const certificationCenterMembershipId = 4567 ;
13
+ const userId = 1234 ;
14
+
15
+ const error = await catchErr ( usecases . updateCertificationCenterMembershipLastAccessedAt ) ( {
16
+ userId,
17
+ certificationCenterMembershipId,
18
+ certificationCenterMembershipRepository,
19
+ } ) ;
20
+
21
+ expect ( error ) . to . be . instanceOf ( NotFoundError ) ;
22
+ } ) ;
23
+ } ) ;
24
+
25
+ context ( 'when the user is not the owner of the certification center membership' , function ( ) {
26
+ it ( 'throws a ForbiddenError' , async function ( ) {
27
+ // given
28
+ const certificationCenterId = databaseBuilder . factory . buildCertificationCenter ( ) . id ;
29
+ const userId = databaseBuilder . factory . buildUser ( ) . id ;
30
+
31
+ const certificationCenterMembershipId = databaseBuilder . factory . buildCertificationCenterMembership ( {
32
+ certificationCenterId,
33
+ userId,
34
+ certificationCenterRole : CERTIFICATION_CENTER_MEMBERSHIP_ROLES . MEMBER ,
35
+ } ) . id ;
36
+
37
+ await databaseBuilder . commit ( ) ;
38
+
39
+ const error = await catchErr ( usecases . updateCertificationCenterMembershipLastAccessedAt ) ( {
40
+ userId : userId + 1 ,
41
+ certificationCenterMembershipId,
42
+ certificationCenterMembershipRepository,
43
+ } ) ;
44
+
45
+ expect ( error ) . to . be . instanceOf ( ForbiddenError ) ;
46
+ } ) ;
47
+ } ) ;
48
+
49
+ context ( 'when the certification center membership is disabled' , function ( ) {
50
+ it ( 'throws a ForbiddenError' , async function ( ) {
51
+ // given
52
+ const certificationCenterId = databaseBuilder . factory . buildCertificationCenter ( ) . id ;
53
+ const userId = databaseBuilder . factory . buildUser ( ) . id ;
54
+
55
+ const certificationCenterMembershipId = databaseBuilder . factory . buildCertificationCenterMembership ( {
56
+ certificationCenterId,
57
+ userId,
58
+ certificationCenterRole : CERTIFICATION_CENTER_MEMBERSHIP_ROLES . MEMBER ,
59
+ disabledAt : new Date ( ) ,
60
+ } ) . id ;
61
+
62
+ await databaseBuilder . commit ( ) ;
63
+
64
+ const error = await catchErr ( usecases . updateCertificationCenterMembershipLastAccessedAt ) ( {
65
+ userId,
66
+ certificationCenterMembershipId,
67
+ certificationCenterMembershipRepository,
68
+ } ) ;
69
+
70
+ expect ( error ) . to . be . instanceOf ( ForbiddenError ) ;
71
+ } ) ;
72
+ } ) ;
73
+
7
74
it ( 'updates certification center membership lastAccessedAt' , async function ( ) {
8
75
// given
9
76
const now = new Date ( '2021-01-02' ) ;
@@ -12,19 +79,20 @@ describe('Integration | Team | UseCases | update-certification-center-membership
12
79
const certificationCenterId = databaseBuilder . factory . buildCertificationCenter ( ) . id ;
13
80
const userId = databaseBuilder . factory . buildUser ( ) . id ;
14
81
15
- databaseBuilder . factory . buildCertificationCenterMembership ( {
82
+ const certificationCenterMembershipId = databaseBuilder . factory . buildCertificationCenterMembership ( {
16
83
certificationCenterId,
17
84
userId,
18
85
certificationCenterRole : CERTIFICATION_CENTER_MEMBERSHIP_ROLES . MEMBER ,
19
86
lastAccessedAt : null ,
20
- } ) ;
87
+ disabledAt : null ,
88
+ } ) . id ;
21
89
22
90
await databaseBuilder . commit ( ) ;
23
91
24
92
// when
25
93
await usecases . updateCertificationCenterMembershipLastAccessedAt ( {
26
94
userId,
27
- certificationCenterId ,
95
+ certificationCenterMembershipId ,
28
96
certificationCenterMembershipRepository,
29
97
} ) ;
30
98
0 commit comments