mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-20 01:03:23 +03:00
c0f21b37d3
refs TryGhost/Ghost#6149 - concats codemirror.js and css on build, keeping them out of vendor.js - add lazy-loader service to enable loading of external scripts
68 lines
1.9 KiB
JavaScript
68 lines
1.9 KiB
JavaScript
/* jshint expr:true */
|
|
import { expect } from 'chai';
|
|
import {
|
|
describeModule,
|
|
it
|
|
} from 'ember-mocha';
|
|
import Pretender from 'pretender';
|
|
import RSVP from 'rsvp';
|
|
import $ from 'jquery';
|
|
|
|
describeModule(
|
|
'service:lazy-loader',
|
|
'Integration: Service: lazy-loader',
|
|
{integration: true},
|
|
function() {
|
|
let server;
|
|
let ghostPaths = {
|
|
adminRoot: '/assets/'
|
|
};
|
|
|
|
beforeEach(function () {
|
|
server = new Pretender();
|
|
});
|
|
|
|
afterEach(function () {
|
|
server.shutdown();
|
|
});
|
|
|
|
it('loads a script correctly and only once', function (done) {
|
|
let subject = this.subject({
|
|
ghostPaths,
|
|
scriptPromises: {},
|
|
testing: false
|
|
});
|
|
|
|
server.get('/assets/test.js', function ({requestHeaders}) {
|
|
expect(requestHeaders.Accept).to.match(/text\/javascript/);
|
|
|
|
return [200, {'Content-Type': 'text/javascript'}, 'window.testLoadScript = \'testvalue\''];
|
|
});
|
|
|
|
subject.loadScript('test-script', 'test.js').then(() => {
|
|
expect(subject.get('scriptPromises.test-script')).to.exist;
|
|
expect(window.testLoadScript).to.equal('testvalue');
|
|
expect(server.handlers[0].numberOfCalls).to.equal(1);
|
|
|
|
return subject.loadScript('test-script', 'test.js');
|
|
}).then(() => {
|
|
expect(server.handlers[0].numberOfCalls).to.equal(1);
|
|
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('loads styles correctly', function () {
|
|
let subject = this.subject({
|
|
ghostPaths,
|
|
testing: false
|
|
});
|
|
|
|
subject.loadStyle('testing', 'style.css');
|
|
|
|
expect($('#testing-styles').length).to.equal(1);
|
|
expect($('#testing-styles').attr('href')).to.equal('/assets/style.css');
|
|
});
|
|
}
|
|
);
|