mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-13 12:47:28 +01:00
58 lines
2.1 KiB
JavaScript
58 lines
2.1 KiB
JavaScript
import {
|
|
generateUser,
|
|
translate as t,
|
|
} from '../../../../helpers/api-integration/v4';
|
|
|
|
const ENDPOINT = '/user/auth/verify-display-name';
|
|
|
|
describe('POST /user/auth/verify-display-name', async () => {
|
|
let user;
|
|
|
|
beforeEach(async () => {
|
|
user = await generateUser();
|
|
});
|
|
|
|
it('successfully verifies display name including funky characters', async () => {
|
|
let newDisplayName = 'Sabé 🤬';
|
|
let response = await user.post(ENDPOINT, {
|
|
displayName: newDisplayName,
|
|
});
|
|
expect(response).to.eql({ isUsable: true });
|
|
});
|
|
|
|
context('errors', async () => {
|
|
it('errors if display name is not provided', async () => {
|
|
await expect(user.post(ENDPOINT, {
|
|
})).to.eventually.be.rejected.and.eql({
|
|
code: 400,
|
|
error: 'BadRequest',
|
|
message: t('invalidReqParams'),
|
|
});
|
|
});
|
|
|
|
it('errors if display name is a slur', async () => {
|
|
await expect(user.post(ENDPOINT, {
|
|
displayName: 'TESTPLACEHOLDERSLURWORDHERE',
|
|
})).to.eventually.eql({ isUsable: false, issues: [t('displaynameIssueSlur')] });
|
|
});
|
|
|
|
it('errors if display name contains a slur', async () => {
|
|
await expect(user.post(ENDPOINT, {
|
|
displayName: 'TESTPLACEHOLDERSLURWORDHERE_otherword',
|
|
})).to.eventually.eql({ isUsable: false, issues: [t('displaynameIssueLength'), t('displaynameIssueSlur')] });
|
|
await expect(user.post(ENDPOINT, {
|
|
displayName: 'something_TESTPLACEHOLDERSLURWORDHERE',
|
|
})).to.eventually.eql({ isUsable: false, issues: [t('displaynameIssueLength'), t('displaynameIssueSlur')] });
|
|
await expect(user.post(ENDPOINT, {
|
|
displayName: 'somethingTESTPLACEHOLDERSLURWORDHEREotherword',
|
|
})).to.eventually.eql({ isUsable: false, issues: [t('displaynameIssueLength'), t('displaynameIssueSlur')] });
|
|
});
|
|
|
|
it('errors if display name has incorrect length', async () => {
|
|
await expect(user.post(ENDPOINT, {
|
|
displayName: 'this is a very long display name over 30 characters',
|
|
})).to.eventually.eql({ isUsable: false, issues: [t('displaynameIssueLength')] });
|
|
});
|
|
});
|
|
});
|