More api/auth tests
This commit is contained in:
@ -1,3 +1,42 @@
|
|||||||
|
exports[`#auth.login should login with email 1`] = `
|
||||||
|
Object {
|
||||||
|
"avatarUrl": "http://example.com/avatar.png",
|
||||||
|
"id": "86fde1d4-0050-428f-9f0b-0bf77f8bdf61",
|
||||||
|
"name": "User 1",
|
||||||
|
"username": "user1"
|
||||||
|
}
|
||||||
|
`;
|
||||||
|
|
||||||
|
exports[`#auth.login should login with username 1`] = `
|
||||||
|
Object {
|
||||||
|
"avatarUrl": "http://example.com/avatar.png",
|
||||||
|
"id": "86fde1d4-0050-428f-9f0b-0bf77f8bdf61",
|
||||||
|
"name": "User 1",
|
||||||
|
"username": "user1"
|
||||||
|
}
|
||||||
|
`;
|
||||||
|
|
||||||
|
exports[`#auth.login should require either username or email 1`] = `
|
||||||
|
Object {
|
||||||
|
"error": "username or email is required",
|
||||||
|
"ok": false
|
||||||
|
}
|
||||||
|
`;
|
||||||
|
|
||||||
|
exports[`#auth.login should require password 1`] = `
|
||||||
|
Object {
|
||||||
|
"error": "password is required",
|
||||||
|
"ok": false
|
||||||
|
}
|
||||||
|
`;
|
||||||
|
|
||||||
|
exports[`#auth.login should validate password 1`] = `
|
||||||
|
Object {
|
||||||
|
"error": "Invalid password",
|
||||||
|
"ok": false
|
||||||
|
}
|
||||||
|
`;
|
||||||
|
|
||||||
exports[`#auth.signup should require params 1`] = `
|
exports[`#auth.signup should require params 1`] = `
|
||||||
Object {
|
Object {
|
||||||
"error": "name is required",
|
"error": "name is required",
|
||||||
@ -25,42 +64,3 @@ Object {
|
|||||||
"ok": false
|
"ok": false
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|
||||||
exports[`#login should login with email 1`] = `
|
|
||||||
Object {
|
|
||||||
"avatarUrl": "http://example.com/avatar.png",
|
|
||||||
"id": "86fde1d4-0050-428f-9f0b-0bf77f8bdf61",
|
|
||||||
"name": "User 1",
|
|
||||||
"username": "user1"
|
|
||||||
}
|
|
||||||
`;
|
|
||||||
|
|
||||||
exports[`#login should login with username 1`] = `
|
|
||||||
Object {
|
|
||||||
"avatarUrl": "http://example.com/avatar.png",
|
|
||||||
"id": "86fde1d4-0050-428f-9f0b-0bf77f8bdf61",
|
|
||||||
"name": "User 1",
|
|
||||||
"username": "user1"
|
|
||||||
}
|
|
||||||
`;
|
|
||||||
|
|
||||||
exports[`#login should require either username or email 1`] = `
|
|
||||||
Object {
|
|
||||||
"error": "username or email is required",
|
|
||||||
"ok": false
|
|
||||||
}
|
|
||||||
`;
|
|
||||||
|
|
||||||
exports[`#login should require password 1`] = `
|
|
||||||
Object {
|
|
||||||
"error": "password is required",
|
|
||||||
"ok": false
|
|
||||||
}
|
|
||||||
`;
|
|
||||||
|
|
||||||
exports[`#login should validate password 1`] = `
|
|
||||||
Object {
|
|
||||||
"error": "Invalid password",
|
|
||||||
"ok": false
|
|
||||||
}
|
|
||||||
`;
|
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
exports[`test should require authentication 1`] = `
|
exports[`#user.info should require authentication 1`] = `
|
||||||
Object {
|
Object {
|
||||||
"error": "Authentication required",
|
"error": "Authentication required",
|
||||||
"ok": false
|
"ok": false
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|
||||||
exports[`test should return known user 1`] = `
|
exports[`#user.info should return known user 1`] = `
|
||||||
Object {
|
Object {
|
||||||
"data": Object {
|
"data": Object {
|
||||||
"avatarUrl": "http://example.com/avatar.png",
|
"avatarUrl": "http://example.com/avatar.png",
|
||||||
|
@ -86,7 +86,7 @@ describe('#auth.signup', async () => {
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
describe('#login', () => {
|
describe('#auth.login', () => {
|
||||||
test('should login with email', async () => {
|
test('should login with email', async () => {
|
||||||
await seed();
|
await seed();
|
||||||
const res = await server.post('/api/auth.login', {
|
const res = await server.post('/api/auth.login', {
|
||||||
|
@ -11,28 +11,30 @@ beforeEach(flushdb);
|
|||||||
afterAll(() => server.close());
|
afterAll(() => server.close());
|
||||||
afterAll(() => sequelize.close());
|
afterAll(() => sequelize.close());
|
||||||
|
|
||||||
it('should return known user', async () => {
|
describe('#user.info', async () => {
|
||||||
await seed();
|
it('should return known user', async () => {
|
||||||
const user = await User.findOne({
|
await seed();
|
||||||
where: {
|
const user = await User.findOne({
|
||||||
email: 'user1@example.com',
|
where: {
|
||||||
},
|
email: 'user1@example.com',
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
const res = await server.post('/api/user.info', {
|
||||||
|
body: { token: user.getJwtToken() },
|
||||||
|
});
|
||||||
|
const body = await res.json();
|
||||||
|
|
||||||
|
expect(res.status).toEqual(200);
|
||||||
|
expect(body).toMatchSnapshot();
|
||||||
});
|
});
|
||||||
|
|
||||||
const res = await server.post('/api/user.info', {
|
it('should require authentication', async () => {
|
||||||
body: { token: user.getJwtToken() },
|
await seed();
|
||||||
|
const res = await server.post('/api/user.info');
|
||||||
|
const body = await res.json();
|
||||||
|
|
||||||
|
expect(res.status).toEqual(401);
|
||||||
|
expect(body).toMatchSnapshot();
|
||||||
});
|
});
|
||||||
const body = await res.json();
|
|
||||||
|
|
||||||
expect(res.status).toEqual(200);
|
|
||||||
expect(body).toMatchSnapshot();
|
|
||||||
});
|
|
||||||
|
|
||||||
it('should require authentication', async () => {
|
|
||||||
await seed();
|
|
||||||
const res = await server.post('/api/user.info');
|
|
||||||
const body = await res.json();
|
|
||||||
|
|
||||||
expect(res.status).toEqual(401);
|
|
||||||
expect(body).toMatchSnapshot();
|
|
||||||
});
|
});
|
||||||
|
Reference in New Issue
Block a user