2016-01-15 18:43:16 +03:00
|
|
|
import Pretender from 'pretender';
|
2016-06-30 13:21:47 +03:00
|
|
|
import {dasherize} from 'ember-string';
|
2017-05-29 21:50:03 +03:00
|
|
|
import {describe, it} from 'mocha';
|
|
|
|
import {expect} from 'chai';
|
|
|
|
import {setupTest} from 'ember-mocha';
|
2016-01-15 18:43:16 +03:00
|
|
|
|
|
|
|
function stubSlugEndpoint(server, type, slug) {
|
|
|
|
server.get('/ghost/api/v0.1/slugs/:type/:slug/', function (request) {
|
|
|
|
expect(request.params.type).to.equal(type);
|
|
|
|
expect(request.params.slug).to.equal(slug);
|
|
|
|
|
|
|
|
return [
|
|
|
|
200,
|
|
|
|
{'Content-Type': 'application/json'},
|
|
|
|
JSON.stringify({slugs: [{slug: dasherize(slug)}]})
|
|
|
|
];
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-11-24 01:50:57 +03:00
|
|
|
describe('Integration: Service: slug-generator', function () {
|
|
|
|
setupTest('service:slug-generator', {
|
2016-01-15 18:43:16 +03:00
|
|
|
integration: true
|
2016-11-24 01:50:57 +03:00
|
|
|
});
|
2016-01-15 18:43:16 +03:00
|
|
|
|
2016-11-24 01:50:57 +03:00
|
|
|
let server;
|
2016-01-15 18:43:16 +03:00
|
|
|
|
2016-11-24 01:50:57 +03:00
|
|
|
beforeEach(function () {
|
|
|
|
server = new Pretender();
|
|
|
|
});
|
2016-01-15 18:43:16 +03:00
|
|
|
|
2016-11-24 01:50:57 +03:00
|
|
|
afterEach(function () {
|
|
|
|
server.shutdown();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('returns empty if no slug is provided', function (done) {
|
|
|
|
let service = this.subject();
|
2016-01-15 18:43:16 +03:00
|
|
|
|
2016-11-24 01:50:57 +03:00
|
|
|
service.generateSlug('post', '').then(function (slug) {
|
|
|
|
expect(slug).to.equal('');
|
|
|
|
done();
|
2016-01-15 18:43:16 +03:00
|
|
|
});
|
2016-11-24 01:50:57 +03:00
|
|
|
});
|
2016-01-15 18:43:16 +03:00
|
|
|
|
2016-11-24 01:50:57 +03:00
|
|
|
it('calls correct endpoint and returns correct data', function (done) {
|
|
|
|
let rawSlug = 'a test post';
|
|
|
|
stubSlugEndpoint(server, 'post', rawSlug);
|
2016-01-15 18:43:16 +03:00
|
|
|
|
2016-11-24 01:50:57 +03:00
|
|
|
let service = this.subject();
|
2016-01-15 18:43:16 +03:00
|
|
|
|
2016-11-24 01:50:57 +03:00
|
|
|
service.generateSlug('post', rawSlug).then(function (slug) {
|
|
|
|
expect(slug).to.equal(dasherize(rawSlug));
|
|
|
|
done();
|
2016-01-15 18:43:16 +03:00
|
|
|
});
|
2016-11-24 01:50:57 +03:00
|
|
|
});
|
|
|
|
});
|