2022-07-16 23:28:13 +05:30
|
|
|
import { setHTMLFixture, resetHTMLFixture } from 'helpers/fixtures';
|
2020-11-24 15:15:51 +05:30
|
|
|
import initAlertHandler from '~/alert_handler';
|
|
|
|
|
|
|
|
describe('Alert Handler', () => {
|
2021-01-03 14:25:43 +05:30
|
|
|
const ALERT_CLASS = 'gl-alert';
|
|
|
|
const BANNER_CLASS = 'gl-banner';
|
|
|
|
const DISMISS_CLASS = 'gl-alert-dismiss';
|
|
|
|
const DISMISS_LABEL = 'Dismiss';
|
2020-11-24 15:15:51 +05:30
|
|
|
|
2021-03-08 18:12:59 +05:30
|
|
|
const generateHtml = (parentClass) =>
|
2021-01-03 14:25:43 +05:30
|
|
|
`<div class="${parentClass}">
|
|
|
|
<button aria-label="${DISMISS_LABEL}">Dismiss</button>
|
|
|
|
</div>`;
|
|
|
|
|
|
|
|
const findFirstAlert = () => document.querySelector(`.${ALERT_CLASS}`);
|
|
|
|
const findFirstBanner = () => document.querySelector(`.${BANNER_CLASS}`);
|
|
|
|
const findAllAlerts = () => document.querySelectorAll(`.${ALERT_CLASS}`);
|
|
|
|
const findFirstDismissButton = () => document.querySelector(`[aria-label="${DISMISS_LABEL}"]`);
|
|
|
|
const findFirstDismissButtonByClass = () => document.querySelector(`.${DISMISS_CLASS}`);
|
2020-11-24 15:15:51 +05:30
|
|
|
|
|
|
|
describe('initAlertHandler', () => {
|
|
|
|
describe('with one alert', () => {
|
|
|
|
beforeEach(() => {
|
2021-01-03 14:25:43 +05:30
|
|
|
setHTMLFixture(generateHtml(ALERT_CLASS));
|
2020-11-24 15:15:51 +05:30
|
|
|
initAlertHandler();
|
|
|
|
});
|
|
|
|
|
2022-07-16 23:28:13 +05:30
|
|
|
afterEach(() => {
|
|
|
|
resetHTMLFixture();
|
|
|
|
});
|
|
|
|
|
2020-11-24 15:15:51 +05:30
|
|
|
it('should render the alert', () => {
|
2021-12-11 22:18:48 +05:30
|
|
|
expect(findFirstAlert()).not.toBe(null);
|
2020-11-24 15:15:51 +05:30
|
|
|
});
|
|
|
|
|
|
|
|
it('should dismiss the alert on click', () => {
|
2021-01-03 14:25:43 +05:30
|
|
|
findFirstDismissButton().click();
|
2021-12-11 22:18:48 +05:30
|
|
|
expect(findFirstAlert()).toBe(null);
|
2020-11-24 15:15:51 +05:30
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('with two alerts', () => {
|
|
|
|
beforeEach(() => {
|
2021-01-03 14:25:43 +05:30
|
|
|
setHTMLFixture(generateHtml(ALERT_CLASS) + generateHtml(ALERT_CLASS));
|
2020-11-24 15:15:51 +05:30
|
|
|
initAlertHandler();
|
|
|
|
});
|
|
|
|
|
2022-07-16 23:28:13 +05:30
|
|
|
afterEach(() => {
|
|
|
|
resetHTMLFixture();
|
|
|
|
});
|
|
|
|
|
2020-11-24 15:15:51 +05:30
|
|
|
it('should render two alerts', () => {
|
|
|
|
expect(findAllAlerts()).toHaveLength(2);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should dismiss only one alert on click', () => {
|
2021-01-03 14:25:43 +05:30
|
|
|
findFirstDismissButton().click();
|
2020-11-24 15:15:51 +05:30
|
|
|
expect(findAllAlerts()).toHaveLength(1);
|
|
|
|
});
|
|
|
|
});
|
2021-01-03 14:25:43 +05:30
|
|
|
|
|
|
|
describe('with a dismissible banner', () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
setHTMLFixture(generateHtml(BANNER_CLASS));
|
|
|
|
initAlertHandler();
|
|
|
|
});
|
|
|
|
|
2022-07-16 23:28:13 +05:30
|
|
|
afterEach(() => {
|
|
|
|
resetHTMLFixture();
|
|
|
|
});
|
|
|
|
|
2021-01-03 14:25:43 +05:30
|
|
|
it('should render the banner', () => {
|
2021-12-11 22:18:48 +05:30
|
|
|
expect(findFirstBanner()).not.toBe(null);
|
2021-01-03 14:25:43 +05:30
|
|
|
});
|
|
|
|
|
|
|
|
it('should dismiss the banner on click', () => {
|
|
|
|
findFirstDismissButton().click();
|
2021-12-11 22:18:48 +05:30
|
|
|
expect(findFirstBanner()).toBe(null);
|
2021-01-03 14:25:43 +05:30
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
// Dismiss buttons *should* have the correct aria labels, but some of them won't
|
|
|
|
// because legacy code isn't always a11y compliant.
|
|
|
|
// This tests that the fallback for the incorrectly labelled buttons works.
|
|
|
|
describe('with a mislabelled dismiss button', () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
setHTMLFixture(`<div class="${ALERT_CLASS}">
|
|
|
|
<button class="${DISMISS_CLASS}">Dismiss</button>
|
|
|
|
</div>`);
|
|
|
|
initAlertHandler();
|
|
|
|
});
|
|
|
|
|
2022-07-16 23:28:13 +05:30
|
|
|
afterEach(() => {
|
|
|
|
resetHTMLFixture();
|
|
|
|
});
|
|
|
|
|
2021-01-03 14:25:43 +05:30
|
|
|
it('should render the banner', () => {
|
2021-12-11 22:18:48 +05:30
|
|
|
expect(findFirstAlert()).not.toBe(null);
|
2021-01-03 14:25:43 +05:30
|
|
|
});
|
|
|
|
|
|
|
|
it('should dismiss the banner on click', () => {
|
|
|
|
findFirstDismissButtonByClass().click();
|
2021-12-11 22:18:48 +05:30
|
|
|
expect(findFirstAlert()).toBe(null);
|
2021-01-03 14:25:43 +05:30
|
|
|
});
|
|
|
|
});
|
2020-11-24 15:15:51 +05:30
|
|
|
});
|
|
|
|
});
|