adapt v2: getTask, getTasks, clearCompleted, addTask, deleteTask, getUser, getUserAnonymized, scoreTask (challenge part missing)

This commit is contained in:
Matteo Pagliazzi
2016-04-03 19:03:11 +02:00
parent 58c20c2a64
commit cc65bb1ed7
11 changed files with 309 additions and 160 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ import {
generateUser,
} from '../../../helpers/api-integration/v2';
xdescribe('GET /user', () => {
describe('GET /user', () => {
let user;
before(async () => {
@@ -3,7 +3,7 @@ import {
} from '../../../../helpers/api-integration/v2';
import { each } from 'lodash';
xdescribe('GET /user/anonymized', () => {
describe('GET /user/anonymized', () => {
let user, anonymizedUser;
before(async () => {
@@ -3,7 +3,7 @@ import {
translate as t,
} from '../../../../helpers/api-integration/v2';
xdescribe('DELETE /user/tasks/:id', () => {
describe('DELETE /user/tasks/:id', () => {
let user, task;
beforeEach(async () => {
+3 -10
View File
@@ -2,18 +2,11 @@ import {
generateUser,
} from '../../../../helpers/api-integration/v2';
xdescribe('GET /user/tasks/', () => {
describe('GET /user/tasks/', () => {
let user;
beforeEach(async () => {
return generateUser({
dailys: [
{text: 'daily', type: 'daily'},
{text: 'daily', type: 'daily'},
{text: 'daily', type: 'daily'},
{text: 'daily', type: 'daily'},
],
}).then((_user) => {
return generateUser().then((_user) => {
user = _user;
});
});
@@ -21,7 +14,7 @@ xdescribe('GET /user/tasks/', () => {
it('gets all tasks', async () => {
return user.get(`/user/tasks/`).then((tasks) => {
expect(tasks).to.be.an('array');
expect(tasks.length).to.be.greaterThan(3);
expect(tasks.length).to.equal(1)
let task = tasks[0];
expect(task.id).to.exist;
+1 -1
View File
@@ -3,7 +3,7 @@ import {
translate as t,
} from '../../../../helpers/api-integration/v2';
xdescribe('GET /user/tasks/:id', () => {
describe('GET /user/tasks/:id', () => {
let user, task;
beforeEach(async () => {
@@ -0,0 +1,26 @@
import {
generateUser,
} from '../../../../helpers/api-integration/v2';
describe.only('POST /user/tasks/clear-completed', () => {
let user;
beforeEach(async () => {
return generateUser().then((_user) => {
user = _user;
});
});
it('removes all completed todos', async () => {
let toComplete = await user.post('/user/tasks', {
type: 'todo',
text: 'done',
});
await user.post(`/user/tasks/${toComplete._id}/up`)
let todos = await user.get(`/user/tasks?type=todo`);
let uncomplete = await user.post(`/user/tasks/clear-completed`);
expect(todos.length).to.equal(uncomplete.length + 1);
});
});
+2 -2
View File
@@ -3,7 +3,7 @@ import {
translate as t,
} from '../../../../helpers/api-integration/v2';
xdescribe('POST /user/tasks', () => {
describe('POST /user/tasks', () => {
let user;
beforeEach(async () => {
@@ -35,7 +35,7 @@ xdescribe('POST /user/tasks', () => {
});
});
it('does not create a task with an id that already exists', async () => {
xit('does not create a task with an id that already exists', async () => {
let todo = user.todos[0];
return expect(user.post('/user/tasks', {