mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-16 14:17:22 +01:00
* throw a 401 error if user tries to update his/her email to an email that exists already * Make error message generic so we don't violate users' privacy. Added test case. * Syntax fixes * select only the _id field when searching for users with the same email. Return found document as javascript object.
91 lines
2.6 KiB
JavaScript
91 lines
2.6 KiB
JavaScript
import {
|
|
generateUser,
|
|
translate as t,
|
|
} from '../../../../../helpers/api-v3-integration.helper';
|
|
|
|
const ENDPOINT = '/user/auth/update-email';
|
|
|
|
describe('PUT /user/auth/update-email', () => {
|
|
let newEmail = 'some-new-email_2@example.net';
|
|
let oldPassword = 'password'; // from habitrpg/test/helpers/api-integration/v3/object-generators.js
|
|
|
|
context('Local Authenticaion User', async () => {
|
|
let user;
|
|
|
|
beforeEach(async () => {
|
|
user = await generateUser();
|
|
});
|
|
|
|
it('does not change email if email is not provided', async () => {
|
|
await expect(user.put(ENDPOINT)).to.eventually.be.rejected.and.eql({
|
|
code: 400,
|
|
error: 'BadRequest',
|
|
message: t('invalidReqParams'),
|
|
});
|
|
});
|
|
|
|
it('does not change email if password is not provided', async () => {
|
|
await expect(user.put(ENDPOINT, {
|
|
newEmail,
|
|
})).to.eventually.be.rejected.and.eql({
|
|
code: 400,
|
|
error: 'BadRequest',
|
|
message: t('invalidReqParams'),
|
|
});
|
|
});
|
|
|
|
it('does not change email if wrong password is provided', async () => {
|
|
await expect(user.put(ENDPOINT, {
|
|
newEmail,
|
|
password: 'wrong password',
|
|
})).to.eventually.be.rejected.and.eql({
|
|
code: 401,
|
|
error: 'NotAuthorized',
|
|
message: t('wrongPassword'),
|
|
});
|
|
});
|
|
|
|
it('changes email if new email and existing password are provided', async () => {
|
|
let response = await user.put(ENDPOINT, {
|
|
newEmail,
|
|
password: oldPassword,
|
|
});
|
|
expect(response).to.eql({ email: 'some-new-email_2@example.net' });
|
|
|
|
await user.sync();
|
|
expect(user.auth.local.email).to.eql(newEmail);
|
|
});
|
|
|
|
it('rejects if email is already taken', async () => {
|
|
await expect(user.put(ENDPOINT, {
|
|
newEmail: user.auth.local.email,
|
|
password: oldPassword,
|
|
})).to.eventually.be.rejected.and.eql({
|
|
code: 401,
|
|
error: 'NotAuthorized',
|
|
message: t('cannotFulfillReq'),
|
|
});
|
|
});
|
|
});
|
|
|
|
context('Social Login User', async () => {
|
|
let socialUser;
|
|
|
|
beforeEach(async () => {
|
|
socialUser = await generateUser();
|
|
await socialUser.update({ 'auth.local': { ok: true } });
|
|
});
|
|
|
|
it('does not change email if user.auth.local.email does not exist for this user', async () => {
|
|
await expect(socialUser.put(ENDPOINT, {
|
|
newEmail,
|
|
password: oldPassword,
|
|
})).to.eventually.be.rejected.and.eql({
|
|
code: 400,
|
|
error: 'BadRequest',
|
|
message: t('userHasNoLocalRegistration'),
|
|
});
|
|
});
|
|
});
|
|
});
|