2021-04-01 07:17:45 +03:00
|
|
|
// Switch these lines once there are useful utils
|
|
|
|
// const testUtils = require('./utils');
|
|
|
|
require('./utils');
|
|
|
|
|
2021-04-05 07:17:57 +03:00
|
|
|
const errors = require('./fixtures/errors');
|
2021-04-08 18:29:53 +03:00
|
|
|
const {MaxLimit, AllowlistLimit} = require('../lib/limit');
|
2021-04-01 07:17:45 +03:00
|
|
|
|
|
|
|
describe('Limit Service', function () {
|
|
|
|
describe('Max Limit', function () {
|
2021-04-01 08:03:32 +03:00
|
|
|
describe('Constructor', function () {
|
|
|
|
it('throws if initialized without a max limit', function () {
|
|
|
|
const config = {};
|
|
|
|
|
|
|
|
try {
|
2021-04-05 07:17:57 +03:00
|
|
|
const limit = new MaxLimit({name: 'no limits!', config, errors});
|
2021-04-01 08:03:32 +03:00
|
|
|
should.fail(limit, 'Should have errored');
|
|
|
|
} catch (err) {
|
|
|
|
should.exist(err);
|
|
|
|
should.exist(err.errorType);
|
|
|
|
should.equal(err.errorType, 'IncorrectUsageError');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
it('throws if initialized without a current count query', function () {
|
|
|
|
const config = {};
|
|
|
|
|
|
|
|
try {
|
2021-04-05 07:17:57 +03:00
|
|
|
const limit = new MaxLimit({name: 'no accountability!', config, errors});
|
2021-04-01 08:03:32 +03:00
|
|
|
should.fail(limit, 'Should have errored');
|
|
|
|
} catch (err) {
|
|
|
|
should.exist(err);
|
|
|
|
should.exist(err.errorType);
|
|
|
|
should.equal(err.errorType, 'IncorrectUsageError');
|
|
|
|
}
|
|
|
|
});
|
2021-04-01 07:20:56 +03:00
|
|
|
});
|
|
|
|
|
2021-04-01 08:10:07 +03:00
|
|
|
describe('Is over limit', function () {
|
|
|
|
it('throws if is over the limit', async function () {
|
|
|
|
const config = {
|
|
|
|
max: 3,
|
|
|
|
currentCountQuery: () => 42
|
|
|
|
};
|
2021-04-05 07:17:57 +03:00
|
|
|
const limit = new MaxLimit({name: 'maxy', config, errors});
|
2021-04-01 08:10:07 +03:00
|
|
|
|
|
|
|
try {
|
|
|
|
await limit.errorIfIsOverLimit();
|
|
|
|
should.fail(limit, 'Should have errored');
|
|
|
|
} catch (err) {
|
|
|
|
should.exist(err);
|
|
|
|
|
|
|
|
should.exist(err.errorType);
|
|
|
|
should.equal(err.errorType, 'HostLimitError');
|
|
|
|
|
|
|
|
should.exist(err.errorDetails);
|
|
|
|
should.equal(err.errorDetails.name, 'maxy');
|
|
|
|
|
|
|
|
should.exist(err.message);
|
|
|
|
should.equal(err.message, 'This action would exceed the maxy limit on your current plan.');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
it('passes if does not go over the limit', async function () {
|
|
|
|
const config = {
|
|
|
|
max: 1,
|
|
|
|
currentCountQuery: () => 1
|
|
|
|
};
|
|
|
|
|
2021-04-05 07:17:57 +03:00
|
|
|
const limit = new MaxLimit({name: 'maxy', config, errors});
|
2021-04-01 08:10:07 +03:00
|
|
|
|
|
|
|
await limit.errorIfIsOverLimit();
|
|
|
|
});
|
2021-04-01 08:27:29 +03:00
|
|
|
|
|
|
|
it('ignores default configured max limit when it is passed explicitly', async function () {
|
|
|
|
const config = {
|
|
|
|
max: 10,
|
|
|
|
currentCountQuery: () => 10
|
|
|
|
};
|
|
|
|
|
2021-04-05 07:17:57 +03:00
|
|
|
const limit = new MaxLimit({name: 'maxy', config, errors});
|
2021-04-01 08:27:29 +03:00
|
|
|
|
|
|
|
// should pass as the limit is exactly on the limit 10 >= 10
|
|
|
|
await limit.errorIfIsOverLimit({max: 10});
|
|
|
|
|
|
|
|
try {
|
|
|
|
// should fail because limit is overridden to 10 < 9
|
|
|
|
await limit.errorIfIsOverLimit({max: 9});
|
|
|
|
should.fail(limit, 'Should have errored');
|
|
|
|
} catch (err) {
|
|
|
|
should.exist(err);
|
|
|
|
|
|
|
|
should.exist(err.errorType);
|
|
|
|
should.equal(err.errorType, 'HostLimitError');
|
|
|
|
|
|
|
|
should.exist(err.errorDetails);
|
|
|
|
should.equal(err.errorDetails.name, 'maxy');
|
|
|
|
|
|
|
|
should.exist(err.message);
|
|
|
|
should.equal(err.message, 'This action would exceed the maxy limit on your current plan.');
|
|
|
|
}
|
|
|
|
});
|
2021-04-01 08:10:07 +03:00
|
|
|
});
|
|
|
|
|
2021-04-01 08:03:32 +03:00
|
|
|
describe('Would go over limit', function () {
|
|
|
|
it('throws if would go over the limit', async function () {
|
|
|
|
const config = {
|
|
|
|
max: 1,
|
|
|
|
currentCountQuery: () => 1
|
|
|
|
};
|
2021-04-05 07:17:57 +03:00
|
|
|
const limit = new MaxLimit({name: 'maxy', config, errors});
|
2021-04-01 07:17:45 +03:00
|
|
|
|
2021-04-01 08:03:32 +03:00
|
|
|
try {
|
|
|
|
await limit.errorIfWouldGoOverLimit();
|
|
|
|
should.fail(limit, 'Should have errored');
|
|
|
|
} catch (err) {
|
|
|
|
should.exist(err);
|
2021-04-01 07:17:45 +03:00
|
|
|
|
2021-04-01 08:03:32 +03:00
|
|
|
should.exist(err.errorType);
|
|
|
|
should.equal(err.errorType, 'HostLimitError');
|
2021-04-01 07:17:45 +03:00
|
|
|
|
2021-04-01 08:03:32 +03:00
|
|
|
should.exist(err.errorDetails);
|
|
|
|
should.equal(err.errorDetails.name, 'maxy');
|
2021-04-01 07:17:45 +03:00
|
|
|
|
2021-04-01 08:03:32 +03:00
|
|
|
should.exist(err.message);
|
|
|
|
should.equal(err.message, 'This action would exceed the maxy limit on your current plan.');
|
|
|
|
}
|
|
|
|
});
|
2021-04-01 07:17:45 +03:00
|
|
|
|
2021-04-01 08:03:32 +03:00
|
|
|
it('passes if does not go over the limit', async function () {
|
|
|
|
const config = {
|
|
|
|
max: 2,
|
|
|
|
currentCountQuery: () => 1
|
|
|
|
};
|
2021-04-01 07:17:45 +03:00
|
|
|
|
2021-04-05 07:17:57 +03:00
|
|
|
const limit = new MaxLimit({name: 'maxy', config, errors});
|
2021-04-01 07:17:45 +03:00
|
|
|
|
2021-04-01 08:03:32 +03:00
|
|
|
await limit.errorIfWouldGoOverLimit();
|
|
|
|
});
|
2021-04-01 07:59:52 +03:00
|
|
|
|
2021-04-01 08:03:32 +03:00
|
|
|
it('ignores default configured max limit when it is passed explicitly', async function () {
|
|
|
|
const config = {
|
|
|
|
max: 10,
|
|
|
|
currentCountQuery: () => 10
|
|
|
|
};
|
2021-04-01 07:59:52 +03:00
|
|
|
|
2021-04-05 07:17:57 +03:00
|
|
|
const limit = new MaxLimit({name: 'maxy', config, errors});
|
2021-04-01 07:59:52 +03:00
|
|
|
|
2021-04-01 08:03:32 +03:00
|
|
|
// should pass as the limit is overridden to 10 + 1 = 11
|
|
|
|
await limit.errorIfWouldGoOverLimit({max: 11});
|
2021-04-01 07:59:52 +03:00
|
|
|
|
2021-04-01 08:03:32 +03:00
|
|
|
try {
|
|
|
|
// should fail because limit is overridden to 10 + 1 < 1
|
|
|
|
await limit.errorIfWouldGoOverLimit({max: 1});
|
|
|
|
should.fail(limit, 'Should have errored');
|
|
|
|
} catch (err) {
|
|
|
|
should.exist(err);
|
2021-04-01 07:59:52 +03:00
|
|
|
|
2021-04-01 08:03:32 +03:00
|
|
|
should.exist(err.errorType);
|
|
|
|
should.equal(err.errorType, 'HostLimitError');
|
2021-04-01 07:59:52 +03:00
|
|
|
|
2021-04-01 08:03:32 +03:00
|
|
|
should.exist(err.errorDetails);
|
|
|
|
should.equal(err.errorDetails.name, 'maxy');
|
2021-04-01 07:59:52 +03:00
|
|
|
|
2021-04-01 08:03:32 +03:00
|
|
|
should.exist(err.message);
|
|
|
|
should.equal(err.message, 'This action would exceed the maxy limit on your current plan.');
|
|
|
|
}
|
|
|
|
});
|
2021-04-01 07:59:52 +03:00
|
|
|
});
|
2021-04-01 07:17:45 +03:00
|
|
|
});
|
2021-04-08 18:29:53 +03:00
|
|
|
|
|
|
|
describe('Allowlist limit', function () {
|
|
|
|
it('rejects when the allowlist config isn\'t specified', async function () {
|
|
|
|
try {
|
|
|
|
new AllowlistLimit({name: 'test', config: {}, errors});
|
|
|
|
throw new Error('Should have failed earlier...');
|
|
|
|
} catch (error) {
|
|
|
|
error.errorType.should.equal('IncorrectUsageError');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
it('accept correct values', async function () {
|
|
|
|
const limit = new AllowlistLimit({name: 'test', config: {
|
|
|
|
allowlist: ['test', 'ok']
|
|
|
|
}, errors});
|
|
|
|
|
|
|
|
await limit.errorIfIsOverLimit({value: 'test'});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('rejects unkown values', async function () {
|
|
|
|
const limit = new AllowlistLimit({name: 'test', config: {
|
|
|
|
allowlist: ['test', 'ok']
|
|
|
|
}, errors});
|
|
|
|
|
|
|
|
try {
|
|
|
|
await limit.errorIfIsOverLimit({value: 'unkown value'});
|
|
|
|
throw new Error('Should have failed earlier...');
|
|
|
|
} catch (error) {
|
|
|
|
error.errorType.should.equal('HostLimitError');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
2021-04-01 07:17:45 +03:00
|
|
|
});
|