Skip to content
Snippets Groups Projects
Commit d9868685 authored by Alexandru Munteanu's avatar Alexandru Munteanu
Browse files

Merge branch 'HIN-1046' into 'develop'

Hin 1046

See merge request !126
parents 5f7b142d 46347c5d
No related branches found
No related tags found
2 merge requests!136Sprint 22 features (updates),!126Hin 1046
const get = require('lodash/get') const { get, remove } = require('lodash')
const User = require('./User') const User = require('./User')
class Fragment { class Fragment {
...@@ -92,14 +92,14 @@ class Fragment { ...@@ -92,14 +92,14 @@ class Fragment {
getInvitations({ isAccepted = true, role = 'reviewer', type }) { getInvitations({ isAccepted = true, role = 'reviewer', type }) {
const { fragment: { invitations = [], recommendations = [] } } = this const { fragment: { invitations = [], recommendations = [] } } = this
let filteredInvitations = isAccepted const filteredInvitations = isAccepted
? invitations.filter( ? invitations.filter(
inv => inv.role === role && inv.hasAnswer && inv.isAccepted, inv => inv.role === role && inv.hasAnswer && inv.isAccepted,
) )
: invitations.filter(inv => inv.role === role && !inv.hasAnswer) : invitations.filter(inv => inv.role === role && !inv.hasAnswer)
if (type === 'submitted') { if (type === 'submitted') {
filteredInvitations = filteredInvitations.filter(inv => return filteredInvitations.filter(inv =>
recommendations.find( recommendations.find(
rec => rec =>
rec.recommendationType === 'review' && rec.recommendationType === 'review' &&
...@@ -108,12 +108,11 @@ class Fragment { ...@@ -108,12 +108,11 @@ class Fragment {
), ),
) )
} else if (type === 'accepted') { } else if (type === 'accepted') {
filteredInvitations = filteredInvitations.filter(inv => recommendations.forEach(rec => {
recommendations.find( if (rec.recommendationType === 'review' && rec.submittedOn) {
rec => remove(filteredInvitations, inv => inv.userId === rec.userId)
rec.recommendationType === 'review' && inv.userId !== rec.userId, }
), })
)
} }
return filteredInvitations return filteredInvitations
......
...@@ -3,27 +3,238 @@ process.env.SUPPRESS_NO_CONFIG_WARNING = true ...@@ -3,27 +3,238 @@ process.env.SUPPRESS_NO_CONFIG_WARNING = true
const { cloneDeep } = require('lodash') const { cloneDeep } = require('lodash')
const fixturesService = require('pubsweet-component-fixture-service') const fixturesService = require('pubsweet-component-fixture-service')
const Chance = require('chance')
const chance = new Chance()
const { fixtures } = fixturesService const { fixtures } = fixturesService
const { Fragment } = require('../Helper') const { Fragment } = require('../Helper')
const acceptedReviewerId = chance.guid()
const submittedReviewerId1 = chance.guid()
const submittedReviewerId2 = chance.guid()
const fragment = {
invitations: [
{
id: chance.guid(),
role: 'reviewer',
hasAnswer: true,
isAccepted: true,
userId: acceptedReviewerId,
invitedOn: chance.timestamp(),
respondedOn: chance.timestamp(),
type: 'invitation',
},
{
id: chance.guid(),
role: 'reviewer',
hasAnswer: true,
isAccepted: true,
userId: submittedReviewerId1,
invitedOn: chance.timestamp(),
respondedOn: chance.timestamp(),
type: 'invitation',
},
{
id: chance.guid(),
role: 'reviewer',
hasAnswer: true,
isAccepted: true,
userId: submittedReviewerId2,
invitedOn: chance.timestamp(),
respondedOn: chance.timestamp(),
type: 'invitation',
},
],
recommendations: [
{
recommendation: 'publish',
recommendationType: 'review',
comments: [
{
content: chance.paragraph(),
public: chance.bool(),
files: [
{
id: chance.guid(),
name: 'file.pdf',
size: chance.natural(),
},
],
},
],
id: chance.guid(),
userId: submittedReviewerId1,
createdOn: chance.timestamp(),
updatedOn: chance.timestamp(),
submittedOn: chance.timestamp(),
},
{
recommendation: 'publish',
recommendationType: 'review',
comments: [
{
content: chance.paragraph(),
public: chance.bool(),
files: [
{
id: chance.guid(),
name: 'file.pdf',
size: chance.natural(),
},
],
},
],
id: chance.guid(),
userId: submittedReviewerId2,
createdOn: chance.timestamp(),
updatedOn: chance.timestamp(),
submittedOn: chance.timestamp(),
},
{
recommendation: 'publish',
recommendationType: 'review',
comments: [
{
content: chance.paragraph(),
public: chance.bool(),
files: [
{
id: chance.guid(),
name: 'file.pdf',
size: chance.natural(),
},
],
},
],
id: chance.guid(),
userId: acceptedReviewerId,
createdOn: chance.timestamp(),
updatedOn: chance.timestamp(),
},
],
}
describe('Fragment helper', () => { describe('Fragment helper', () => {
let testFixtures = {} let testFixtures = {}
let testFragment = {}
beforeEach(() => { beforeEach(() => {
testFixtures = cloneDeep(fixtures) testFixtures = cloneDeep(fixtures)
testFragment = cloneDeep(fragment)
}) })
it('hasReviewReport - should return true if the fragment has a review report', () => { describe('hasReviewReport', () => {
const { fragment } = testFixtures.fragments it('should return true if the fragment has a review report', () => {
const fragmentHelper = new Fragment({ fragment }) const { fragment } = testFixtures.fragments
const fragmentHelper = new Fragment({ fragment })
expect(fragmentHelper.hasReviewReport()).toBeTruthy()
})
it('should return false if the fragment does not have a review report', () => {
const { fragment } = testFixtures.fragments
fragment.recommendations = []
const fragmentHelper = new Fragment({ fragment })
expect(fragmentHelper.hasReviewReport()).toBeTruthy() expect(fragmentHelper.hasReviewReport()).toBeFalsy()
})
}) })
it('hasReviewReport - should return false if the fragment does not have a review report', () => {
const { fragment } = testFixtures.fragments
fragment.recommendations = []
const fragmentHelper = new Fragment({ fragment })
expect(fragmentHelper.hasReviewReport()).toBeFalsy() describe('getInvitations', () => {
it('should return accepted invitations if type is accepted and a review report has been started', () => {
const fragmentHelper = new Fragment({ fragment: testFragment })
const acceptedInvitations = fragmentHelper.getInvitations({
isAccepted: true,
type: 'accepted',
})
expect(acceptedInvitations).toHaveLength(1)
})
it('should return accepted invitations if type is accepted and no review report has been started', () => {
testFragment.recommendations = [
{
recommendation: 'publish',
recommendationType: 'review',
comments: [
{
content: chance.paragraph(),
public: chance.bool(),
files: [
{
id: chance.guid(),
name: 'file.pdf',
size: chance.natural(),
},
],
},
],
id: chance.guid(),
userId: submittedReviewerId1,
createdOn: chance.timestamp(),
updatedOn: chance.timestamp(),
submittedOn: chance.timestamp(),
},
{
recommendation: 'publish',
recommendationType: 'review',
comments: [
{
content: chance.paragraph(),
public: chance.bool(),
files: [
{
id: chance.guid(),
name: 'file.pdf',
size: chance.natural(),
},
],
},
],
id: chance.guid(),
userId: submittedReviewerId2,
createdOn: chance.timestamp(),
updatedOn: chance.timestamp(),
submittedOn: chance.timestamp(),
},
]
const fragmentHelper = new Fragment({ fragment: testFragment })
const acceptedInvitations = fragmentHelper.getInvitations({
isAccepted: true,
type: 'accepted',
})
expect(acceptedInvitations).toHaveLength(1)
})
it('should return invitations of submitted reviewers if type is submitted', () => {
const fragmentHelper = new Fragment({ fragment: testFragment })
const submittedInvitations = fragmentHelper.getInvitations({
isAccepted: true,
type: 'submitted',
})
expect(submittedInvitations).toHaveLength(2)
})
it('should return invitations of pending reviewers if type is pending and isAccepted is false', () => {
testFragment.invitations.push({
id: chance.guid(),
role: 'reviewer',
hasAnswer: false,
isAccepted: false,
userId: chance.guid(),
invitedOn: chance.timestamp(),
respondedOn: chance.timestamp(),
type: 'invitation',
})
const fragmentHelper = new Fragment({ fragment: testFragment })
const pendingInvitations = fragmentHelper.getInvitations({
isAccepted: false,
type: 'pending',
})
expect(pendingInvitations).toHaveLength(1)
})
}) })
}) })
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