debian-mirror-gitlab/spec/javascripts/lazy_loader_spec.js

245 lines
8 KiB
JavaScript
Raw Normal View History

2017-09-10 17:25:29 +05:30
import LazyLoader from '~/lazy_loader';
2018-12-05 23:21:45 +05:30
import { TEST_HOST } from './test_constants';
2019-02-15 15:39:39 +05:30
import scrollIntoViewPromise from './helpers/scroll_into_view_promise';
import waitForPromises from './helpers/wait_for_promises';
import waitForAttributeChange from './helpers/wait_for_attribute_change';
2017-09-10 17:25:29 +05:30
2018-12-05 23:21:45 +05:30
const execImmediately = callback => {
callback();
};
2018-11-20 20:47:30 +05:30
describe('LazyLoader', function() {
2019-02-15 15:39:39 +05:30
let lazyLoader = null;
2019-07-07 11:18:12 +05:30
preloadFixtures('issues/issue_with_comment.html');
2017-09-10 17:25:29 +05:30
2019-02-15 15:39:39 +05:30
describe('without IntersectionObserver', () => {
2018-12-05 23:21:45 +05:30
beforeEach(function() {
2019-07-07 11:18:12 +05:30
loadFixtures('issues/issue_with_comment.html');
2018-12-05 23:21:45 +05:30
lazyLoader = new LazyLoader({
observerNode: 'foobar',
});
spyOn(LazyLoader, 'supportsIntersectionObserver').and.callFake(() => false);
spyOn(LazyLoader, 'loadImage').and.callThrough();
spyOn(window, 'requestAnimationFrame').and.callFake(execImmediately);
spyOn(window, 'requestIdleCallback').and.callFake(execImmediately);
// Doing everything that happens normally in onload
lazyLoader.register();
});
afterEach(() => {
lazyLoader.unregister();
});
it('should copy value from data-src to src for img 1', function(done) {
const img = document.querySelectorAll('img[data-src]')[0];
const originalDataSrc = img.getAttribute('data-src');
2019-02-15 15:39:39 +05:30
Promise.all([scrollIntoViewPromise(img), waitForAttributeChange(img, ['data-src', 'src'])])
.then(() => {
expect(LazyLoader.loadImage).toHaveBeenCalled();
expect(img.getAttribute('src')).toBe(originalDataSrc);
expect(img).toHaveClass('js-lazy-loaded');
done();
})
.catch(done.fail);
2018-12-05 23:21:45 +05:30
});
it('should lazy load dynamically added data-src images', function(done) {
const newImg = document.createElement('img');
const testPath = `${TEST_HOST}/img/testimg.png`;
newImg.className = 'lazy';
newImg.setAttribute('data-src', testPath);
document.body.appendChild(newImg);
2019-02-15 15:39:39 +05:30
Promise.all([
scrollIntoViewPromise(newImg),
waitForAttributeChange(newImg, ['data-src', 'src']),
])
.then(() => {
2019-12-21 20:55:43 +05:30
expect(LazyLoader.loadImage).toHaveBeenCalledWith(newImg);
2019-02-15 15:39:39 +05:30
expect(newImg.getAttribute('src')).toBe(testPath);
expect(newImg).toHaveClass('js-lazy-loaded');
done();
})
.catch(done.fail);
2018-12-05 23:21:45 +05:30
});
it('should not alter normal images', function(done) {
const newImg = document.createElement('img');
const testPath = `${TEST_HOST}/img/testimg.png`;
newImg.setAttribute('src', testPath);
document.body.appendChild(newImg);
2019-02-15 15:39:39 +05:30
scrollIntoViewPromise(newImg)
.then(waitForPromises)
.then(() => {
2019-12-21 20:55:43 +05:30
expect(LazyLoader.loadImage).not.toHaveBeenCalledWith(newImg);
2019-02-15 15:39:39 +05:30
expect(newImg).not.toHaveClass('js-lazy-loaded');
done();
})
.catch(done.fail);
2018-12-05 23:21:45 +05:30
});
it('should not load dynamically added pictures if content observer is turned off', done => {
lazyLoader.stopContentObserver();
const newImg = document.createElement('img');
const testPath = `${TEST_HOST}/img/testimg.png`;
newImg.className = 'lazy';
newImg.setAttribute('data-src', testPath);
document.body.appendChild(newImg);
2019-02-15 15:39:39 +05:30
scrollIntoViewPromise(newImg)
.then(waitForPromises)
.then(() => {
2019-12-21 20:55:43 +05:30
expect(LazyLoader.loadImage).not.toHaveBeenCalledWith(newImg);
2019-02-15 15:39:39 +05:30
expect(newImg).not.toHaveClass('js-lazy-loaded');
done();
})
.catch(done.fail);
2018-12-05 23:21:45 +05:30
});
it('should load dynamically added pictures if content observer is turned off and on again', done => {
lazyLoader.stopContentObserver();
lazyLoader.startContentObserver();
const newImg = document.createElement('img');
const testPath = `${TEST_HOST}/img/testimg.png`;
newImg.className = 'lazy';
newImg.setAttribute('data-src', testPath);
document.body.appendChild(newImg);
2019-02-15 15:39:39 +05:30
Promise.all([
scrollIntoViewPromise(newImg),
waitForAttributeChange(newImg, ['data-src', 'src']),
])
.then(waitForPromises)
.then(() => {
2019-12-21 20:55:43 +05:30
expect(LazyLoader.loadImage).toHaveBeenCalledWith(newImg);
2019-02-15 15:39:39 +05:30
expect(newImg).toHaveClass('js-lazy-loaded');
done();
})
.catch(done.fail);
2017-09-10 17:25:29 +05:30
});
});
2018-12-05 23:21:45 +05:30
2019-02-15 15:39:39 +05:30
describe('with IntersectionObserver', () => {
2018-12-05 23:21:45 +05:30
beforeEach(function() {
2019-07-07 11:18:12 +05:30
loadFixtures('issues/issue_with_comment.html');
2018-12-05 23:21:45 +05:30
lazyLoader = new LazyLoader({
observerNode: 'foobar',
});
spyOn(LazyLoader, 'loadImage').and.callThrough();
spyOn(window, 'requestAnimationFrame').and.callFake(execImmediately);
spyOn(window, 'requestIdleCallback').and.callFake(execImmediately);
// Doing everything that happens normally in onload
lazyLoader.register();
});
afterEach(() => {
lazyLoader.unregister();
});
2018-11-20 20:47:30 +05:30
it('should copy value from data-src to src for img 1', function(done) {
2017-09-10 17:25:29 +05:30
const img = document.querySelectorAll('img[data-src]')[0];
const originalDataSrc = img.getAttribute('data-src');
2019-02-15 15:39:39 +05:30
Promise.all([scrollIntoViewPromise(img), waitForAttributeChange(img, ['data-src', 'src'])])
.then(() => {
2019-12-21 20:55:43 +05:30
expect(LazyLoader.loadImage).toHaveBeenCalledWith(img);
2019-02-15 15:39:39 +05:30
expect(img.getAttribute('src')).toBe(originalDataSrc);
expect(img).toHaveClass('js-lazy-loaded');
done();
})
.catch(done.fail);
2017-09-10 17:25:29 +05:30
});
2018-11-20 20:47:30 +05:30
it('should lazy load dynamically added data-src images', function(done) {
2017-09-10 17:25:29 +05:30
const newImg = document.createElement('img');
2018-12-05 23:21:45 +05:30
const testPath = `${TEST_HOST}/img/testimg.png`;
2017-09-10 17:25:29 +05:30
newImg.className = 'lazy';
newImg.setAttribute('data-src', testPath);
document.body.appendChild(newImg);
2019-02-15 15:39:39 +05:30
Promise.all([
scrollIntoViewPromise(newImg),
waitForAttributeChange(newImg, ['data-src', 'src']),
])
.then(() => {
2019-12-21 20:55:43 +05:30
expect(LazyLoader.loadImage).toHaveBeenCalledWith(newImg);
2019-02-15 15:39:39 +05:30
expect(newImg.getAttribute('src')).toBe(testPath);
expect(newImg).toHaveClass('js-lazy-loaded');
done();
})
.catch(done.fail);
2017-09-10 17:25:29 +05:30
});
2018-11-20 20:47:30 +05:30
it('should not alter normal images', function(done) {
2017-09-10 17:25:29 +05:30
const newImg = document.createElement('img');
2018-12-05 23:21:45 +05:30
const testPath = `${TEST_HOST}/img/testimg.png`;
2017-09-10 17:25:29 +05:30
newImg.setAttribute('src', testPath);
document.body.appendChild(newImg);
2019-02-15 15:39:39 +05:30
scrollIntoViewPromise(newImg)
.then(waitForPromises)
.then(() => {
2019-12-21 20:55:43 +05:30
expect(LazyLoader.loadImage).not.toHaveBeenCalledWith(newImg);
2019-02-15 15:39:39 +05:30
expect(newImg).not.toHaveClass('js-lazy-loaded');
done();
})
.catch(done.fail);
2018-12-05 23:21:45 +05:30
});
it('should not load dynamically added pictures if content observer is turned off', done => {
lazyLoader.stopContentObserver();
const newImg = document.createElement('img');
const testPath = `${TEST_HOST}/img/testimg.png`;
newImg.className = 'lazy';
newImg.setAttribute('data-src', testPath);
document.body.appendChild(newImg);
2019-02-15 15:39:39 +05:30
scrollIntoViewPromise(newImg)
.then(waitForPromises)
.then(() => {
2019-12-21 20:55:43 +05:30
expect(LazyLoader.loadImage).not.toHaveBeenCalledWith(newImg);
2019-02-15 15:39:39 +05:30
expect(newImg).not.toHaveClass('js-lazy-loaded');
done();
})
.catch(done.fail);
2018-12-05 23:21:45 +05:30
});
it('should load dynamically added pictures if content observer is turned off and on again', done => {
lazyLoader.stopContentObserver();
lazyLoader.startContentObserver();
const newImg = document.createElement('img');
const testPath = `${TEST_HOST}/img/testimg.png`;
newImg.className = 'lazy';
newImg.setAttribute('data-src', testPath);
document.body.appendChild(newImg);
2019-02-15 15:39:39 +05:30
Promise.all([
scrollIntoViewPromise(newImg),
waitForAttributeChange(newImg, ['data-src', 'src']),
])
.then(() => {
2019-12-21 20:55:43 +05:30
expect(LazyLoader.loadImage).toHaveBeenCalledWith(newImg);
2019-02-15 15:39:39 +05:30
expect(newImg).toHaveClass('js-lazy-loaded');
done();
})
.catch(done.fail);
2017-09-10 17:25:29 +05:30
});
});
});