mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-14 09:52:09 +03:00
a0712d23e8
refs #10156 - Updated ApiKey model to use shorter secrets for admin keys
49 lines
1.6 KiB
JavaScript
49 lines
1.6 KiB
JavaScript
const models = require('../../../server/models');
|
|
const should = require('should');
|
|
const sinon = require('sinon');
|
|
const testUtils = require('../../utils');
|
|
|
|
describe('Unit: models/api_key', function () {
|
|
before(models.init);
|
|
|
|
describe('fn: refreshSecret', function () {
|
|
it('returns a call to edit passing a new admin secret', function () {
|
|
const editStub = sinon.stub(models.ApiKey, 'edit').resolves();
|
|
|
|
const fakeData = {
|
|
id: 'TREVOR',
|
|
type: 'admin'
|
|
};
|
|
const fakeOptions = {};
|
|
|
|
const result = models.ApiKey.refreshSecret(fakeData, fakeOptions);
|
|
|
|
should.equal(result, editStub.returnValues[0]);
|
|
should.equal(editStub.args[0][0].id, 'TREVOR');
|
|
should.equal(editStub.args[0][0].secret.length, 64);
|
|
should.equal(editStub.args[0][1], fakeOptions);
|
|
|
|
sinon.restore();
|
|
});
|
|
|
|
it('returns a call to edit passing a new content secret', function () {
|
|
const editStub = sinon.stub(models.ApiKey, 'edit').resolves();
|
|
|
|
const fakeData = {
|
|
id: 'TREVOR',
|
|
type: 'content'
|
|
};
|
|
const fakeOptions = {};
|
|
|
|
const result = models.ApiKey.refreshSecret(fakeData, fakeOptions);
|
|
|
|
should.equal(result, editStub.returnValues[0]);
|
|
should.equal(editStub.args[0][0].id, 'TREVOR');
|
|
should.equal(editStub.args[0][0].secret.length, 26);
|
|
should.equal(editStub.args[0][1], fakeOptions);
|
|
|
|
sinon.restore();
|
|
});
|
|
});
|
|
});
|