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

58 lines
1.8 KiB
JavaScript
Raw Normal View History

2017-09-10 17:25:29 +05:30
import LazyLoader from '~/lazy_loader';
let lazyLoader = null;
2018-11-20 20:47:30 +05:30
describe('LazyLoader', function() {
2017-09-10 17:25:29 +05:30
preloadFixtures('issues/issue_with_comment.html.raw');
2018-11-20 20:47:30 +05:30
beforeEach(function() {
2017-09-10 17:25:29 +05:30
loadFixtures('issues/issue_with_comment.html.raw');
lazyLoader = new LazyLoader({
observerNode: 'body',
});
// Doing everything that happens normally in onload
lazyLoader.loadCheck();
});
2018-11-20 20:47:30 +05:30
describe('behavior', function() {
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');
img.scrollIntoView();
setTimeout(() => {
expect(img.getAttribute('src')).toBe(originalDataSrc);
expect(document.getElementsByClassName('js-lazy-loaded').length).toBeGreaterThan(0);
done();
}, 100);
});
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');
const testPath = '/img/testimg.png';
newImg.className = 'lazy';
newImg.setAttribute('data-src', testPath);
document.body.appendChild(newImg);
newImg.scrollIntoView();
setTimeout(() => {
expect(newImg.getAttribute('src')).toBe(testPath);
expect(document.getElementsByClassName('js-lazy-loaded').length).toBeGreaterThan(0);
done();
}, 100);
});
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');
const testPath = '/img/testimg.png';
newImg.setAttribute('src', testPath);
document.body.appendChild(newImg);
newImg.scrollIntoView();
setTimeout(() => {
expect(newImg).not.toHaveClass('js-lazy-loaded');
done();
}, 100);
});
});
});