mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-10-29 20:24:53 +01:00
* refactor: Move translate test utility to helpers directory * Add kind property to webhooks * feat: Add options to create webhook route * refactor: Move webhook ops into single file * refactor: Create webhook objects for specific webhook behavior * chore(tests): Add default sleep helper value of 1 second * feat(api): Add method for groups to send out webhook * feat(api): Add taskCreated webhook task creation * feat(api): Send chat webhooks after a chat is sent * refactor: Move webhook routes to own controller * lint: Correct linting errors * fix(api): Correct taskCreated webhook method * fix(api): Fix webhook logging to only log when there is an error * fix: Update groupChatRecieved webhook creation * chore: Add integration tests for webhooks * fix: Set webhook creation response to 201 * fix: Correct how task scored webhook data is sent * Revert group chat recieved webhook to only support one group * Remove quest activity option for webhooks * feat: Send webhook for each task created * feat: Allow webhooks without a type to default to taskScored * feat: Add logic for adding ids to webhook * feat: optimize webhook url check by shortcircuiting if no url is passed * refactor: Use full name for webhook variable * feat: Add missing params to client webhook * lint: Add missing semicolon * chore(tests): Fix inccorect webhook tests * chore: Add migration to update task scored webhooks * feat: Allow default value of webhook add route to be enabled * chore: Update webhook documentation * chore: Remove special handling for v2 * refactor: adjust addComputedStatsToJSONObject to work for webhooks * refactor: combine taskScored and taskActivity webhooks * feat(api): Add task activity to task update and delete routes * chore: Change references to taskScored to taskActivity * fix: Correct stats object being passed in for transform * chore: Remove extra line break * fix: Pass in the language to use for the translations * refactor(api): Move webhooks from user.preferences.webhooks to user.webhooks * chore: Update migration to set webhook array * lint: Correct brace spacing * chore: convert webhook lib to use user.webhooks * refactor(api): Consolidate filters * chore: clarify migration instructions * fix(test): Correct user creation in user anonymized tests * chore: add test that webhooks cannot be updated via PUT /user * refactor: Simplify default webhook id value * refactor(client): Push newly created webhook instead of doing a sync * chore(test): Add test file for webhook model * refactor: Remove webhook validation * refactor: Remove need for watch on webhooks * refactor(client): Update webhooks object without syncing * chore: update webhook documentation * Fix migrations issues * chore: remove v2 test helper * fix(api): Provide webhook type in task scored webhook * fix(client): Fix webhook deletion appearing to delete all webhooks * feat(api): add optional label field for webhooks * feat: provide empty string as default for webhook label * chore: Update webhook migration * chore: update webhook migration name
732 lines
21 KiB
JavaScript
732 lines
21 KiB
JavaScript
import {
|
|
generateUser,
|
|
sleep,
|
|
translate as t,
|
|
server,
|
|
} from '../../../../helpers/api-v3-integration.helper';
|
|
import { v4 as generateUUID } from 'uuid';
|
|
|
|
describe('POST /tasks/user', () => {
|
|
let user;
|
|
|
|
beforeEach(async () => {
|
|
user = await generateUser();
|
|
});
|
|
|
|
context('validates params', async () => {
|
|
it('returns an error if req.body.type is absent', async () => {
|
|
await expect(user.post('/tasks/user', {
|
|
notType: 'habit',
|
|
})).to.eventually.be.rejected.and.eql({
|
|
code: 400,
|
|
error: 'BadRequest',
|
|
message: t('invalidTaskType'),
|
|
});
|
|
});
|
|
|
|
it('returns an error if req.body.type is not valid', async () => {
|
|
await expect(user.post('/tasks/user', {
|
|
type: 'habitF',
|
|
})).to.eventually.be.rejected.and.eql({
|
|
code: 400,
|
|
error: 'BadRequest',
|
|
message: t('invalidTaskType'),
|
|
});
|
|
});
|
|
|
|
it('returns an error if one object inside an array is invalid', async () => {
|
|
await expect(user.post('/tasks/user', [
|
|
{type: 'habitF'},
|
|
{type: 'habit'},
|
|
])).to.eventually.be.rejected.and.eql({
|
|
code: 400,
|
|
error: 'BadRequest',
|
|
message: t('invalidTaskType'),
|
|
});
|
|
});
|
|
|
|
it('returns an error if req.body.text is absent', async () => {
|
|
await expect(user.post('/tasks/user', {
|
|
type: 'habit',
|
|
})).to.eventually.be.rejected.and.eql({
|
|
code: 400,
|
|
error: 'BadRequest',
|
|
message: 'habit validation failed',
|
|
});
|
|
});
|
|
|
|
it('does not update user.tasksOrder.{taskType} when the task is not saved because invalid', async () => {
|
|
let originalHabitsOrder = (await user.get('/user')).tasksOrder.habits;
|
|
await expect(user.post('/tasks/user', {
|
|
type: 'habit',
|
|
})).to.eventually.be.rejected.and.eql({
|
|
code: 400,
|
|
error: 'BadRequest',
|
|
message: 'habit validation failed',
|
|
});
|
|
|
|
let updatedHabitsOrder = (await user.get('/user')).tasksOrder.habits;
|
|
expect(updatedHabitsOrder).to.eql(originalHabitsOrder);
|
|
});
|
|
|
|
it('does not update user.tasksOrder.{taskType} when a task inside an array is not saved because invalid', async () => {
|
|
let originalHabitsOrder = (await user.get('/user')).tasksOrder.habits;
|
|
await expect(user.post('/tasks/user', [
|
|
{type: 'habit'}, // Missing text
|
|
{type: 'habit', text: 'valid'}, // Valid
|
|
])).to.eventually.be.rejected.and.eql({
|
|
code: 400,
|
|
error: 'BadRequest',
|
|
message: 'habit validation failed',
|
|
});
|
|
|
|
let updatedHabitsOrder = (await user.get('/user')).tasksOrder.habits;
|
|
expect(updatedHabitsOrder).to.eql(originalHabitsOrder);
|
|
});
|
|
|
|
it('does not save any task sent in an array when 1 is invalid', async () => {
|
|
let originalTasks = await user.get('/tasks/user');
|
|
await expect(user.post('/tasks/user', [
|
|
{type: 'habit'}, // Missing text
|
|
{type: 'habit', text: 'valid'}, // Valid
|
|
])).to.eventually.be.rejected.and.eql({
|
|
code: 400,
|
|
error: 'BadRequest',
|
|
message: 'habit validation failed',
|
|
}).then(async () => {
|
|
let updatedTasks = await user.get('/tasks/user');
|
|
|
|
expect(updatedTasks).to.eql(originalTasks);
|
|
});
|
|
});
|
|
|
|
it('automatically sets "task.userId" to user\'s uuid', async () => {
|
|
let task = await user.post('/tasks/user', {
|
|
text: 'test habit',
|
|
type: 'habit',
|
|
});
|
|
|
|
expect(task.userId).to.equal(user._id);
|
|
});
|
|
|
|
it(`ignores setting userId, history, createdAt,
|
|
updatedAt, challenge, completed,
|
|
dateCompleted fields`, async () => {
|
|
let task = await user.post('/tasks/user', {
|
|
text: 'test daily',
|
|
type: 'daily',
|
|
userId: 123,
|
|
history: [123],
|
|
createdAt: 'yesterday',
|
|
updatedAt: 'tomorrow',
|
|
challenge: 'no',
|
|
completed: true,
|
|
dateCompleted: 'never',
|
|
value: 324, // ignored because not a reward
|
|
});
|
|
|
|
expect(task.userId).to.equal(user._id);
|
|
expect(task.history).to.eql([]);
|
|
expect(task.createdAt).not.to.equal('yesterday');
|
|
expect(task.updatedAt).not.to.equal('tomorrow');
|
|
expect(task.challenge).not.to.equal('no');
|
|
expect(task.completed).to.equal(false);
|
|
expect(task.streak).not.to.equal('never');
|
|
expect(task.value).not.to.equal(324);
|
|
});
|
|
|
|
it('ignores invalid fields', async () => {
|
|
let task = await user.post('/tasks/user', {
|
|
text: 'test daily',
|
|
type: 'daily',
|
|
notValid: true,
|
|
});
|
|
|
|
expect(task).not.to.have.property('notValid');
|
|
});
|
|
|
|
it('errors if alias already exists on another task', async () => {
|
|
await user.post('/tasks/user', { // first task that will succeed
|
|
type: 'habit',
|
|
text: 'todo text',
|
|
alias: 'alias',
|
|
});
|
|
|
|
await expect(user.post('/tasks/user', {
|
|
type: 'todo',
|
|
text: 'todo text',
|
|
alias: 'alias',
|
|
})).to.eventually.be.rejected.and.eql({
|
|
code: 400,
|
|
error: 'BadRequest',
|
|
message: 'todo validation failed',
|
|
});
|
|
});
|
|
|
|
it('errors if alias contains invalid values', async () => {
|
|
await expect(user.post('/tasks/user', {
|
|
type: 'todo',
|
|
text: 'todo text',
|
|
alias: 'short name!',
|
|
})).to.eventually.be.rejected.and.eql({
|
|
code: 400,
|
|
error: 'BadRequest',
|
|
message: 'todo validation failed',
|
|
});
|
|
});
|
|
|
|
it('errors if alias is a valid uuid', async () => {
|
|
await expect(user.post('/tasks/user', {
|
|
type: 'todo',
|
|
text: 'todo text',
|
|
alias: generateUUID(),
|
|
})).to.eventually.be.rejected.and.eql({
|
|
code: 400,
|
|
error: 'BadRequest',
|
|
message: 'todo validation failed',
|
|
});
|
|
});
|
|
|
|
it('errors if the same shortname is used on 2 or more tasks', async () => {
|
|
await expect(user.post('/tasks/user', [{
|
|
type: 'habit',
|
|
text: 'habit text',
|
|
alias: 'alias',
|
|
}, {
|
|
type: 'todo',
|
|
text: 'todo text',
|
|
}, {
|
|
type: 'todo',
|
|
text: 'todo text',
|
|
alias: 'alias',
|
|
}])).to.eventually.be.rejected.and.eql({
|
|
code: 400,
|
|
error: 'BadRequest',
|
|
message: t('taskAliasAlreadyUsed'),
|
|
});
|
|
});
|
|
});
|
|
|
|
context('sending task activity webhooks', () => {
|
|
before(async () => {
|
|
await server.start();
|
|
});
|
|
|
|
after(async () => {
|
|
await server.close();
|
|
});
|
|
|
|
it('sends task activity webhooks', async () => {
|
|
let uuid = generateUUID();
|
|
|
|
await user.post('/user/webhook', {
|
|
url: `http://localhost:${server.port}/webhooks/${uuid}`,
|
|
type: 'taskActivity',
|
|
enabled: true,
|
|
options: {
|
|
created: true,
|
|
},
|
|
});
|
|
|
|
let task = await user.post('/tasks/user', {
|
|
text: 'test habit',
|
|
type: 'habit',
|
|
});
|
|
|
|
await sleep();
|
|
|
|
let body = server.getWebhookData(uuid);
|
|
|
|
expect(body.task).to.eql(task);
|
|
});
|
|
|
|
it('sends a task activity webhook for each task', async () => {
|
|
let uuid = generateUUID();
|
|
|
|
await user.post('/user/webhook', {
|
|
url: `http://localhost:${server.port}/webhooks/${uuid}`,
|
|
type: 'taskActivity',
|
|
enabled: true,
|
|
options: {
|
|
created: true,
|
|
},
|
|
});
|
|
|
|
let tasks = await user.post('/tasks/user', [{
|
|
text: 'test habit',
|
|
type: 'habit',
|
|
}, {
|
|
text: 'test todo',
|
|
type: 'todo',
|
|
}]);
|
|
|
|
await sleep();
|
|
|
|
let taskBodies = [
|
|
server.getWebhookData(uuid),
|
|
server.getWebhookData(uuid),
|
|
];
|
|
|
|
expect(taskBodies.find(body => body.task.id === tasks[0].id)).to.exist;
|
|
expect(taskBodies.find(body => body.task.id === tasks[1].id)).to.exist;
|
|
});
|
|
});
|
|
|
|
context('all types', () => {
|
|
it('can create reminders', async () => {
|
|
let id1 = generateUUID();
|
|
|
|
let task = await user.post('/tasks/user', {
|
|
text: 'test habit',
|
|
type: 'habit',
|
|
reminders: [
|
|
{id: id1, startDate: new Date(), time: new Date()},
|
|
],
|
|
});
|
|
|
|
expect(task.reminders).to.be.an('array');
|
|
expect(task.reminders.length).to.eql(1);
|
|
expect(task.reminders[0]).to.be.an('object');
|
|
expect(task.reminders[0].id).to.eql(id1);
|
|
expect(task.reminders[0].startDate).to.be.a('string'); // json doesn't have dates
|
|
expect(task.reminders[0].time).to.be.a('string');
|
|
});
|
|
|
|
it('can create a task with a alias', async () => {
|
|
let task = await user.post('/tasks/user', {
|
|
text: 'test habit',
|
|
type: 'habit',
|
|
alias: 'a_alias012',
|
|
});
|
|
|
|
expect(task.alias).to.eql('a_alias012');
|
|
});
|
|
});
|
|
|
|
context('habits', () => {
|
|
it('creates a habit', async () => {
|
|
let task = await user.post('/tasks/user', {
|
|
text: 'test habit',
|
|
type: 'habit',
|
|
up: false,
|
|
down: true,
|
|
notes: 1976,
|
|
});
|
|
|
|
expect(task.userId).to.equal(user._id);
|
|
expect(task.text).to.eql('test habit');
|
|
expect(task.notes).to.eql('1976');
|
|
expect(task.type).to.eql('habit');
|
|
expect(task.up).to.eql(false);
|
|
expect(task.down).to.eql(true);
|
|
});
|
|
|
|
it('updates user.tasksOrder.habits when a new habit is created', async () => {
|
|
let originalHabitsOrderLen = (await user.get('/user')).tasksOrder.habits.length;
|
|
let task = await user.post('/tasks/user', {
|
|
type: 'habit',
|
|
text: 'an habit',
|
|
});
|
|
|
|
let updatedUser = await user.get('/user');
|
|
expect(updatedUser.tasksOrder.habits[0]).to.eql(task._id);
|
|
expect(updatedUser.tasksOrder.habits.length).to.eql(originalHabitsOrderLen + 1);
|
|
});
|
|
|
|
it('updates user.tasksOrder.habits when multiple habits are created', async () => {
|
|
let originalHabitsOrderLen = (await user.get('/user')).tasksOrder.habits.length;
|
|
let [task, task2] = await user.post('/tasks/user', [{
|
|
type: 'habit',
|
|
text: 'an habit',
|
|
}, {
|
|
type: 'habit',
|
|
text: 'another habit',
|
|
}]);
|
|
|
|
let updatedUser = await user.get('/user');
|
|
expect(updatedUser.tasksOrder.habits[0]).to.eql(task2._id);
|
|
expect(updatedUser.tasksOrder.habits[1]).to.eql(task._id);
|
|
expect(updatedUser.tasksOrder.habits.length).to.eql(originalHabitsOrderLen + 2);
|
|
});
|
|
|
|
it('creates multiple habits', async () => {
|
|
let [task, task2] = await user.post('/tasks/user', [{
|
|
text: 'test habit',
|
|
type: 'habit',
|
|
up: false,
|
|
down: true,
|
|
notes: 1976,
|
|
}, {
|
|
text: 'test habit 2',
|
|
type: 'habit',
|
|
up: true,
|
|
down: false,
|
|
notes: 1977,
|
|
}]);
|
|
|
|
expect(task.userId).to.equal(user._id);
|
|
expect(task.text).to.eql('test habit');
|
|
expect(task.notes).to.eql('1976');
|
|
expect(task.type).to.eql('habit');
|
|
expect(task.up).to.eql(false);
|
|
expect(task.down).to.eql(true);
|
|
|
|
expect(task2.userId).to.equal(user._id);
|
|
expect(task2.text).to.eql('test habit 2');
|
|
expect(task2.notes).to.eql('1977');
|
|
expect(task2.type).to.eql('habit');
|
|
expect(task2.up).to.eql(true);
|
|
expect(task2.down).to.eql(false);
|
|
});
|
|
|
|
it('defaults to setting up and down to true', async () => {
|
|
let task = await user.post('/tasks/user', {
|
|
text: 'test habit',
|
|
type: 'habit',
|
|
notes: 1976,
|
|
});
|
|
|
|
expect(task.up).to.eql(true);
|
|
expect(task.down).to.eql(true);
|
|
});
|
|
|
|
it('cannot create checklists', async () => {
|
|
let task = await user.post('/tasks/user', {
|
|
text: 'test habit',
|
|
type: 'habit',
|
|
checklist: [
|
|
{_id: 123, completed: false, text: 'checklist'},
|
|
],
|
|
});
|
|
|
|
expect(task).not.to.have.property('checklist');
|
|
});
|
|
});
|
|
|
|
context('todos', () => {
|
|
it('creates a todo', async () => {
|
|
let task = await user.post('/tasks/user', {
|
|
text: 'test todo',
|
|
type: 'todo',
|
|
notes: 1976,
|
|
});
|
|
|
|
expect(task.userId).to.equal(user._id);
|
|
expect(task.text).to.eql('test todo');
|
|
expect(task.notes).to.eql('1976');
|
|
expect(task.type).to.eql('todo');
|
|
});
|
|
|
|
it('creates multiple todos', async () => {
|
|
let [task, task2] = await user.post('/tasks/user', [{
|
|
text: 'test todo',
|
|
type: 'todo',
|
|
notes: 1976,
|
|
}, {
|
|
text: 'test todo 2',
|
|
type: 'todo',
|
|
notes: 1977,
|
|
}]);
|
|
|
|
expect(task.userId).to.equal(user._id);
|
|
expect(task.text).to.eql('test todo');
|
|
expect(task.notes).to.eql('1976');
|
|
expect(task.type).to.eql('todo');
|
|
|
|
expect(task2.userId).to.equal(user._id);
|
|
expect(task2.text).to.eql('test todo 2');
|
|
expect(task2.notes).to.eql('1977');
|
|
expect(task2.type).to.eql('todo');
|
|
});
|
|
|
|
it('updates user.tasksOrder.todos when a new todo is created', async () => {
|
|
let originalTodosOrderLen = (await user.get('/user')).tasksOrder.todos.length;
|
|
let task = await user.post('/tasks/user', {
|
|
type: 'todo',
|
|
text: 'a todo',
|
|
});
|
|
|
|
let updatedUser = await user.get('/user');
|
|
expect(updatedUser.tasksOrder.todos[0]).to.eql(task._id);
|
|
expect(updatedUser.tasksOrder.todos.length).to.eql(originalTodosOrderLen + 1);
|
|
});
|
|
|
|
it('updates user.tasksOrder.todos when multiple todos are created', async () => {
|
|
let originalTodosOrderLen = (await user.get('/user')).tasksOrder.todos.length;
|
|
let [task, task2] = await user.post('/tasks/user', [{
|
|
type: 'todo',
|
|
text: 'a todo',
|
|
}, {
|
|
type: 'todo',
|
|
text: 'another todo',
|
|
}]);
|
|
|
|
let updatedUser = await user.get('/user');
|
|
expect(updatedUser.tasksOrder.todos[0]).to.eql(task2._id);
|
|
expect(updatedUser.tasksOrder.todos[1]).to.eql(task._id);
|
|
expect(updatedUser.tasksOrder.todos.length).to.eql(originalTodosOrderLen + 2);
|
|
});
|
|
|
|
it('can create checklists', async () => {
|
|
let task = await user.post('/tasks/user', {
|
|
text: 'test todo',
|
|
type: 'todo',
|
|
checklist: [
|
|
{completed: false, text: 'checklist'},
|
|
],
|
|
});
|
|
|
|
expect(task.checklist).to.be.an('array');
|
|
expect(task.checklist.length).to.eql(1);
|
|
expect(task.checklist[0]).to.be.an('object');
|
|
expect(task.checklist[0].text).to.eql('checklist');
|
|
expect(task.checklist[0].completed).to.eql(false);
|
|
expect(task.checklist[0].id).to.be.a('string');
|
|
});
|
|
});
|
|
|
|
context('dailys', () => {
|
|
it('creates a daily', async () => {
|
|
let now = new Date();
|
|
|
|
let task = await user.post('/tasks/user', {
|
|
text: 'test daily',
|
|
type: 'daily',
|
|
notes: 1976,
|
|
frequency: 'daily',
|
|
everyX: 5,
|
|
startDate: now,
|
|
});
|
|
|
|
expect(task.userId).to.equal(user._id);
|
|
expect(task.text).to.eql('test daily');
|
|
expect(task.notes).to.eql('1976');
|
|
expect(task.type).to.eql('daily');
|
|
expect(task.frequency).to.eql('daily');
|
|
expect(task.everyX).to.eql(5);
|
|
expect(new Date(task.startDate)).to.eql(now);
|
|
});
|
|
|
|
it('creates multiple dailys', async () => {
|
|
let [task, task2] = await user.post('/tasks/user', [{
|
|
text: 'test daily',
|
|
type: 'daily',
|
|
notes: 1976,
|
|
}, {
|
|
text: 'test daily 2',
|
|
type: 'daily',
|
|
notes: 1977,
|
|
}]);
|
|
|
|
expect(task.userId).to.equal(user._id);
|
|
expect(task.text).to.eql('test daily');
|
|
expect(task.notes).to.eql('1976');
|
|
expect(task.type).to.eql('daily');
|
|
|
|
expect(task2.userId).to.equal(user._id);
|
|
expect(task2.text).to.eql('test daily 2');
|
|
expect(task2.notes).to.eql('1977');
|
|
expect(task2.type).to.eql('daily');
|
|
});
|
|
|
|
it('updates user.tasksOrder.dailys when a new daily is created', async () => {
|
|
let originalDailysOrderLen = (await user.get('/user')).tasksOrder.dailys.length;
|
|
let task = await user.post('/tasks/user', {
|
|
type: 'daily',
|
|
text: 'a daily',
|
|
});
|
|
|
|
let updatedUser = await user.get('/user');
|
|
expect(updatedUser.tasksOrder.dailys[0]).to.eql(task._id);
|
|
expect(updatedUser.tasksOrder.dailys.length).to.eql(originalDailysOrderLen + 1);
|
|
});
|
|
|
|
it('updates user.tasksOrder.dailys when multiple dailys are created', async () => {
|
|
let originalDailysOrderLen = (await user.get('/user')).tasksOrder.dailys.length;
|
|
let [task, task2] = await user.post('/tasks/user', [{
|
|
type: 'daily',
|
|
text: 'a daily',
|
|
}, {
|
|
type: 'daily',
|
|
text: 'another daily',
|
|
}]);
|
|
|
|
let updatedUser = await user.get('/user');
|
|
expect(updatedUser.tasksOrder.dailys[0]).to.eql(task2._id);
|
|
expect(updatedUser.tasksOrder.dailys[1]).to.eql(task._id);
|
|
expect(updatedUser.tasksOrder.dailys.length).to.eql(originalDailysOrderLen + 2);
|
|
});
|
|
|
|
it('defaults to a weekly frequency, with every day set', async () => {
|
|
let task = await user.post('/tasks/user', {
|
|
text: 'test daily',
|
|
type: 'daily',
|
|
});
|
|
|
|
expect(task.frequency).to.eql('weekly');
|
|
expect(task.everyX).to.eql(1);
|
|
expect(task.repeat).to.eql({
|
|
m: true,
|
|
t: true,
|
|
w: true,
|
|
th: true,
|
|
f: true,
|
|
s: true,
|
|
su: true,
|
|
});
|
|
});
|
|
|
|
it('allows repeat field to be configured', async () => {
|
|
let task = await user.post('/tasks/user', {
|
|
text: 'test daily',
|
|
type: 'daily',
|
|
repeat: {
|
|
m: false,
|
|
w: false,
|
|
su: false,
|
|
},
|
|
});
|
|
|
|
expect(task.repeat).to.eql({
|
|
m: false,
|
|
t: true,
|
|
w: false,
|
|
th: true,
|
|
f: true,
|
|
s: true,
|
|
su: false,
|
|
});
|
|
});
|
|
|
|
it('defaults startDate to today', async () => {
|
|
let today = (new Date()).getDay();
|
|
|
|
let task = await user.post('/tasks/user', {
|
|
text: 'test daily',
|
|
type: 'daily',
|
|
});
|
|
|
|
expect((new Date(task.startDate)).getDay()).to.eql(today);
|
|
});
|
|
|
|
it('can create checklists', async () => {
|
|
let task = await user.post('/tasks/user', {
|
|
text: 'test daily',
|
|
type: 'daily',
|
|
checklist: [
|
|
{completed: false, text: 'checklist'},
|
|
],
|
|
});
|
|
|
|
expect(task.checklist).to.be.an('array');
|
|
expect(task.checklist.length).to.eql(1);
|
|
expect(task.checklist[0]).to.be.an('object');
|
|
expect(task.checklist[0].text).to.eql('checklist');
|
|
expect(task.checklist[0].completed).to.eql(false);
|
|
expect(task.checklist[0].id).to.be.a('string');
|
|
});
|
|
});
|
|
|
|
context('rewards', () => {
|
|
it('creates a reward', async () => {
|
|
let task = await user.post('/tasks/user', {
|
|
text: 'test reward',
|
|
type: 'reward',
|
|
notes: 1976,
|
|
value: 10,
|
|
});
|
|
|
|
expect(task.userId).to.equal(user._id);
|
|
expect(task.text).to.eql('test reward');
|
|
expect(task.notes).to.eql('1976');
|
|
expect(task.type).to.eql('reward');
|
|
expect(task.value).to.eql(10);
|
|
});
|
|
|
|
it('creates multiple rewards', async () => {
|
|
let [task, task2] = await user.post('/tasks/user', [{
|
|
text: 'test reward',
|
|
type: 'reward',
|
|
notes: 1976,
|
|
value: 11,
|
|
}, {
|
|
text: 'test reward 2',
|
|
type: 'reward',
|
|
notes: 1977,
|
|
value: 12,
|
|
}]);
|
|
|
|
expect(task.userId).to.equal(user._id);
|
|
expect(task.text).to.eql('test reward');
|
|
expect(task.notes).to.eql('1976');
|
|
expect(task.type).to.eql('reward');
|
|
expect(task.value).to.eql(11);
|
|
|
|
expect(task2.userId).to.equal(user._id);
|
|
expect(task2.text).to.eql('test reward 2');
|
|
expect(task2.notes).to.eql('1977');
|
|
expect(task2.type).to.eql('reward');
|
|
expect(task2.value).to.eql(12);
|
|
});
|
|
|
|
it('updates user.tasksOrder.rewards when a new reward is created', async () => {
|
|
let originalRewardsOrderLen = (await user.get('/user')).tasksOrder.rewards.length;
|
|
let task = await user.post('/tasks/user', {
|
|
type: 'reward',
|
|
text: 'a reward',
|
|
});
|
|
|
|
let updatedUser = await user.get('/user');
|
|
expect(updatedUser.tasksOrder.rewards[0]).to.eql(task._id);
|
|
expect(updatedUser.tasksOrder.rewards.length).to.eql(originalRewardsOrderLen + 1);
|
|
});
|
|
|
|
it('updates user.tasksOrder.dreward when multiple rewards are created', async () => {
|
|
let originalRewardsOrderLen = (await user.get('/user')).tasksOrder.rewards.length;
|
|
let [task, task2] = await user.post('/tasks/user', [{
|
|
type: 'reward',
|
|
text: 'a reward',
|
|
}, {
|
|
type: 'reward',
|
|
text: 'another reward',
|
|
}]);
|
|
|
|
let updatedUser = await user.get('/user');
|
|
expect(updatedUser.tasksOrder.rewards[0]).to.eql(task2._id);
|
|
expect(updatedUser.tasksOrder.rewards[1]).to.eql(task._id);
|
|
expect(updatedUser.tasksOrder.rewards.length).to.eql(originalRewardsOrderLen + 2);
|
|
});
|
|
|
|
it('defaults to a 0 value', async () => {
|
|
let task = await user.post('/tasks/user', {
|
|
text: 'test reward',
|
|
type: 'reward',
|
|
});
|
|
|
|
expect(task.value).to.eql(0);
|
|
});
|
|
|
|
it('requires value to be coerced into a number', async () => {
|
|
let task = await user.post('/tasks/user', {
|
|
text: 'test reward',
|
|
type: 'reward',
|
|
value: '10',
|
|
});
|
|
|
|
expect(task.value).to.eql(10);
|
|
});
|
|
|
|
it('cannot create checklists', async () => {
|
|
let task = await user.post('/tasks/user', {
|
|
text: 'test reward',
|
|
type: 'reward',
|
|
checklist: [
|
|
{_id: 123, completed: false, text: 'checklist'},
|
|
],
|
|
});
|
|
|
|
expect(task).not.to.have.property('checklist');
|
|
});
|
|
});
|
|
});
|