blob: ea2fb36edfc4d2059ff8cccf14ae4c50b3653ef5 [file] [log] [blame]
/* eslint-env mocha */
import expect from 'expect';
import { elementType } from 'jsx-ast-utils';
import isNonInteractiveElement from '../../../src/util/isNonInteractiveElement';
import {
genElementSymbol,
genIndeterminantInteractiveElements,
genInteractiveElements,
genInteractiveRoleElements,
genNonInteractiveElements,
genNonInteractiveRoleElements,
} from '../../../__mocks__/genInteractives';
describe('isNonInteractiveElement', () => {
describe('JSX Components (no tagName)', () => {
it('should identify them as interactive elements', () => {
expect(isNonInteractiveElement(undefined, []))
.toBe(false);
});
});
describe('non-interactive elements', () => {
genNonInteractiveElements().forEach(({ openingElement }) => {
it(`should identify \`${genElementSymbol(openingElement)}\` as a non-interactive element`, () => {
expect(isNonInteractiveElement(
elementType(openingElement),
openingElement.attributes,
)).toBe(true);
});
});
});
describe('non-interactive role elements', () => {
genNonInteractiveRoleElements().forEach(({ openingElement }) => {
it(`should NOT identify \`${genElementSymbol(openingElement)}\` as a non-interactive element`, () => {
expect(isNonInteractiveElement(
elementType(openingElement),
openingElement.attributes,
)).toBe(false);
});
});
});
describe('interactive elements', () => {
genInteractiveElements().forEach(({ openingElement }) => {
it(`should NOT identify \`${genElementSymbol(openingElement)}\` as a non-interactive element`, () => {
expect(isNonInteractiveElement(
elementType(openingElement),
openingElement.attributes,
)).toBe(false);
});
});
});
describe('interactive role elements', () => {
genInteractiveRoleElements().forEach(({ openingElement }) => {
it(`should NOT identify \`${genElementSymbol(openingElement)}\` as a non-interactive element`, () => {
expect(isNonInteractiveElement(
elementType(openingElement),
openingElement.attributes,
)).toBe(false);
});
});
});
describe('indeterminate elements', () => {
genIndeterminantInteractiveElements().forEach(({ openingElement }) => {
it(`should NOT identify \`${openingElement.name.name}\` as a non-interactive element`, () => {
expect(isNonInteractiveElement(
elementType(openingElement),
openingElement.attributes,
)).toBe(false);
});
});
});
});