mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-18 07:07:35 +01:00
Add initial tests for add checklist item to challenge
This commit is contained in:
@@ -0,0 +1,119 @@
|
|||||||
|
import {
|
||||||
|
generateUser,
|
||||||
|
generateGroup,
|
||||||
|
generateChallenge,
|
||||||
|
translate as t,
|
||||||
|
} from '../../../../../helpers/api-integration/v3';
|
||||||
|
import { v4 as generateUUID } from 'uuid';
|
||||||
|
|
||||||
|
describe('POST /tasks/:taskId/checklist/', () => {
|
||||||
|
let user;
|
||||||
|
let guild;
|
||||||
|
let challenge;
|
||||||
|
|
||||||
|
before(async () => {
|
||||||
|
user = await generateUser();
|
||||||
|
guild = await generateGroup(user);
|
||||||
|
challenge = await generateChallenge(user, guild);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('fails on task not found', async () => {
|
||||||
|
await expect(user.post(`/tasks/${generateUUID()}/checklist`, {
|
||||||
|
text: 'Checklist Item 1',
|
||||||
|
})).to.eventually.be.rejected.and.eql({
|
||||||
|
code: 404,
|
||||||
|
error: 'NotFound',
|
||||||
|
message: t('taskNotFound'),
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
it('returns error when user is not a member of the challenge', async () => {
|
||||||
|
let task = await user.post(`/tasks/challenge/${challenge._id}`, {
|
||||||
|
type: 'daily',
|
||||||
|
text: 'Daily with checklist',
|
||||||
|
});
|
||||||
|
|
||||||
|
let anotherUser = await generateUser();
|
||||||
|
|
||||||
|
await expect(anotherUser.post(`/tasks/${task._id}/checklist`, {
|
||||||
|
text: 'Checklist Item 1',
|
||||||
|
ignored: false,
|
||||||
|
_id: 123,
|
||||||
|
}))
|
||||||
|
.to.eventually.be.rejected.and.eql({
|
||||||
|
code: 401,
|
||||||
|
error: 'NotAuthorized',
|
||||||
|
message: t('onlyChalLeaderEditTasks'),
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
it('adds a checklist item to a daily', async () => {
|
||||||
|
let task = await user.post(`/tasks/challenge/${challenge._id}`, {
|
||||||
|
type: 'daily',
|
||||||
|
text: 'Daily with checklist',
|
||||||
|
});
|
||||||
|
|
||||||
|
let savedTask = await user.post(`/tasks/${task._id}/checklist`, {
|
||||||
|
text: 'Checklist Item 1',
|
||||||
|
ignored: false,
|
||||||
|
_id: 123,
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(savedTask.checklist.length).to.equal(1);
|
||||||
|
expect(savedTask.checklist[0].text).to.equal('Checklist Item 1');
|
||||||
|
expect(savedTask.checklist[0].completed).to.equal(false);
|
||||||
|
expect(savedTask.checklist[0]._id).to.be.a('string');
|
||||||
|
expect(savedTask.checklist[0]._id).to.not.equal('123');
|
||||||
|
expect(savedTask.checklist[0].ignored).to.be.an('undefined');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('adds a checklist item to a todo', async () => {
|
||||||
|
let task = await user.post(`/tasks/challenge/${challenge._id}`, {
|
||||||
|
type: 'todo',
|
||||||
|
text: 'Todo with checklist',
|
||||||
|
});
|
||||||
|
|
||||||
|
let savedTask = await user.post(`/tasks/${task._id}/checklist`, {
|
||||||
|
text: 'Checklist Item 1',
|
||||||
|
ignored: false,
|
||||||
|
_id: 123,
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(savedTask.checklist.length).to.equal(1);
|
||||||
|
expect(savedTask.checklist[0].text).to.equal('Checklist Item 1');
|
||||||
|
expect(savedTask.checklist[0].completed).to.equal(false);
|
||||||
|
expect(savedTask.checklist[0]._id).to.be.a('string');
|
||||||
|
expect(savedTask.checklist[0]._id).to.not.equal('123');
|
||||||
|
expect(savedTask.checklist[0].ignored).to.be.an('undefined');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('does not add a checklist to habits', async () => {
|
||||||
|
let habit = await user.post(`/tasks/challenge/${challenge._id}`, {
|
||||||
|
type: 'habit',
|
||||||
|
text: 'habit with checklist',
|
||||||
|
});
|
||||||
|
|
||||||
|
await expect(user.post(`/tasks/${habit._id}/checklist`, {
|
||||||
|
text: 'Checklist Item 1',
|
||||||
|
})).to.eventually.be.rejected.and.eql({
|
||||||
|
code: 400,
|
||||||
|
error: 'BadRequest',
|
||||||
|
message: t('checklistOnlyDailyTodo'),
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
it('does not add a checklist to rewards', async () => {
|
||||||
|
let reward = await user.post(`/tasks/challenge/${challenge._id}`, {
|
||||||
|
type: 'reward',
|
||||||
|
text: 'reward with checklist',
|
||||||
|
});
|
||||||
|
|
||||||
|
await expect(user.post(`/tasks/${reward._id}/checklist`, {
|
||||||
|
text: 'Checklist Item 1',
|
||||||
|
})).to.eventually.be.rejected.and.eql({
|
||||||
|
code: 400,
|
||||||
|
error: 'BadRequest',
|
||||||
|
message: t('checklistOnlyDailyTodo'),
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
@@ -561,7 +561,7 @@ api.addChecklistItem = {
|
|||||||
if (!task) {
|
if (!task) {
|
||||||
throw new NotFound(res.t('taskNotFound'));
|
throw new NotFound(res.t('taskNotFound'));
|
||||||
} else if (!task.userId) { // If the task belongs to a challenge make sure the user has rights
|
} else if (!task.userId) { // If the task belongs to a challenge make sure the user has rights
|
||||||
challenge = await Challenge.find().selec({_id: task.challenge.id}).select('leader').exec();
|
challenge = await Challenge.findOne({_id: task.challenge.id}).exec();
|
||||||
if (!challenge) throw new NotFound(res.t('challengeNotFound'));
|
if (!challenge) throw new NotFound(res.t('challengeNotFound'));
|
||||||
if (challenge.leader !== user._id) throw new NotAuthorized(res.t('onlyChalLeaderEditTasks'));
|
if (challenge.leader !== user._id) throw new NotAuthorized(res.t('onlyChalLeaderEditTasks'));
|
||||||
} else if (task.userId !== user._id) { // If the task is owned by an user make it's the current one
|
} else if (task.userId !== user._id) { // If the task is owned by an user make it's the current one
|
||||||
|
|||||||
Reference in New Issue
Block a user