2017-10-04 07:13:11 -04:00
|
|
|
import flash, {
|
|
|
|
createFlashEl,
|
|
|
|
createAction,
|
|
|
|
hideFlash,
|
2017-10-13 05:35:40 -04:00
|
|
|
removeFlashClickListener,
|
2017-10-04 07:13:11 -04:00
|
|
|
} from '~/flash';
|
|
|
|
|
|
|
|
describe('Flash', () => {
|
|
|
|
describe('createFlashEl', () => {
|
|
|
|
let el;
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
el = document.createElement('div');
|
|
|
|
});
|
|
|
|
|
|
|
|
afterEach(() => {
|
|
|
|
el.innerHTML = '';
|
|
|
|
});
|
|
|
|
|
|
|
|
it('creates flash element with type', () => {
|
|
|
|
el.innerHTML = createFlashEl('testing', 'alert');
|
|
|
|
|
|
|
|
expect(
|
|
|
|
el.querySelector('.flash-alert'),
|
|
|
|
).not.toBeNull();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('escapes text', () => {
|
|
|
|
el.innerHTML = createFlashEl('<script>alert("a");</script>', 'alert');
|
|
|
|
|
|
|
|
expect(
|
|
|
|
el.querySelector('.flash-text').textContent.trim(),
|
|
|
|
).toBe('<script>alert("a");</script>');
|
|
|
|
});
|
2017-10-05 05:27:43 -04:00
|
|
|
|
|
|
|
it('adds container classes when inside content wrapper', () => {
|
|
|
|
el.innerHTML = createFlashEl('testing', 'alert', true);
|
|
|
|
|
|
|
|
expect(
|
|
|
|
el.querySelector('.flash-text').classList.contains('container-fluid'),
|
|
|
|
).toBeTruthy();
|
|
|
|
expect(
|
|
|
|
el.querySelector('.flash-text').classList.contains('container-limited'),
|
|
|
|
).toBeTruthy();
|
|
|
|
});
|
2017-10-04 07:13:11 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
describe('hideFlash', () => {
|
|
|
|
let el;
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
el = document.createElement('div');
|
|
|
|
el.className = 'js-testing';
|
|
|
|
});
|
|
|
|
|
|
|
|
it('sets transition style', () => {
|
|
|
|
hideFlash(el);
|
|
|
|
|
|
|
|
expect(
|
|
|
|
el.style.transition,
|
|
|
|
).toBe('opacity 0.3s');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('sets opacity style', () => {
|
|
|
|
hideFlash(el);
|
|
|
|
|
|
|
|
expect(
|
|
|
|
el.style.opacity,
|
|
|
|
).toBe('0');
|
|
|
|
});
|
|
|
|
|
2017-10-05 05:27:43 -04:00
|
|
|
it('does not set styles when fadeTransition is false', () => {
|
|
|
|
hideFlash(el, false);
|
|
|
|
|
|
|
|
expect(
|
|
|
|
el.style.opacity,
|
|
|
|
).toBe('');
|
|
|
|
expect(
|
|
|
|
el.style.transition,
|
|
|
|
).toBe('');
|
|
|
|
});
|
|
|
|
|
2017-10-04 07:13:11 -04:00
|
|
|
it('removes element after transitionend', () => {
|
|
|
|
document.body.appendChild(el);
|
|
|
|
|
|
|
|
hideFlash(el);
|
|
|
|
el.dispatchEvent(new Event('transitionend'));
|
|
|
|
|
|
|
|
expect(
|
|
|
|
document.querySelector('.js-testing'),
|
|
|
|
).toBeNull();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('calls event listener callback once', () => {
|
|
|
|
spyOn(el, 'remove').and.callThrough();
|
|
|
|
document.body.appendChild(el);
|
|
|
|
|
|
|
|
hideFlash(el);
|
|
|
|
|
|
|
|
el.dispatchEvent(new Event('transitionend'));
|
|
|
|
el.dispatchEvent(new Event('transitionend'));
|
|
|
|
|
|
|
|
expect(
|
|
|
|
el.remove.calls.count(),
|
|
|
|
).toBe(1);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('createAction', () => {
|
|
|
|
let el;
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
el = document.createElement('div');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('creates link with href', () => {
|
|
|
|
el.innerHTML = createAction({
|
|
|
|
href: 'testing',
|
|
|
|
title: 'test',
|
|
|
|
});
|
|
|
|
|
|
|
|
expect(
|
|
|
|
el.querySelector('.flash-action').href,
|
|
|
|
).toContain('testing');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('uses hash as href when no href is present', () => {
|
|
|
|
el.innerHTML = createAction({
|
|
|
|
title: 'test',
|
|
|
|
});
|
|
|
|
|
|
|
|
expect(
|
|
|
|
el.querySelector('.flash-action').href,
|
|
|
|
).toContain('#');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('adds role when no href is present', () => {
|
|
|
|
el.innerHTML = createAction({
|
|
|
|
title: 'test',
|
|
|
|
});
|
|
|
|
|
|
|
|
expect(
|
|
|
|
el.querySelector('.flash-action').getAttribute('role'),
|
|
|
|
).toBe('button');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('escapes the title text', () => {
|
|
|
|
el.innerHTML = createAction({
|
|
|
|
title: '<script>alert("a")</script>',
|
|
|
|
});
|
|
|
|
|
|
|
|
expect(
|
|
|
|
el.querySelector('.flash-action').textContent.trim(),
|
|
|
|
).toBe('<script>alert("a")</script>');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('createFlash', () => {
|
|
|
|
describe('no flash-container', () => {
|
|
|
|
it('does not add to the DOM', () => {
|
|
|
|
const flashEl = flash('testing');
|
|
|
|
|
|
|
|
expect(
|
|
|
|
flashEl,
|
|
|
|
).toBeNull();
|
|
|
|
expect(
|
|
|
|
document.querySelector('.flash-alert'),
|
|
|
|
).toBeNull();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('with flash-container', () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
document.body.innerHTML += `
|
|
|
|
<div class="content-wrapper js-content-wrapper">
|
|
|
|
<div class="flash-container"></div>
|
|
|
|
</div>
|
|
|
|
`;
|
|
|
|
});
|
|
|
|
|
|
|
|
afterEach(() => {
|
|
|
|
document.querySelector('.js-content-wrapper').remove();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('adds flash element into container', () => {
|
|
|
|
flash('test');
|
|
|
|
|
|
|
|
expect(
|
|
|
|
document.querySelector('.flash-alert'),
|
|
|
|
).not.toBeNull();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('adds flash into specified parent', () => {
|
|
|
|
flash(
|
|
|
|
'test',
|
|
|
|
'alert',
|
|
|
|
document.querySelector('.content-wrapper'),
|
|
|
|
);
|
|
|
|
|
|
|
|
expect(
|
|
|
|
document.querySelector('.content-wrapper .flash-alert'),
|
|
|
|
).not.toBeNull();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('adds container classes when inside content-wrapper', () => {
|
|
|
|
flash('test');
|
|
|
|
|
|
|
|
expect(
|
|
|
|
document.querySelector('.flash-text').className,
|
2017-10-04 09:44:43 -04:00
|
|
|
).toBe('flash-text container-fluid container-limited');
|
2017-10-04 07:13:11 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
it('does not add container when outside of content-wrapper', () => {
|
|
|
|
document.querySelector('.content-wrapper').className = 'js-content-wrapper';
|
|
|
|
flash('test');
|
|
|
|
|
|
|
|
expect(
|
2017-10-05 05:27:43 -04:00
|
|
|
document.querySelector('.flash-text').className.trim(),
|
2017-10-04 09:44:43 -04:00
|
|
|
).toBe('flash-text');
|
2017-10-04 07:13:11 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
it('removes element after clicking', () => {
|
|
|
|
flash('test', 'alert', document, null, false);
|
|
|
|
|
|
|
|
document.querySelector('.flash-alert').click();
|
|
|
|
|
|
|
|
expect(
|
|
|
|
document.querySelector('.flash-alert'),
|
|
|
|
).toBeNull();
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('with actionConfig', () => {
|
|
|
|
it('adds action link', () => {
|
|
|
|
flash(
|
|
|
|
'test',
|
|
|
|
'alert',
|
|
|
|
document,
|
|
|
|
{
|
|
|
|
title: 'test',
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
|
|
|
expect(
|
|
|
|
document.querySelector('.flash-action'),
|
|
|
|
).not.toBeNull();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('calls actionConfig clickHandler on click', () => {
|
|
|
|
const actionConfig = {
|
|
|
|
title: 'test',
|
|
|
|
clickHandler: jasmine.createSpy('actionConfig'),
|
|
|
|
};
|
|
|
|
|
|
|
|
flash(
|
|
|
|
'test',
|
|
|
|
'alert',
|
|
|
|
document,
|
|
|
|
actionConfig,
|
|
|
|
);
|
|
|
|
|
|
|
|
document.querySelector('.flash-action').click();
|
|
|
|
|
|
|
|
expect(
|
|
|
|
actionConfig.clickHandler,
|
|
|
|
).toHaveBeenCalled();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2017-10-13 05:35:40 -04:00
|
|
|
|
|
|
|
describe('removeFlashClickListener', () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
document.body.innerHTML += '<div class="flash-container"><div class="flash"></div></div>';
|
|
|
|
});
|
|
|
|
|
|
|
|
it('removes global flash on click', (done) => {
|
|
|
|
const flashEl = document.querySelector('.flash');
|
|
|
|
|
|
|
|
removeFlashClickListener(flashEl, false);
|
|
|
|
|
|
|
|
flashEl.parentNode.click();
|
|
|
|
|
|
|
|
setTimeout(() => {
|
|
|
|
expect(document.querySelector('.flash')).toBeNull();
|
|
|
|
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2017-10-04 07:13:11 -04:00
|
|
|
});
|