Skip to content
Snippets Groups Projects
Commit 4f4d72eb authored by Sebastian's avatar Sebastian
Browse files

feat(component-invite): fix bug when inviting declining HE

parent 243d1e08
No related branches found
No related tags found
No related merge requests found
...@@ -76,10 +76,16 @@ module.exports = async ( ...@@ -76,10 +76,16 @@ module.exports = async (
) )
await collHelper.addAssignedPeople(collection, user, role) await collHelper.addAssignedPeople(collection, user, role)
} else { } else {
const matchingInvitation = inviteHelper.getMatchingInvitation( // const matchingInvitation = inviteHelper.getMatchingInvitation(
user.invitations, // user.invitations,
collectionId, // collectionId,
role, // role,
// )
const matchingInvitation = user.invitations.find(
invitation =>
invitation.collectionId === collectionId &&
invitation.role === role &&
invitation.hasAnswer === false,
) )
if (matchingInvitation === undefined) { if (matchingInvitation === undefined) {
user = await inviteHelper.setupInvitation( user = await inviteHelper.setupInvitation(
......
...@@ -111,7 +111,7 @@ const users = { ...@@ -111,7 +111,7 @@ const users = {
}, },
], ],
teams: [heTeamID], teams: [heTeamID],
save: jest.fn(() => users.handlingEditor), save: jest.fn(() => users.invitedHandlingEditor),
editorInChief: false, editorInChief: false,
}, },
} }
......
...@@ -219,6 +219,26 @@ describe('Post invite route handler', () => { ...@@ -219,6 +219,26 @@ describe('Post invite route handler', () => {
const data = JSON.parse(res._getData()) const data = JSON.parse(res._getData())
expect(data.email).toEqual(body.email) expect(data.email).toEqual(body.email)
expect(data.invitations[0].collectionId).toEqual(req.params.collectionId) expect(data.invitations[0].collectionId).toEqual(req.params.collectionId)
expect(data.invitations).toHaveLength(1) })
it('should return success when the EiC invites the a HE after he declined an invitation', async () => {
const body = {
email: invitedHandlingEditor.email,
role: 'handlingEditor',
}
const req = httpMocks.createRequest({
body,
})
req.user = editorInChief.id
req.params.collectionId = standardCollection.id
const initialSize = invitedHandlingEditor.invitations.length
const res = httpMocks.createResponse()
await require(postInvitePath)(models)(req, res)
expect(res.statusCode).toBe(200)
const data = JSON.parse(res._getData())
expect(data.email).toEqual(body.email)
expect(invitedHandlingEditor.invitations.length).toBeGreaterThan(
initialSize,
)
}) })
}) })
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment