-
-
Notifications
You must be signed in to change notification settings - Fork 32.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
04563ae
commit f4fa2ce
Showing
1 changed file
with
90 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,90 @@ | ||
import * as React from 'react'; | ||
import { expect } from 'chai'; | ||
import { spy } from 'sinon'; | ||
import { createRenderer, screen, fireEvent } from '@mui-internal/test-utils'; | ||
import { useSlider } from './useSlider'; | ||
|
||
describe('useSlider', () => { | ||
const { render } = createRenderer(); | ||
describe('getRootProps', () => { | ||
it('forwards external props including event handlers', () => { | ||
const rootRef = React.createRef(); | ||
|
||
const handleClick = spy(); | ||
|
||
function Test() { | ||
const { getRootProps } = useSlider({ | ||
rootRef, | ||
marks: [ | ||
{ | ||
label: 'One', | ||
value: 1, | ||
}, | ||
], | ||
}); | ||
|
||
return ( | ||
<div {...getRootProps({ 'data-testid': 'test-slider-root', onClick: handleClick })} /> | ||
); | ||
} | ||
|
||
render(<Test />); | ||
|
||
const slider = screen.getByTestId('test-slider-root'); | ||
expect(slider).not.to.equal(null); | ||
expect(rootRef.current).to.deep.equal(slider); | ||
|
||
fireEvent.click(slider); | ||
expect(handleClick.callCount).to.equal(1); | ||
}); | ||
}); | ||
|
||
describe('getHiddenInputProps', () => { | ||
function Test( | ||
props = { | ||
slotProps: { | ||
input: {}, | ||
}, | ||
}, | ||
) { | ||
const { getRootProps, getThumbProps, getHiddenInputProps } = useSlider({ | ||
marks: [ | ||
{ | ||
label: 'One', | ||
value: 1, | ||
}, | ||
], | ||
}); | ||
|
||
return ( | ||
<div {...getRootProps()}> | ||
<div {...getThumbProps()}> | ||
<input | ||
value={1} | ||
{...getHiddenInputProps({ 'data-testid': 'test-input', ...props.slotProps.input })} | ||
/> | ||
</div> | ||
</div> | ||
); | ||
} | ||
|
||
it('forwards external props including event handlers', () => { | ||
const handleClick = spy(); | ||
render( | ||
<Test | ||
slotProps={{ | ||
input: { | ||
onClick: handleClick, | ||
}, | ||
}} | ||
/>, | ||
); | ||
|
||
const input = screen.getByTestId('test-input'); | ||
expect(input).not.to.equal(null); | ||
|
||
fireEvent.click(input); | ||
expect(handleClick.callCount).to.equal(1); | ||
}); | ||
}); | ||
}); |