2016-02-11 18:05:48 +03:00
|
|
|
/* jshint expr:true */
|
|
|
|
import {
|
|
|
|
describe,
|
|
|
|
it,
|
|
|
|
beforeEach,
|
|
|
|
afterEach
|
|
|
|
} from 'mocha';
|
2016-11-14 16:16:51 +03:00
|
|
|
import {expect} from 'chai';
|
2016-06-30 13:21:47 +03:00
|
|
|
import $ from 'jquery';
|
2016-02-11 18:05:48 +03:00
|
|
|
import startApp from '../../helpers/start-app';
|
|
|
|
import destroyApp from '../../helpers/destroy-app';
|
2016-11-14 16:16:51 +03:00
|
|
|
import {invalidateSession, authenticateSession} from 'ghost-admin/tests/helpers/ember-simple-auth';
|
2017-02-17 12:59:57 +03:00
|
|
|
import testSelector from 'ember-test-selectors';
|
2016-02-11 18:05:48 +03:00
|
|
|
|
|
|
|
describe('Acceptance: Settings - Code-Injection', function() {
|
|
|
|
let application;
|
|
|
|
|
|
|
|
beforeEach(function() {
|
|
|
|
application = startApp();
|
|
|
|
});
|
|
|
|
|
|
|
|
afterEach(function() {
|
|
|
|
destroyApp(application);
|
|
|
|
});
|
|
|
|
|
2017-04-24 15:29:48 +03:00
|
|
|
it('redirects to signin when not authenticated', async function () {
|
2016-02-11 18:05:48 +03:00
|
|
|
invalidateSession(application);
|
2017-04-24 15:29:48 +03:00
|
|
|
await visit('/settings/code-injection');
|
2016-02-11 18:05:48 +03:00
|
|
|
|
2017-04-24 15:29:48 +03:00
|
|
|
expect(currentURL(), 'currentURL').to.equal('/signin');
|
2016-02-11 18:05:48 +03:00
|
|
|
});
|
|
|
|
|
2017-04-24 15:29:48 +03:00
|
|
|
it('redirects to team page when authenticated as author', async function () {
|
2016-02-11 18:05:48 +03:00
|
|
|
let role = server.create('role', {name: 'Author'});
|
2016-11-14 16:16:51 +03:00
|
|
|
server.create('user', {roles: [role], slug: 'test-user'});
|
2016-02-11 18:05:48 +03:00
|
|
|
|
|
|
|
authenticateSession(application);
|
2017-04-24 15:29:48 +03:00
|
|
|
await visit('/settings/code-injection');
|
2016-02-11 18:05:48 +03:00
|
|
|
|
2017-04-24 15:29:48 +03:00
|
|
|
expect(currentURL(), 'currentURL').to.equal('/team/test-user');
|
2016-02-11 18:05:48 +03:00
|
|
|
});
|
|
|
|
|
2017-04-24 15:29:48 +03:00
|
|
|
it('redirects to team page when authenticated as editor', async function () {
|
2016-02-11 18:05:48 +03:00
|
|
|
let role = server.create('role', {name: 'Editor'});
|
2016-11-14 16:16:51 +03:00
|
|
|
server.create('user', {roles: [role], slug: 'test-user'});
|
2016-02-11 18:05:48 +03:00
|
|
|
|
|
|
|
authenticateSession(application);
|
2017-04-24 15:29:48 +03:00
|
|
|
await visit('/settings/code-injection');
|
2016-02-11 18:05:48 +03:00
|
|
|
|
2017-04-24 15:29:48 +03:00
|
|
|
expect(currentURL(), 'currentURL').to.equal('/team');
|
2016-02-11 18:05:48 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
describe('when logged in', function () {
|
|
|
|
beforeEach(function () {
|
|
|
|
let role = server.create('role', {name: 'Administrator'});
|
2016-11-14 16:16:51 +03:00
|
|
|
server.create('user', {roles: [role]});
|
2016-02-11 18:05:48 +03:00
|
|
|
|
|
|
|
return authenticateSession(application);
|
|
|
|
});
|
|
|
|
|
2017-04-24 15:29:48 +03:00
|
|
|
it('it renders, loads editors correctly', async function () {
|
|
|
|
await visit('/settings/code-injection');
|
2016-02-11 18:05:48 +03:00
|
|
|
|
2017-04-24 15:29:48 +03:00
|
|
|
// has correct url
|
|
|
|
expect(currentURL(), 'currentURL').to.equal('/settings/code-injection');
|
2016-02-11 18:05:48 +03:00
|
|
|
|
2017-04-24 15:29:48 +03:00
|
|
|
// has correct page title
|
|
|
|
expect(document.title, 'page title').to.equal('Settings - Code injection - Test Blog');
|
2016-02-11 18:05:48 +03:00
|
|
|
|
2017-04-24 15:29:48 +03:00
|
|
|
// highlights nav menu
|
|
|
|
expect($('.gh-nav-settings-code-injection').hasClass('active'), 'highlights nav menu item')
|
|
|
|
.to.be.true;
|
2016-02-11 18:05:48 +03:00
|
|
|
|
2017-04-24 15:29:48 +03:00
|
|
|
expect(find(testSelector('save-button')).text().trim(), 'save button text').to.equal('Save');
|
2016-02-11 18:05:48 +03:00
|
|
|
|
2017-04-24 15:29:48 +03:00
|
|
|
expect(find('#ghost-head .CodeMirror').length, 'ghost head codemirror element').to.equal(1);
|
|
|
|
expect($('#ghost-head .CodeMirror').hasClass('cm-s-xq-light'), 'ghost head editor theme').to.be.true;
|
2016-02-11 18:05:48 +03:00
|
|
|
|
2017-04-24 15:29:48 +03:00
|
|
|
expect(find('#ghost-foot .CodeMirror').length, 'ghost head codemirror element').to.equal(1);
|
|
|
|
expect($('#ghost-foot .CodeMirror').hasClass('cm-s-xq-light'), 'ghost head editor theme').to.be.true;
|
2016-02-11 18:05:48 +03:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|