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
83 lines
2.9 KiB
JavaScript
83 lines
2.9 KiB
JavaScript
import mockAuthentication from './config/authentication';
|
|
import mockConfiguration from './config/configuration';
|
|
import mockInvites from './config/invites';
|
|
import mockPosts from './config/posts';
|
|
import mockRoles from './config/roles';
|
|
import mockSettings from './config/settings';
|
|
import mockSlugs from './config/slugs';
|
|
import mockSubscribers from './config/subscribers';
|
|
import mockTags from './config/tags';
|
|
import mockThemes from './config/themes';
|
|
import mockUploads from './config/uploads';
|
|
import mockUsers from './config/users';
|
|
|
|
// import {versionMismatchResponse} from 'utils';
|
|
|
|
export default function () {
|
|
// this.urlPrefix = ''; // make this `http://localhost:8080`, for example, if your API is on a different server
|
|
this.namespace = '/ghost/api/v0.1'; // make this `api`, for example, if your API is namespaced
|
|
this.timing = 400; // delay for each request, automatically set to 0 during testing
|
|
|
|
// Mock endpoints here to override real API requests during development, eg...
|
|
// this.put('/posts/:id/', versionMismatchResponse);
|
|
// mockTags(this);
|
|
// this.loadFixtures('settings');
|
|
|
|
// keep this line, it allows all other API requests to hit the real server
|
|
this.passthrough();
|
|
|
|
// add any external domains to make sure those get passed through too
|
|
this.passthrough('https://count.ghost.org/');
|
|
this.passthrough('http://www.gravatar.com/**');
|
|
}
|
|
|
|
// Mock all endpoints here as there is no real API during testing
|
|
export function testConfig() {
|
|
this.passthrough('/write-coverage'); // For code coverage
|
|
// this.urlPrefix = ''; // make this `http://localhost:8080`, for example, if your API is on a different server
|
|
this.namespace = '/ghost/api/v0.1'; // make this `api`, for example, if your API is namespaced
|
|
// this.timing = 400; // delay for each request, automatically set to 0 during testing
|
|
// this.logging = true;
|
|
|
|
mockAuthentication(this);
|
|
mockConfiguration(this);
|
|
mockInvites(this);
|
|
mockPosts(this);
|
|
mockRoles(this);
|
|
mockSettings(this);
|
|
mockSlugs(this);
|
|
mockSubscribers(this);
|
|
mockTags(this);
|
|
mockThemes(this);
|
|
mockUploads(this);
|
|
mockUsers(this);
|
|
|
|
/* Notifications -------------------------------------------------------- */
|
|
|
|
this.get('/notifications/');
|
|
|
|
/* Apps - Slack Test Notification --------------------------------------- */
|
|
|
|
this.post('/slack/test', function () {
|
|
return {};
|
|
});
|
|
|
|
/* External sites ------------------------------------------------------- */
|
|
|
|
let downloadCount = 0;
|
|
this.get('https://count.ghost.org/', function () {
|
|
downloadCount++;
|
|
return {
|
|
count: downloadCount
|
|
};
|
|
});
|
|
|
|
this.head('http://www.gravatar.com/avatar/:md5', function () {
|
|
return '';
|
|
}, 200);
|
|
|
|
this.get('http://www.gravatar.com/avatar/:md5', function () {
|
|
return '';
|
|
}, 200);
|
|
}
|