mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-20 17:32:15 +03:00
605b89a0d2
refs. [d6c22df
](d6c22df6d7
) - added icons for members and pages - improved view site link visibility - added view site to logo dropdown - updated all navigation and logo menu icons - rename 'team' to 'staff' - lots of design refinement and update (colors, shadows)
147 lines
6.1 KiB
JavaScript
147 lines
6.1 KiB
JavaScript
import Mirage from 'ember-cli-mirage';
|
|
import ctrlOrCmd from 'ghost-admin/utils/ctrl-or-cmd';
|
|
import setupMirage from 'ember-cli-mirage/test-support/setup-mirage';
|
|
import {authenticateSession, invalidateSession} from 'ember-simple-auth/test-support';
|
|
import {beforeEach, describe, it} from 'mocha';
|
|
import {blur, click, currentURL, fillIn, find, findAll, triggerEvent} from '@ember/test-helpers';
|
|
import {expect} from 'chai';
|
|
import {setupApplicationTest} from 'ember-mocha';
|
|
import {visit} from '../../helpers/visit';
|
|
|
|
describe('Acceptance: Settings - Integrations - Slack', function () {
|
|
let hooks = setupApplicationTest();
|
|
setupMirage(hooks);
|
|
|
|
it('redirects to signin when not authenticated', async function () {
|
|
await invalidateSession();
|
|
await visit('/settings/integrations/slack');
|
|
|
|
expect(currentURL(), 'currentURL').to.equal('/signin');
|
|
});
|
|
|
|
it('redirects to staff page when authenticated as contributor', async function () {
|
|
let role = this.server.create('role', {name: 'Contributor'});
|
|
this.server.create('user', {roles: [role], slug: 'test-user'});
|
|
|
|
await authenticateSession();
|
|
await visit('/settings/integrations/slack');
|
|
|
|
expect(currentURL(), 'currentURL').to.equal('/staff/test-user');
|
|
});
|
|
|
|
it('redirects to staff page when authenticated as author', async function () {
|
|
let role = this.server.create('role', {name: 'Author'});
|
|
this.server.create('user', {roles: [role], slug: 'test-user'});
|
|
|
|
await authenticateSession();
|
|
await visit('/settings/integrations/slack');
|
|
|
|
expect(currentURL(), 'currentURL').to.equal('/staff/test-user');
|
|
});
|
|
|
|
it('redirects to staff page when authenticated as editor', async function () {
|
|
let role = this.server.create('role', {name: 'Editor'});
|
|
this.server.create('user', {roles: [role], slug: 'test-user'});
|
|
|
|
await authenticateSession();
|
|
await visit('/settings/integrations/slack');
|
|
|
|
expect(currentURL(), 'currentURL').to.equal('/staff');
|
|
});
|
|
|
|
describe('when logged in', function () {
|
|
beforeEach(async function () {
|
|
let role = this.server.create('role', {name: 'Administrator'});
|
|
this.server.create('user', {roles: [role]});
|
|
|
|
return await authenticateSession();
|
|
});
|
|
|
|
it('it validates and saves slack settings properly', async function () {
|
|
await visit('/settings/integrations/slack');
|
|
|
|
// has correct url
|
|
expect(currentURL(), 'currentURL').to.equal('/settings/integrations/slack');
|
|
|
|
await fillIn('[data-test-slack-url-input]', 'notacorrecturl');
|
|
await click('[data-test-save-button]');
|
|
|
|
expect(find('[data-test-error="slack-url"]').textContent.trim(), 'inline validation response')
|
|
.to.equal('The URL must be in a format like https://hooks.slack.com/services/<your personal key>');
|
|
|
|
// CMD-S shortcut works
|
|
await fillIn('[data-test-slack-url-input]', 'https://hooks.slack.com/services/1275958430');
|
|
await fillIn('[data-test-slack-username-input]', 'SlackBot');
|
|
await triggerEvent('.gh-app', 'keydown', {
|
|
keyCode: 83, // s
|
|
metaKey: ctrlOrCmd === 'command',
|
|
ctrlKey: ctrlOrCmd === 'ctrl'
|
|
});
|
|
|
|
let [newRequest] = this.server.pretender.handledRequests.slice(-1);
|
|
let params = JSON.parse(newRequest.requestBody);
|
|
let [result] = JSON.parse(params.settings.findBy('key', 'slack').value);
|
|
|
|
expect(result.url).to.equal('https://hooks.slack.com/services/1275958430');
|
|
expect(result.username).to.equal('SlackBot');
|
|
expect(find('[data-test-error="slack-url"]'), 'inline validation response')
|
|
.to.not.exist;
|
|
|
|
await fillIn('[data-test-slack-url-input]', 'https://hooks.slack.com/services/1275958430');
|
|
await click('[data-test-send-notification-button]');
|
|
|
|
expect(findAll('.gh-notification').length, 'number of notifications').to.equal(1);
|
|
expect(find('[data-test-error="slack-url"]'), 'inline validation response')
|
|
.to.not.exist;
|
|
|
|
this.server.put('/settings/', function () {
|
|
return new Mirage.Response(422, {}, {
|
|
errors: [
|
|
{
|
|
errorType: 'ValidationError',
|
|
message: 'Test error'
|
|
}
|
|
]
|
|
});
|
|
});
|
|
|
|
await click('.gh-notification .gh-notification-close');
|
|
await click('[data-test-send-notification-button]');
|
|
|
|
// we shouldn't try to send the test request if the save fails
|
|
let [lastRequest] = this.server.pretender.handledRequests.slice(-1);
|
|
expect(lastRequest.url).to.not.match(/\/slack\/test/);
|
|
expect(findAll('.gh-notification').length, 'check slack notification after api validation error').to.equal(0);
|
|
});
|
|
|
|
it('warns when leaving without saving', async function () {
|
|
await visit('/settings/integrations/slack');
|
|
|
|
// has correct url
|
|
expect(currentURL(), 'currentURL').to.equal('/settings/integrations/slack');
|
|
|
|
await fillIn('[data-test-slack-url-input]', 'https://hooks.slack.com/services/1275958430');
|
|
await blur('[data-test-slack-url-input]');
|
|
|
|
await visit('/settings/design');
|
|
|
|
expect(findAll('.fullscreen-modal').length, 'modal exists').to.equal(1);
|
|
|
|
// Leave without saving
|
|
await click('.fullscreen-modal [data-test-leave-button]');
|
|
|
|
expect(currentURL(), 'currentURL').to.equal('/settings/design');
|
|
|
|
await visit('/settings/integrations/slack');
|
|
|
|
expect(currentURL(), 'currentURL').to.equal('/settings/integrations/slack');
|
|
|
|
// settings were not saved
|
|
expect(
|
|
find('[data-test-slack-url-input]').textContent.trim(),
|
|
'Slack Webhook URL'
|
|
).to.equal('');
|
|
});
|
|
});
|
|
});
|