2022-03-07 17:46:42 +03:00
|
|
|
const assert = require('assert');
|
2022-02-23 18:00:18 +03:00
|
|
|
const {
|
|
|
|
agentProvider,
|
|
|
|
fixtureManager,
|
|
|
|
mockManager,
|
|
|
|
matchers
|
|
|
|
} = require('../../utils/e2e-framework');
|
|
|
|
|
|
|
|
describe('Tiers API', function () {
|
|
|
|
let agent;
|
|
|
|
|
|
|
|
before(async function () {
|
|
|
|
agent = await agentProvider.getAdminAPIAgent();
|
|
|
|
await fixtureManager.init('members');
|
|
|
|
await agent.loginAsOwner();
|
|
|
|
});
|
|
|
|
|
|
|
|
afterEach(function () {
|
|
|
|
mockManager.restore();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('Can browse Tiers', async function () {
|
|
|
|
await agent
|
|
|
|
.get('/tiers/')
|
|
|
|
.expectStatus(200)
|
|
|
|
.matchBodySnapshot({
|
|
|
|
tiers: Array(2).fill({
|
|
|
|
id: matchers.anyObjectId,
|
2022-03-01 14:17:13 +03:00
|
|
|
created_at: matchers.anyISODateTime,
|
|
|
|
updated_at: matchers.anyISODateTime
|
2022-02-23 18:00:18 +03:00
|
|
|
})
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('Errors when price is non-integer', async function () {
|
|
|
|
const tier = {
|
|
|
|
name: 'Blah',
|
2022-05-16 21:47:18 +03:00
|
|
|
monthly_price: 99.99,
|
|
|
|
currency: 'usd'
|
2022-02-23 18:00:18 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
await agent
|
|
|
|
.post('/tiers/')
|
|
|
|
.body({tiers: [tier]})
|
|
|
|
.expectStatus(422)
|
|
|
|
.matchBodySnapshot({
|
|
|
|
errors: [{
|
|
|
|
id: matchers.anyUuid
|
|
|
|
}]
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('Errors when price is negative', async function () {
|
|
|
|
const tier = {
|
|
|
|
name: 'Blah',
|
2022-05-16 21:47:18 +03:00
|
|
|
monthly_price: -100,
|
|
|
|
currency: 'usd'
|
2022-02-23 18:00:18 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
await agent
|
|
|
|
.post('/tiers/')
|
|
|
|
.body({tiers: [tier]})
|
|
|
|
.expectStatus(422)
|
|
|
|
.matchBodySnapshot({
|
|
|
|
errors: [{
|
|
|
|
id: matchers.anyUuid
|
|
|
|
}]
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('Errors when price is too large', async function () {
|
|
|
|
const tier = {
|
|
|
|
name: 'Blah',
|
2022-05-16 21:47:18 +03:00
|
|
|
monthly_price: Number.MAX_SAFE_INTEGER,
|
|
|
|
currency: 'usd'
|
2022-02-23 18:00:18 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
await agent
|
|
|
|
.post('/tiers/')
|
|
|
|
.body({tiers: [tier]})
|
|
|
|
.expectStatus(422)
|
|
|
|
.matchBodySnapshot({
|
|
|
|
errors: [{
|
|
|
|
id: matchers.anyUuid
|
|
|
|
}]
|
|
|
|
});
|
|
|
|
});
|
2022-03-07 17:46:42 +03:00
|
|
|
|
|
|
|
it('Can read Tiers', async function () {
|
|
|
|
const {body: {tiers: [tier]}} = await agent.get('/tiers/');
|
|
|
|
|
|
|
|
await agent.get(`/tiers/${tier.id}/`)
|
|
|
|
.expectStatus(200);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('Can edit visibility', async function () {
|
|
|
|
const {body: {tiers: [tier]}} = await agent.get('/tiers/?type:paid&limit=1');
|
|
|
|
|
|
|
|
const visibility = tier.visibility === 'none' ? 'public' : 'none';
|
|
|
|
|
|
|
|
await agent.put(`/tiers/${tier.id}/`)
|
|
|
|
.body({
|
|
|
|
tiers: [{
|
|
|
|
visibility
|
|
|
|
}]
|
|
|
|
})
|
|
|
|
.expectStatus(200);
|
|
|
|
|
|
|
|
const {body: {tiers: [updatedTier]}} = await agent.get(`/tiers/${tier.id}/`);
|
|
|
|
|
|
|
|
assert(updatedTier.visibility === visibility, `The visibility of the Tier should have been updated to ${visibility}`);
|
|
|
|
});
|
2022-08-09 06:10:57 +03:00
|
|
|
|
|
|
|
it('Can save with trial_days as null', async function () {
|
|
|
|
const {body: {tiers: [tier]}} = await agent.get('/tiers/?limit=1');
|
|
|
|
|
|
|
|
await agent.put(`/tiers/${tier.id}/`)
|
|
|
|
.body({
|
|
|
|
tiers: [{
|
|
|
|
trial_days: null
|
|
|
|
}]
|
|
|
|
})
|
|
|
|
.expectStatus(200);
|
|
|
|
|
|
|
|
const {body: {tiers: [updatedTier]}} = await agent.get(`/tiers/${tier.id}/`);
|
|
|
|
|
|
|
|
assert(updatedTier.trial_days === 0, `The trial_days should have been set to 0`);
|
|
|
|
});
|
2022-02-23 18:00:18 +03:00
|
|
|
});
|