mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-19 08:31:43 +03:00
1520122483
no issue - https://github.com/emberjs/ember-mocha/blob/master/docs/migration.md#upgrading-to-the-new-testing-apis - deleted tests files which had no specific tests - migrated unskipped component unit tests to integration tests
68 lines
2.2 KiB
JavaScript
68 lines
2.2 KiB
JavaScript
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', () => {
|
|
setupTest();
|
|
|
|
beforeEach(function () {
|
|
this.owner.register('service:ajax', mockAjax);
|
|
this.owner.register('service:ghost-paths', mockGhostPaths);
|
|
});
|
|
|
|
describe('#restore', function () {
|
|
it('returns a resolving promise', function () {
|
|
return this.owner.lookup('authenticator:cookie').restore();
|
|
});
|
|
});
|
|
|
|
describe('#authenticate', function () {
|
|
it('posts the username and password to the sessionEndpoint and returns the promise', function () {
|
|
let authenticator = this.owner.lookup('authenticator:cookie');
|
|
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 () {
|
|
let authenticator = this.owner.lookup('authenticator:cookie');
|
|
let del = authenticator.ajax.del;
|
|
|
|
return authenticator.invalidate().then(() => {
|
|
expect(del.args[0][0]).to.equal('/ghost/api/v2/admin/session');
|
|
});
|
|
});
|
|
});
|
|
});
|