2022-03-01 11:38:48 +03:00
|
|
|
const {agentProvider, fixtureManager, matchers} = require('../../utils/e2e-framework');
|
|
|
|
|
|
|
|
describe('Tiers Content API', function () {
|
|
|
|
let agent;
|
|
|
|
|
|
|
|
before(async function () {
|
|
|
|
agent = await agentProvider.getContentAPIAgent();
|
2022-03-16 19:32:42 +03:00
|
|
|
await fixtureManager.init('members', 'api_keys', 'tiers:archived');
|
2022-05-30 16:00:55 +03:00
|
|
|
await agent.authenticate();
|
2022-03-01 11:38:48 +03:00
|
|
|
});
|
|
|
|
|
2022-03-16 19:32:42 +03:00
|
|
|
it('Can request only active tiers', async function () {
|
2022-05-24 18:38:25 +03:00
|
|
|
await agent.get('/tiers/?include=monthly_price')
|
2022-03-01 11:38:48 +03:00
|
|
|
.expectStatus(200)
|
|
|
|
.matchHeaderSnapshot({
|
2023-01-17 14:56:29 +03:00
|
|
|
'content-version': matchers.anyContentVersion,
|
2022-03-01 11:38:48 +03:00
|
|
|
etag: matchers.anyEtag
|
|
|
|
})
|
|
|
|
.matchBodySnapshot({
|
|
|
|
tiers: Array(2).fill({
|
|
|
|
id: matchers.anyObjectId,
|
|
|
|
created_at: matchers.anyISODate,
|
|
|
|
updated_at: matchers.anyISODate
|
|
|
|
})
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|