UNPKG

e-lado

Version:

[![CircleCI](https://circleci.com/gh/sharetribe/sharetribe/tree/master.svg?style=svg)](https://circleci.com/gh/sharetribe/sharetribe/tree/master) [![Dependency Status](https://gemnasium.com/sharetribe/sharetribe.png)](https://gemnasium.com/sharetribe/shar

107 lines (97 loc) 3.74 kB
/* eslint-env jest */ /** * @fileoverview Enforce label tags have htmlFor attribute. * @author Ethan Cohen */ // ----------------------------------------------------------------------------- // Requirements // ----------------------------------------------------------------------------- import { RuleTester } from 'eslint'; import parserOptionsMapper from '../../__util__/parserOptionsMapper'; import rule from '../../../src/rules/label-has-for'; // ----------------------------------------------------------------------------- // Tests // ----------------------------------------------------------------------------- const ruleTester = new RuleTester(); const expectedError = { message: 'Form controls using a label to identify them must be ' + 'programmatically associated with the control using htmlFor', type: 'JSXOpeningElement', }; const array = [{ components: ['Label', 'Descriptor'], }]; ruleTester.run('label-has-for', rule, { valid: [ // DEFAULT ELEMENT 'label' TESTS { code: '<label htmlFor="foo" />' }, { code: '<label htmlFor={"foo"} />' }, { code: '<label htmlFor={foo} />' }, { code: '<label htmlFor={`${id}`} />' }, { code: '<div />' }, { code: '<label htmlFor="foo">Test!</label>' }, { code: '<Label />' }, // lower-case convention refers to real HTML elements. { code: '<Label htmlFor="foo" />' }, { code: '<UX.Layout>test</UX.Layout>' }, // CUSTOM ELEMENT ARRAY OPTION TESTS { code: '<Label htmlFor="foo" />', options: array }, { code: '<Label htmlFor={"foo"} />', options: array }, { code: '<Label htmlFor={foo} />', options: array }, { code: '<Label htmlFor={`${id}`} />', options: array }, { code: '<div />', options: array }, { code: '<Label htmlFor="foo">Test!</Label>', options: array }, { code: '<Descriptor htmlFor="foo" />', options: array }, { code: '<Descriptor htmlFor={"foo"} />', options: array }, { code: '<Descriptor htmlFor={foo} />', options: array }, { code: '<Descriptor htmlFor={`${id}`} />', options: array }, { code: '<div />', options: array }, { code: '<Descriptor htmlFor="foo">Test!</Descriptor>', options: array }, ].map(parserOptionsMapper), invalid: [ // DEFAULT ELEMENT 'label' TESTS { code: '<label id="foo" />', errors: [expectedError] }, { code: '<label htmlFor={undefined} />', errors: [expectedError] }, { code: '<label htmlFor={`${undefined}`} />', errors: [expectedError] }, { code: '<label>First Name</label>', errors: [expectedError] }, { code: '<label {...props}>Foo</label>', errors: [expectedError] }, // CUSTOM ELEMENT ARRAY OPTION TESTS { code: '<Label id="foo" />', errors: [expectedError], options: array }, { code: '<Label htmlFor={undefined} />', errors: [expectedError], options: array, }, { code: '<Label htmlFor={`${undefined}`} />', errors: [expectedError], options: array, }, { code: '<Label>First Name</Label>', errors: [expectedError], options: array }, { code: '<Label {...props}>Foo</Label>', errors: [expectedError], options: array, }, { code: '<Descriptor id="foo" />', errors: [expectedError], options: array }, { code: '<Descriptor htmlFor={undefined} />', errors: [expectedError], options: array, }, { code: '<Descriptor htmlFor={`${undefined}`} />', errors: [expectedError], options: array, }, { code: '<Descriptor>First Name</Descriptor>', errors: [expectedError], options: array, }, { code: '<Descriptor {...props}>Foo</Descriptor>', errors: [expectedError], options: array, }, ].map(parserOptionsMapper), });