-
Notifications
You must be signed in to change notification settings - Fork 190
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Loom-1535] - add form-test to bpkSlider (#3579)
- Loading branch information
1 parent
99ead74
commit e25ea97
Showing
1 changed file
with
109 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,109 @@ | ||
/* | ||
* Backpack - Skyscanner's Design System | ||
* | ||
* Copyright 2016 Skyscanner Ltd | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
import { useState } from 'react'; | ||
|
||
import { render, screen } from '@testing-library/react'; | ||
import userEvent from '@testing-library/user-event'; | ||
|
||
import BpkSlider from './BpkSlider'; | ||
|
||
window.ResizeObserver = | ||
window.ResizeObserver || | ||
jest.fn().mockImplementation(() => ({ | ||
disconnect: jest.fn(), | ||
observe: jest.fn(), | ||
unobserve: jest.fn(), | ||
})); | ||
|
||
describe('BpkSlider form-test for single-thumb slider', () => { | ||
it('should work as a form component in a form', async () => { | ||
const Wrap = () => { | ||
const [sliderValue, setSliderValue] = useState<number>(50); // single-thumb slider with only max value | ||
return ( | ||
<form data-testid="form"> | ||
<BpkSlider | ||
id="slider" | ||
min={0} | ||
max={100} | ||
value={sliderValue} | ||
name="slider" | ||
ariaLabel={['slider']} | ||
ariaValuetext={['min', 'max']} | ||
data-testid="mySlider" | ||
onChange={(value) => setSliderValue(value as number)} | ||
/> | ||
</form> | ||
); | ||
}; | ||
|
||
render(<Wrap />); | ||
|
||
const sliderThumb = screen.getByLabelText('slider'); | ||
expect(sliderThumb).toBeInTheDocument(); | ||
await sliderThumb.focus(); | ||
await userEvent.keyboard('{ArrowRight}'); | ||
|
||
const form = screen.getByTestId('form') as HTMLFormElement; | ||
const formData = new FormData(form); | ||
expect(Object.fromEntries(formData.entries())).toEqual({ | ||
slider: '51', | ||
}); | ||
}); | ||
|
||
it('should emit change event when both sides of slider value are changed for two-thumb slider', async () => { | ||
const handleChange = jest.fn(); | ||
const Wrap = () => { | ||
const [sliderValue, setSliderValue] = useState<number[]>([0, 100]); // two-thumb slider with min and max value | ||
return ( | ||
<form data-testid="form"> | ||
<BpkSlider | ||
id="slider" | ||
min={0} | ||
max={100} | ||
name="slider" | ||
ariaLabel={['min', 'max']} | ||
ariaValuetext={['0', '100']} | ||
value={sliderValue} | ||
onChange={(value) => { | ||
handleChange(value as number[]); | ||
setSliderValue(value as number[]); | ||
}} | ||
/> | ||
</form> | ||
); | ||
}; | ||
render(<Wrap />); | ||
|
||
const sliderThumbMin = screen.getByLabelText('min'); | ||
expect(sliderThumbMin).toBeInTheDocument(); | ||
|
||
await sliderThumbMin.focus(); | ||
await userEvent.keyboard('{ArrowRight}'); | ||
expect(handleChange).toHaveBeenCalledTimes(1); | ||
expect(handleChange).toHaveBeenCalledWith([1, 100]); | ||
|
||
const sliderThumbMax = screen.getByLabelText('max'); | ||
expect(sliderThumbMax).toBeInTheDocument(); | ||
|
||
await sliderThumbMax.focus(); | ||
await userEvent.keyboard('{ArrowLeft}'); | ||
expect(handleChange).toHaveBeenCalledTimes(2); | ||
expect(handleChange).toHaveBeenCalledWith([1, 99]); | ||
}); | ||
}); |