2018-10-05 21:46:33 +03:00
|
|
|
import Service from '@ember/service';
|
|
|
|
import sinon from 'sinon';
|
|
|
|
import {beforeEach, describe, it} from 'mocha';
|
|
|
|
import {expect} from 'chai';
|
|
|
|
import {setupTest} from 'ember-mocha';
|
|
|
|
|
|
|
|
const mockAjax = Service.extend({
|
|
|
|
skipSessionDeletion: false,
|
|
|
|
init() {
|
|
|
|
this._super(...arguments);
|
|
|
|
this.post = sinon.stub().resolves();
|
|
|
|
this.del = sinon.stub().resolves();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
const mockGhostPaths = Service.extend({
|
|
|
|
apiRoot: '/ghost/api/v2/admin'
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('Unit: Authenticator: cookie', () => {
|
2019-05-13 15:43:53 +03:00
|
|
|
setupTest();
|
2018-10-05 21:46:33 +03:00
|
|
|
|
|
|
|
beforeEach(function () {
|
2019-05-13 15:43:53 +03:00
|
|
|
this.owner.register('service:ajax', mockAjax);
|
|
|
|
this.owner.register('service:ghost-paths', mockGhostPaths);
|
2018-10-05 21:46:33 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
describe('#restore', function () {
|
|
|
|
it('returns a resolving promise', function () {
|
2019-05-13 15:43:53 +03:00
|
|
|
return this.owner.lookup('authenticator:cookie').restore();
|
2018-10-05 21:46:33 +03:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('#authenticate', function () {
|
|
|
|
it('posts the username and password to the sessionEndpoint and returns the promise', function () {
|
2019-05-13 15:43:53 +03:00
|
|
|
let authenticator = this.owner.lookup('authenticator:cookie');
|
2018-10-05 21:46:33 +03:00
|
|
|
let post = authenticator.ajax.post;
|
|
|
|
|
|
|
|
return authenticator.authenticate('AzureDiamond', 'hunter2').then(() => {
|
|
|
|
expect(post.args[0][0]).to.equal('/ghost/api/v2/admin/session');
|
|
|
|
expect(post.args[0][1]).to.deep.include({
|
|
|
|
data: {
|
|
|
|
username: 'AzureDiamond',
|
|
|
|
password: 'hunter2'
|
|
|
|
}
|
|
|
|
});
|
|
|
|
expect(post.args[0][1]).to.deep.include({
|
|
|
|
dataType: 'text'
|
|
|
|
});
|
|
|
|
expect(post.args[0][1]).to.deep.include({
|
|
|
|
contentType: 'application/json;charset=utf-8'
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('#invalidate', function () {
|
|
|
|
it('makes a delete request to the sessionEndpoint', function () {
|
2019-05-13 15:43:53 +03:00
|
|
|
let authenticator = this.owner.lookup('authenticator:cookie');
|
2018-10-05 21:46:33 +03:00
|
|
|
let del = authenticator.ajax.del;
|
|
|
|
|
|
|
|
return authenticator.invalidate().then(() => {
|
|
|
|
expect(del.args[0][0]).to.equal('/ghost/api/v2/admin/session');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|