2016-03-29 11:40:44 +03:00
|
|
|
/* jshint expr:true */
|
|
|
|
import { expect } from 'chai';
|
|
|
|
import {
|
|
|
|
describe,
|
|
|
|
it
|
|
|
|
} from 'mocha';
|
2016-05-24 15:06:59 +03:00
|
|
|
import validator from 'ghost-admin/validators/slack-integration';
|
|
|
|
import SlackObject from 'ghost-admin/models/slack-integration';
|
2016-03-29 11:40:44 +03:00
|
|
|
|
|
|
|
const testInvalidUrl = function (url) {
|
|
|
|
let slackObject = SlackObject.create({url});
|
|
|
|
|
|
|
|
validator.check(slackObject, 'url');
|
|
|
|
|
|
|
|
expect(validator.get('passed'), `"${url}" passed`).to.be.false;
|
2016-08-06 10:04:06 +03:00
|
|
|
expect(slackObject.get('errors').errorsFor('url').toArray()).to.deep.equal([{
|
2016-03-29 11:40:44 +03:00
|
|
|
attribute: 'url',
|
|
|
|
message: 'The URL must be in a format like https://hooks.slack.com/services/<your personal key>'
|
|
|
|
}]);
|
|
|
|
expect(slackObject.get('hasValidated')).to.include('url');
|
|
|
|
};
|
|
|
|
|
|
|
|
const testValidUrl = function (url) {
|
|
|
|
let slackObject = SlackObject.create({url});
|
|
|
|
|
|
|
|
validator.check(slackObject, 'url');
|
|
|
|
|
|
|
|
expect(validator.get('passed'), `"${url}" failed`).to.be.true;
|
|
|
|
expect(slackObject.get('hasValidated')).to.include('url');
|
|
|
|
};
|
|
|
|
|
|
|
|
describe('Unit: Validator: slack-integration', function () {
|
|
|
|
it('fails on invalid url values', function () {
|
|
|
|
let invalidUrls = [
|
|
|
|
'test@example.com',
|
|
|
|
'/has spaces',
|
|
|
|
'no-leading-slash',
|
|
|
|
'http://example.com/with spaces'
|
|
|
|
];
|
|
|
|
|
|
|
|
invalidUrls.forEach(function (url) {
|
|
|
|
testInvalidUrl(url);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('passes on valid url values', function () {
|
|
|
|
let validUrls = [
|
|
|
|
'https://hooks.slack.com/services/;alskdjf',
|
|
|
|
'https://hooks.slack.com/services/123445678',
|
|
|
|
'https://hooks.slack.com/services/some_webhook'
|
|
|
|
];
|
|
|
|
|
|
|
|
validUrls.forEach(function (url) {
|
|
|
|
testValidUrl(url);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('validates url by default', function () {
|
|
|
|
let slackObject = SlackObject.create();
|
|
|
|
|
|
|
|
validator.check(slackObject);
|
|
|
|
|
|
|
|
expect(slackObject.get('errors').errorsFor('url')).to.be.empty;
|
|
|
|
expect(validator.get('passed')).to.be.true;
|
|
|
|
});
|
|
|
|
});
|