mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-17 06:37:23 +01:00
65 lines
1.8 KiB
JavaScript
65 lines
1.8 KiB
JavaScript
import {
|
|
generateUser,
|
|
} from '../../../../helpers/api-integration/v2';
|
|
|
|
describe('PUT /user/tasks/:id', () => {
|
|
let user, task;
|
|
|
|
beforeEach(async () => {
|
|
user = await generateUser();
|
|
task = user.todos[0];
|
|
});
|
|
|
|
it('does not update the id of the task', async () => {
|
|
return user.put(`/user/tasks/${task.id}`, {
|
|
id: 'some-thing',
|
|
}).then((updatedTask) => {
|
|
expect(updatedTask.id).to.eql(task.id);
|
|
expect(updatedTask.id).to.not.eql('some-thing');
|
|
});
|
|
});
|
|
|
|
it('does not update the type of the task', async () => {
|
|
return user.put(`/user/tasks/${task.id}`, {
|
|
type: 'habit',
|
|
}).then((updatedTask) => {
|
|
expect(updatedTask.type).to.eql(task.type);
|
|
expect(updatedTask.type).to.not.eql('habit');
|
|
});
|
|
});
|
|
|
|
it('updates text, attribute, priority and notes', async () => {
|
|
return user.put(`/user/tasks/${task.id}`, {
|
|
text: 'new text',
|
|
notes: 'new notes',
|
|
priority: 0.1,
|
|
attribute: 'str',
|
|
}).then((updatedTask) => {
|
|
expect(updatedTask.text).to.eql('new text');
|
|
expect(updatedTask.notes).to.eql('new notes');
|
|
expect(updatedTask.priority).to.eql(0.1);
|
|
expect(updatedTask.attribute).to.eql('str');
|
|
});
|
|
});
|
|
|
|
it('returns an error if the task does not exist', async () => {
|
|
return expect(user.put('/user/tasks/task-id-that-does-not-exist'))
|
|
.to.eventually.be.rejected.and.eql({
|
|
code: 404,
|
|
text: 'Task not found.',
|
|
});
|
|
});
|
|
|
|
it('does not update another user\'s task', async () => {
|
|
return expect(generateUser().then((otherUser) => {
|
|
let otherUsersTask = otherUser.todos[0];
|
|
return user.put(`/user/tasks/${otherUsersTask._id}`, {
|
|
name: 'some name',
|
|
});
|
|
})).to.eventually.be.rejected.and.eql({
|
|
code: 404,
|
|
text: 'Task not found.',
|
|
});
|
|
});
|
|
});
|