|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- /// <reference types="jest-enzyme" />
- /// <reference path="../../../utilities/jest/extensions.ts" />
-
- import * as fc from 'fast-check'
- import * as Enzyme from 'enzyme'
- import * as Axe from 'jest-axe'
- import * as React from 'react'
- import Select from './Select'
- import stringify from '../../services/stringify'
-
- it('should exist', () => {
- expect(Select).toBeDefined()
- })
-
- it('should be a component', () => {
- expect(Select).toBeComponent()
- })
-
- it('should render without crashing given required props', () => {
- expect(() => <Select />).not.toThrow()
- })
-
- it('should render a base element to put interactive elements on', () => {
- const wrapper = Enzyme.shallow(<Select />)
-
- expect(wrapper.find('label')).toHaveLength(1)
- })
-
- it('should render a select component for choosing values', () => {
- const wrapper = Enzyme.shallow(<Select />)
-
- expect(wrapper.find('label').find('select')).toHaveLength(1)
- })
-
- describe('on aiding user input', () => {
- it("should render a label to indicate the nature of the component's value", () => {
- const wrapper = Enzyme.shallow(<Select label="foo" />)
-
- expect(wrapper.find('label').find('span')).toHaveLength(1)
- })
-
- it('should render the label text', () => {
- fc.assert(
- fc.property(fc.anything(), (label) => {
- const wrapper = Enzyme.shallow(<Select label={label} />)
-
- expect(wrapper.find('label').find('span')).toHaveText(stringify(label))
- }),
- {
- numRuns: 300,
- },
- )
- })
- })
-
- it('should render a hint for describing valid input values', () => {
- fc.assert(
- fc.property(fc.anything(), (label) => {
- const wrapper = Enzyme.shallow(<Select hint={label} />)
-
- const renderedLabel = stringify(label)
-
- if (renderedLabel.length > 0) {
- expect(wrapper.find('div').children()).toHaveLength(4)
-
- expect(wrapper.find('div').childAt(2)).toHaveText(`(${renderedLabel})`)
- } else {
- expect(wrapper.find('div').children()).toHaveLength(2)
- }
- }),
- )
- })
-
- it('should render as half-opaque when disabled', () => {
- const wrapper = Enzyme.shallow(<Select disabled />)
-
- expect(wrapper.find('div')).toHaveStyle('opacity', 0.5)
- })
-
- it('should allow selection of multiple values', () => {
- const wrapper = Enzyme.shallow(<Select multiple />)
-
- expect(
- wrapper
- .find('label')
- .find('select')
- .prop('multiple'),
- ).toBeTruthy()
- })
-
- it('should guarantee minimal accessibility', () => {
- fc.assert(
- fc.asyncProperty(fc.string(1, 20), async (s) => {
- const wrapper = Enzyme.mount(<Select label={s} />)
- const results = await Axe.axe(wrapper.getDOMNode())
-
- expect(results).toHaveNoViolations()
- }),
- )
- })
|