mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-14 13:17:24 +01:00
30 lines
1.2 KiB
JavaScript
30 lines
1.2 KiB
JavaScript
import {
|
|
generateUser,
|
|
} from '../../../../helpers/api-integration/v3';
|
|
|
|
describe('GET /export/userdata.json', () => {
|
|
it('should return a valid JSON file with user data', async () => {
|
|
const user = await generateUser();
|
|
const tasks = await user.post('/tasks/user', [
|
|
{ type: 'habit', text: 'habit 1' },
|
|
{ type: 'daily', text: 'daily 1' },
|
|
{ type: 'reward', text: 'reward 1' },
|
|
{ type: 'todo', text: 'todo 1' },
|
|
]);
|
|
|
|
const res = await user.get('/export/userdata.json');
|
|
expect(res._id).to.equal(user._id);
|
|
expect(res).to.contain.all.keys(['tasks', 'flags', 'tasksOrder', 'auth']);
|
|
expect(res.auth.local).not.to.have.keys(['salt', 'hashed_password']);
|
|
expect(res.tasks).to.have.all.keys(['dailys', 'habits', 'todos', 'rewards']);
|
|
expect(res.tasks.habits.length).to.equal(1);
|
|
expect(res.tasks.habits[0]._id).to.equal(tasks[0]._id);
|
|
expect(res.tasks.dailys.length).to.equal(1);
|
|
expect(res.tasks.dailys[0]._id).to.equal(tasks[1]._id);
|
|
expect(res.tasks.rewards.length).to.equal(1);
|
|
expect(res.tasks.rewards[0]._id).to.equal(tasks[2]._id);
|
|
expect(res.tasks.todos.length).to.equal(2);
|
|
expect(res.tasks.todos[1]._id).to.equal(tasks[3]._id);
|
|
});
|
|
});
|