|
| 1 | +import {cleanup, fireEvent, render} from '@testing-library/react'; |
| 2 | +import React from 'react'; |
| 3 | +import {AllCheckerCheckbox, Checkbox, CheckboxGroup} from "../src"; |
| 4 | + |
| 5 | +// automatically unmount and cleanup DOM after the test is finished. |
| 6 | +afterEach(cleanup); |
| 7 | + |
| 8 | +it('Unchecked allCheckerCheckbox will check on click', () => { |
| 9 | + const component = render( |
| 10 | + <CheckboxGroup> |
| 11 | + <AllCheckerCheckbox id={"test-checkbox"} data-testid="test-checkbox" /> |
| 12 | + </CheckboxGroup> |
| 13 | + ); |
| 14 | + |
| 15 | + const checkbox = component.getByTestId('test-checkbox') as HTMLInputElement; |
| 16 | + |
| 17 | + expect(checkbox.checked).toEqual(false); |
| 18 | + fireEvent.click(checkbox); |
| 19 | + expect(checkbox.checked).toEqual(true); |
| 20 | +}); |
| 21 | + |
| 22 | +it('Checked allCheckerCheckbox will uncheck on click', () => { |
| 23 | + const component = render( |
| 24 | + <CheckboxGroup defaultChecked> |
| 25 | + <AllCheckerCheckbox id={"test-checkbox"} data-testid="test-checkbox" /> |
| 26 | + </CheckboxGroup> |
| 27 | + ); |
| 28 | + |
| 29 | + const checkbox = component.getByTestId('test-checkbox') as HTMLInputElement; |
| 30 | + |
| 31 | + expect(checkbox.checked).toEqual(true); |
| 32 | + fireEvent.click(checkbox); |
| 33 | + expect(checkbox.checked).toEqual(false); |
| 34 | +}); |
| 35 | + |
| 36 | +it('All checkboxes will check on allCheckboxesChecker click', () => { |
| 37 | + const component = render( |
| 38 | + <CheckboxGroup> |
| 39 | + <AllCheckerCheckbox id={"all-checker-checkbox"} data-testid="all-checker-checkbox" /> |
| 40 | + <Checkbox id={"test-checkbox-1"} data-testid="test-checkbox-1" /> |
| 41 | + <Checkbox id={"test-checkbox-2"} data-testid="test-checkbox-2" /> |
| 42 | + </CheckboxGroup> |
| 43 | + ); |
| 44 | + |
| 45 | + const allCheckerCheckbox = component.getByTestId('all-checker-checkbox') as HTMLInputElement; |
| 46 | + const checkbox1 = component.getByTestId('test-checkbox-1') as HTMLInputElement; |
| 47 | + const checkbox2 = component.getByTestId('test-checkbox-2') as HTMLInputElement; |
| 48 | + |
| 49 | + expect(checkbox1.checked).toEqual(false); |
| 50 | + expect(checkbox2.checked).toEqual(false); |
| 51 | + fireEvent.click(allCheckerCheckbox); |
| 52 | + expect(checkbox1.checked).toEqual(true); |
| 53 | + expect(checkbox2.checked).toEqual(true); |
| 54 | +}); |
| 55 | + |
| 56 | +it('All checkboxes will uncheck on allCheckboxesChecker click', () => { |
| 57 | + const component = render( |
| 58 | + <CheckboxGroup> |
| 59 | + <AllCheckerCheckbox id={"all-checker-checkbox"} data-testid="all-checker-checkbox" /> |
| 60 | + <Checkbox id={"test-checkbox-1"} data-testid="test-checkbox-1" checked/> |
| 61 | + <Checkbox id={"test-checkbox-2"} data-testid="test-checkbox-2" checked/> |
| 62 | + </CheckboxGroup> |
| 63 | + ); |
| 64 | + |
| 65 | + const allCheckerCheckbox = component.getByTestId('all-checker-checkbox') as HTMLInputElement; |
| 66 | + const checkbox1 = component.getByTestId('test-checkbox-1') as HTMLInputElement; |
| 67 | + const checkbox2 = component.getByTestId('test-checkbox-2') as HTMLInputElement; |
| 68 | + |
| 69 | + expect(checkbox1.checked).toEqual(true); |
| 70 | + expect(checkbox2.checked).toEqual(true); |
| 71 | + fireEvent.click(allCheckerCheckbox); |
| 72 | + expect(checkbox1.checked).toEqual(false); |
| 73 | + expect(checkbox2.checked).toEqual(false); |
| 74 | +}); |
| 75 | + |
| 76 | + |
| 77 | +it('All allCheckerCheckboxes will uncheck when not all checkboxes are checked', () => { |
| 78 | + const component = render( |
| 79 | + <CheckboxGroup> |
| 80 | + <AllCheckerCheckbox id={"all-checker-checkbox-1"} data-testid="all-checker-checkbox-1" /> |
| 81 | + <Checkbox id={"test-checkbox-1"} data-testid="test-checkbox" checked/> |
| 82 | + <Checkbox id={"test-checkbox-2"} checked/> |
| 83 | + <Checkbox id={"test-checkbox-3"} checked/> |
| 84 | + <AllCheckerCheckbox id={"all-checker-checkbox-2"} data-testid="all-checker-checkbox-2" /> |
| 85 | + </CheckboxGroup> |
| 86 | + ); |
| 87 | + |
| 88 | + const allCheckerCheckbox1 = component.getByTestId('all-checker-checkbox-1') as HTMLInputElement; |
| 89 | + const allCheckerCheckbox2 = component.getByTestId('all-checker-checkbox-2') as HTMLInputElement; |
| 90 | + const checkbox = component.getByTestId('test-checkbox') as HTMLInputElement; |
| 91 | + |
| 92 | + expect(allCheckerCheckbox1.checked).toEqual(true); |
| 93 | + expect(allCheckerCheckbox2.checked).toEqual(true); |
| 94 | + fireEvent.click(checkbox); |
| 95 | + expect(allCheckerCheckbox1.checked).toEqual(false); |
| 96 | + expect(allCheckerCheckbox2.checked).toEqual(false); |
| 97 | +}); |
| 98 | + |
| 99 | +it('All allCheckerCheckboxes will check when all checkboxes are checked', () => { |
| 100 | + const component = render( |
| 101 | + <CheckboxGroup> |
| 102 | + <AllCheckerCheckbox id={"all-checker-checkbox-1"} data-testid="all-checker-checkbox-1" /> |
| 103 | + <Checkbox id={"test-checkbox-1"} data-testid="test-checkbox-1" /> |
| 104 | + <Checkbox id={"test-checkbox-2"} data-testid="test-checkbox-2" /> |
| 105 | + <Checkbox id={"test-checkbox-3"} data-testid="test-checkbox-3" /> |
| 106 | + <AllCheckerCheckbox id={"all-checker-checkbox-2"} data-testid="all-checker-checkbox-2" /> |
| 107 | + </CheckboxGroup> |
| 108 | + ); |
| 109 | + |
| 110 | + const allCheckerCheckbox1 = component.getByTestId('all-checker-checkbox-1') as HTMLInputElement; |
| 111 | + const allCheckerCheckbox2 = component.getByTestId('all-checker-checkbox-2') as HTMLInputElement; |
| 112 | + const checkbox1 = component.getByTestId('test-checkbox-1') as HTMLInputElement; |
| 113 | + const checkbox2 = component.getByTestId('test-checkbox-2') as HTMLInputElement; |
| 114 | + const checkbox3 = component.getByTestId('test-checkbox-3') as HTMLInputElement; |
| 115 | + |
| 116 | + expect(allCheckerCheckbox1.checked).toEqual(false); |
| 117 | + expect(allCheckerCheckbox2.checked).toEqual(false); |
| 118 | + fireEvent.click(checkbox1); |
| 119 | + fireEvent.click(checkbox2); |
| 120 | + fireEvent.click(checkbox3); |
| 121 | + expect(allCheckerCheckbox1.checked).toEqual(true); |
| 122 | + expect(allCheckerCheckbox2.checked).toEqual(true); |
| 123 | +}); |
| 124 | + |
| 125 | +it('Click on allCheckerCheckbox will trigger onChange on checkboxGroup', () => { |
| 126 | + const testOnChange = jest.fn(); |
| 127 | + |
| 128 | + const component = render( |
| 129 | + <CheckboxGroup onChange={testOnChange}> |
| 130 | + <AllCheckerCheckbox id={"all-checker-checkbox-1"} data-testid="all-checker-checkbox-1" /> |
| 131 | + <Checkbox id={"test-checkbox-1"} data-testid="test-checkbox-1" /> |
| 132 | + <Checkbox id={"test-checkbox-2"} data-testid="test-checkbox-2" /> |
| 133 | + <Checkbox id={"test-checkbox-3"} data-testid="test-checkbox-3" /> |
| 134 | + <AllCheckerCheckbox id={"all-checker-checkbox-2"} data-testid="all-checker-checkbox-2" /> |
| 135 | + </CheckboxGroup> |
| 136 | + ); |
| 137 | + setTimeout(() => { |
| 138 | + const allCheckerCheckbox1 = component.getByTestId('all-checker-checkbox-1') as HTMLInputElement; |
| 139 | + fireEvent.click(allCheckerCheckbox1); |
| 140 | + expect(testOnChange.mock.calls.length).toBe(1); |
| 141 | + }, 251); |
| 142 | +}); |
| 143 | + |
| 144 | +it('Click will trigger onChange on allCheckerCheckbox', () => { |
| 145 | + const testOnChange = jest.fn(); |
| 146 | + |
| 147 | + const component = render( |
| 148 | + <CheckboxGroup> |
| 149 | + <AllCheckerCheckbox id={"test-checkbox"} data-testid="test-checkbox" onChange={testOnChange} /> |
| 150 | + </CheckboxGroup> |
| 151 | + ); |
| 152 | + |
| 153 | + const checkbox1 = component.getByTestId('test-checkbox') as HTMLInputElement; |
| 154 | + |
| 155 | + fireEvent.click(checkbox1); |
| 156 | + expect(testOnChange.mock.calls.length).toBe(1); |
| 157 | +}); |
| 158 | + |
| 159 | + |
0 commit comments