Ghost/ghost/core/test/e2e-api/content/offers.test.js
Daniel Lockyer 3d989eba23 Converted Ghost repo into a monorepo
refs https://github.com/TryGhost/Toolbox/issues/354

- this commit turns the Ghost repo into a monorepo so we can bring our
  internal packages back in, which makes life easier when working on
  Ghost
2022-07-20 16:41:05 +02:00

39 lines
1.2 KiB
JavaScript

const {agentProvider, fixtureManager, matchers} = require('../../utils/e2e-framework');
const testUtils = require('../../utils');
const models = require('../../../core/server/models');
const offerSnapshot = {
id: matchers.anyObjectId,
tier: {
id: matchers.anyObjectId
}
};
describe('Offers Content API', function () {
let agent;
before(async function () {
agent = await agentProvider.getContentAPIAgent();
await fixtureManager.init('api_keys', 'members');
await agent.authenticate();
});
it('Can read offer details from id', async function () {
const productModel = await models.Product.findOne({type: 'paid'}, testUtils.context.internal);
const offerData = testUtils.DataGenerator.forKnex.createOffer({
product_id: productModel.get('id')
});
const offerModel = await models.Offer.add(offerData, {context: {internal: true}});
await agent.get(`/offers/${offerModel.get('id')}`)
.expectStatus(200)
.matchHeaderSnapshot({
etag: matchers.anyEtag
})
.matchBodySnapshot({
offers: Array(1).fill(offerSnapshot)
});
});
});