mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-20 17:32:15 +03:00
fb549645f8
no issue We weren't being consistent in our use of Mirage's `normalizedRequestAttrs()` method which meant that in certain cases Mirage's internal database had duplicated attrs, the original set being `camelCase` and the new/updated set being `underscore_case` which was not only confusing but can lead to errors or unexpected behaviour in tests. - updated Mirage config to always normalize where necessary - updated tests to always use `camelCase` attrs - added `HEAD` route handler for gravatar to avoid unknown route noise in tests
82 lines
2.4 KiB
JavaScript
82 lines
2.4 KiB
JavaScript
/* eslint-disable camelcase */
|
|
import {Response} from 'ember-cli-mirage';
|
|
import {isBlank} from '@ember/utils';
|
|
|
|
export default function mockAuthentication(server) {
|
|
server.post('/authentication/token', function () {
|
|
// Password sign-in
|
|
return {
|
|
access_token: 'MirageAccessToken',
|
|
expires_in: 172800,
|
|
refresh_token: 'MirageRefreshToken',
|
|
token_type: 'Bearer'
|
|
};
|
|
});
|
|
|
|
server.post('/authentication/passwordreset', function (schema, request) {
|
|
let {passwordreset} = JSON.parse(request.requestBody);
|
|
// eslint-disable-next-line ember-suave/prefer-destructuring
|
|
let email = passwordreset[0].email;
|
|
|
|
if (email === 'unknown@example.com') {
|
|
return new Response(404, {}, {
|
|
errors: [
|
|
{
|
|
message: 'There is no user with that email address.',
|
|
errorType: 'NotFoundError'
|
|
}
|
|
]
|
|
});
|
|
} else {
|
|
return {
|
|
passwordreset: [
|
|
{message: 'Check your email for further instructions.'}
|
|
]
|
|
};
|
|
}
|
|
});
|
|
|
|
server.get('/authentication/invitation/', function (schema, request) {
|
|
let {email} = request.queryParams;
|
|
let invite = schema.invites.findBy({email});
|
|
let user = schema.users.find(invite.createdBy);
|
|
let valid = !!invite;
|
|
let invitedBy = user && user.name;
|
|
|
|
return {
|
|
invitation: [{
|
|
valid,
|
|
invitedBy
|
|
}]
|
|
};
|
|
});
|
|
|
|
/* Setup ---------------------------------------------------------------- */
|
|
|
|
server.post('/authentication/setup', function ({roles, users}) {
|
|
let attrs = this.normalizedRequestAttrs();
|
|
let role = roles.findBy({name: 'Owner'});
|
|
|
|
// create owner role unless already exists
|
|
if (!role) {
|
|
role = roles.create({name: 'Owner'});
|
|
}
|
|
attrs.roles = [role];
|
|
|
|
if (!isBlank(attrs.email)) {
|
|
attrs.slug = attrs.email.split('@')[0].dasherize();
|
|
}
|
|
|
|
// NOTE: server does not use the user factory to fill in blank fields
|
|
return users.create(attrs);
|
|
});
|
|
|
|
server.get('/authentication/setup/', function () {
|
|
return {
|
|
setup: [
|
|
{status: true}
|
|
]
|
|
};
|
|
});
|
|
}
|