2022-11-10 10:05:41 +00:00
|
|
|
/**
|
|
|
|
* External dependencies
|
|
|
|
*/
|
|
|
|
import { act, render, screen } from '@testing-library/react';
|
|
|
|
import { VALIDATION_STORE_KEY } from '@woocommerce/block-data';
|
|
|
|
import { dispatch, select } from '@wordpress/data';
|
|
|
|
import userEvent from '@testing-library/user-event';
|
2022-12-06 16:22:34 +00:00
|
|
|
import { useState } from '@wordpress/element';
|
2023-04-11 08:50:59 +00:00
|
|
|
import * as wpData from '@wordpress/data';
|
2022-11-10 10:05:41 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Internal dependencies
|
|
|
|
*/
|
2023-08-09 17:24:51 +00:00
|
|
|
import ValidatedTextInput from '../validated-text-input';
|
2022-11-10 10:05:41 +00:00
|
|
|
|
2023-04-11 08:50:59 +00:00
|
|
|
jest.mock( '@wordpress/data', () => ( {
|
|
|
|
__esModule: true,
|
|
|
|
...jest.requireActual( '@wordpress/data' ),
|
|
|
|
useDispatch: jest.fn().mockImplementation( ( args ) => {
|
|
|
|
return jest.requireActual( '@wordpress/data' ).useDispatch( args );
|
|
|
|
} ),
|
|
|
|
} ) );
|
|
|
|
|
2022-11-10 10:05:41 +00:00
|
|
|
describe( 'ValidatedTextInput', () => {
|
2022-12-06 16:22:34 +00:00
|
|
|
it( 'Removes related validation error on change', async () => {
|
2024-05-15 09:33:36 +00:00
|
|
|
const user = userEvent.setup();
|
|
|
|
|
2022-11-10 10:05:41 +00:00
|
|
|
render(
|
|
|
|
<ValidatedTextInput
|
|
|
|
instanceId={ '0' }
|
|
|
|
accept={ 'image/*' }
|
|
|
|
onChange={ () => void 0 }
|
|
|
|
value={ 'Test' }
|
|
|
|
id={ 'test-input' }
|
|
|
|
label={ 'Test Input' }
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
|
|
|
|
await act( () =>
|
|
|
|
dispatch( VALIDATION_STORE_KEY ).setValidationErrors( {
|
|
|
|
'test-input': {
|
|
|
|
message: 'Error message',
|
|
|
|
hidden: false,
|
|
|
|
},
|
|
|
|
} )
|
|
|
|
);
|
2022-12-06 16:22:34 +00:00
|
|
|
|
|
|
|
await expect(
|
|
|
|
select( VALIDATION_STORE_KEY ).getValidationError( 'test-input' )
|
|
|
|
).not.toBe( undefined );
|
2024-05-15 09:33:36 +00:00
|
|
|
|
2022-11-10 10:05:41 +00:00
|
|
|
const textInputElement = await screen.getByLabelText( 'Test Input' );
|
2024-05-15 09:33:36 +00:00
|
|
|
|
|
|
|
await act( async () => {
|
|
|
|
await user.type( textInputElement, 'New value' );
|
|
|
|
} );
|
|
|
|
|
|
|
|
expect(
|
2022-11-10 10:05:41 +00:00
|
|
|
select( VALIDATION_STORE_KEY ).getValidationError( 'test-input' )
|
2022-12-06 16:22:34 +00:00
|
|
|
).toBe( undefined );
|
2022-11-10 10:05:41 +00:00
|
|
|
} );
|
|
|
|
it( 'Hides related validation error on change when id is not specified', async () => {
|
|
|
|
render(
|
|
|
|
<ValidatedTextInput
|
|
|
|
instanceId={ '1' }
|
|
|
|
accept={ 'image/*' }
|
|
|
|
onChange={ () => void 0 }
|
|
|
|
value={ 'Test' }
|
|
|
|
label={ 'Test Input' }
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
|
|
|
|
await act( () =>
|
|
|
|
dispatch( VALIDATION_STORE_KEY ).setValidationErrors( {
|
|
|
|
'textinput-1': {
|
|
|
|
message: 'Error message',
|
|
|
|
hidden: false,
|
|
|
|
},
|
|
|
|
} )
|
|
|
|
);
|
2022-12-06 16:22:34 +00:00
|
|
|
await expect(
|
|
|
|
select( VALIDATION_STORE_KEY ).getValidationError( 'textinput-1' )
|
|
|
|
).not.toBe( undefined );
|
2022-11-10 10:05:41 +00:00
|
|
|
const textInputElement = await screen.getByLabelText( 'Test Input' );
|
2024-05-15 09:33:36 +00:00
|
|
|
|
|
|
|
await act( async () => {
|
|
|
|
await userEvent.type( textInputElement, 'New value' );
|
|
|
|
} );
|
|
|
|
|
2022-11-10 10:05:41 +00:00
|
|
|
await expect(
|
|
|
|
select( VALIDATION_STORE_KEY ).getValidationError( 'textinput-1' )
|
2022-12-06 16:22:34 +00:00
|
|
|
).toBe( undefined );
|
2022-11-10 10:05:41 +00:00
|
|
|
} );
|
|
|
|
it( 'Displays a passed error message', async () => {
|
|
|
|
render(
|
|
|
|
<ValidatedTextInput
|
|
|
|
instanceId={ '2' }
|
|
|
|
accept={ 'image/*' }
|
|
|
|
onChange={ () => void 0 }
|
|
|
|
value={ 'Test' }
|
|
|
|
label={ 'Test Input' }
|
|
|
|
errorMessage={ 'Custom error message' }
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
await act( () =>
|
|
|
|
dispatch( VALIDATION_STORE_KEY ).setValidationErrors( {
|
|
|
|
'textinput-2': {
|
|
|
|
message: 'Error message in data store',
|
|
|
|
hidden: false,
|
|
|
|
},
|
|
|
|
} )
|
|
|
|
);
|
|
|
|
const customErrorMessageElement = await screen.getByText(
|
|
|
|
'Custom error message'
|
|
|
|
);
|
|
|
|
expect(
|
|
|
|
screen.queryByText( 'Error message in data store' )
|
|
|
|
).not.toBeInTheDocument();
|
|
|
|
await expect( customErrorMessageElement ).toBeInTheDocument();
|
|
|
|
} );
|
|
|
|
it( 'Displays an error message from the data store', async () => {
|
|
|
|
render(
|
|
|
|
<ValidatedTextInput
|
|
|
|
instanceId={ '3' }
|
|
|
|
accept={ 'image/*' }
|
|
|
|
onChange={ () => void 0 }
|
|
|
|
value={ 'Test' }
|
|
|
|
label={ 'Test Input' }
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
await act( () =>
|
|
|
|
dispatch( VALIDATION_STORE_KEY ).setValidationErrors( {
|
|
|
|
'textinput-3': {
|
|
|
|
message: 'Error message 3',
|
|
|
|
hidden: false,
|
|
|
|
},
|
|
|
|
} )
|
|
|
|
);
|
|
|
|
const errorMessageElement = await screen.getByText( 'Error message 3' );
|
|
|
|
await expect( errorMessageElement ).toBeInTheDocument();
|
|
|
|
} );
|
2022-12-06 16:22:34 +00:00
|
|
|
it( 'Runs custom validation on the input', async () => {
|
2024-05-15 09:33:36 +00:00
|
|
|
const user = userEvent.setup();
|
2022-12-06 16:22:34 +00:00
|
|
|
const TestComponent = () => {
|
|
|
|
const [ inputValue, setInputValue ] = useState( 'Test' );
|
|
|
|
return (
|
|
|
|
<ValidatedTextInput
|
|
|
|
instanceId={ '4' }
|
|
|
|
id={ 'test-input' }
|
|
|
|
onChange={ ( value ) => setInputValue( value ) }
|
|
|
|
value={ inputValue }
|
|
|
|
label={ 'Test Input' }
|
|
|
|
customValidation={ ( inputObject ) => {
|
|
|
|
return inputObject.value === 'Valid Value';
|
|
|
|
} }
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
render( <TestComponent /> );
|
|
|
|
|
|
|
|
const textInputElement = await screen.getByLabelText( 'Test Input' );
|
2024-05-15 09:33:36 +00:00
|
|
|
await act( async () => {
|
|
|
|
await user.type( textInputElement, 'Invalid Value' );
|
|
|
|
} );
|
|
|
|
|
2022-12-06 16:22:34 +00:00
|
|
|
await expect(
|
|
|
|
select( VALIDATION_STORE_KEY ).getValidationError( 'test-input' )
|
|
|
|
).not.toBe( undefined );
|
2024-05-15 09:33:36 +00:00
|
|
|
|
|
|
|
await act( async () => {
|
|
|
|
await user.clear( textInputElement );
|
|
|
|
await user.type( textInputElement, 'Valid Value' );
|
|
|
|
} );
|
|
|
|
|
2022-12-06 16:22:34 +00:00
|
|
|
await expect( textInputElement.value ).toBe( 'Valid Value' );
|
|
|
|
await expect(
|
|
|
|
select( VALIDATION_STORE_KEY ).getValidationError( 'test-input' )
|
|
|
|
).toBe( undefined );
|
|
|
|
} );
|
2023-01-13 15:54:35 +00:00
|
|
|
it( 'Shows a custom error message for an invalid required input', async () => {
|
2024-05-15 09:33:36 +00:00
|
|
|
const user = userEvent.setup();
|
2023-01-13 15:54:35 +00:00
|
|
|
const TestComponent = () => {
|
|
|
|
const [ inputValue, setInputValue ] = useState( '' );
|
|
|
|
return (
|
|
|
|
<ValidatedTextInput
|
|
|
|
instanceId={ '5' }
|
|
|
|
id={ 'test-input' }
|
|
|
|
onChange={ ( value ) => setInputValue( value ) }
|
|
|
|
value={ inputValue }
|
|
|
|
label={ 'Test Input' }
|
2023-04-11 08:50:59 +00:00
|
|
|
required={ true }
|
2023-01-13 15:54:35 +00:00
|
|
|
/>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
render( <TestComponent /> );
|
|
|
|
const textInputElement = await screen.getByLabelText( 'Test Input' );
|
2024-05-15 09:33:36 +00:00
|
|
|
|
|
|
|
await act( async () => {
|
|
|
|
await user.type( textInputElement, 'test' );
|
|
|
|
await user.clear( textInputElement );
|
|
|
|
await textInputElement.blur();
|
|
|
|
} );
|
|
|
|
|
2023-01-13 15:54:35 +00:00
|
|
|
await expect(
|
2023-04-11 08:50:59 +00:00
|
|
|
screen.queryByText( 'Please enter a valid test input' )
|
|
|
|
).not.toBeNull();
|
|
|
|
} );
|
|
|
|
describe( 'correctly validates on mount', () => {
|
|
|
|
it( 'validates when focusOnMount is true and validateOnMount is not set', async () => {
|
|
|
|
const setValidationErrors = jest.fn();
|
|
|
|
wpData.useDispatch.mockImplementation( ( storeName: string ) => {
|
|
|
|
if ( storeName === VALIDATION_STORE_KEY ) {
|
|
|
|
return {
|
|
|
|
...jest
|
|
|
|
.requireActual( '@wordpress/data' )
|
|
|
|
.useDispatch( storeName ),
|
|
|
|
setValidationErrors,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
return jest
|
|
|
|
.requireActual( '@wordpress/data' )
|
|
|
|
.useDispatch( storeName );
|
|
|
|
} );
|
|
|
|
|
|
|
|
const TestComponent = () => {
|
|
|
|
const [ inputValue, setInputValue ] = useState( '' );
|
|
|
|
return (
|
|
|
|
<ValidatedTextInput
|
|
|
|
instanceId={ '6' }
|
|
|
|
id={ 'test-input' }
|
|
|
|
onChange={ ( value ) => setInputValue( value ) }
|
|
|
|
value={ inputValue }
|
|
|
|
label={ 'Test Input' }
|
|
|
|
required={ true }
|
|
|
|
focusOnMount={ true }
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
await render( <TestComponent /> );
|
|
|
|
const textInputElement = await screen.getByLabelText(
|
|
|
|
'Test Input'
|
|
|
|
);
|
|
|
|
await expect( textInputElement ).toHaveFocus();
|
|
|
|
await expect( setValidationErrors ).toHaveBeenCalledWith( {
|
|
|
|
'test-input': {
|
|
|
|
message: 'Please enter a valid test input',
|
|
|
|
hidden: true,
|
|
|
|
},
|
|
|
|
} );
|
|
|
|
} );
|
|
|
|
it( 'validates when focusOnMount is false, regardless of validateOnMount value', async () => {
|
|
|
|
const setValidationErrors = jest.fn();
|
|
|
|
wpData.useDispatch.mockImplementation( ( storeName: string ) => {
|
|
|
|
if ( storeName === VALIDATION_STORE_KEY ) {
|
|
|
|
return {
|
|
|
|
...jest
|
|
|
|
.requireActual( '@wordpress/data' )
|
|
|
|
.useDispatch( storeName ),
|
|
|
|
setValidationErrors,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
return jest
|
|
|
|
.requireActual( '@wordpress/data' )
|
|
|
|
.useDispatch( storeName );
|
|
|
|
} );
|
|
|
|
|
|
|
|
const TestComponent = ( { validateOnMount = false } ) => {
|
|
|
|
const [ inputValue, setInputValue ] = useState( '' );
|
|
|
|
return (
|
|
|
|
<ValidatedTextInput
|
|
|
|
instanceId={ '6' }
|
|
|
|
id={ 'test-input' }
|
|
|
|
onChange={ ( value ) => setInputValue( value ) }
|
|
|
|
value={ inputValue }
|
|
|
|
label={ 'Test Input' }
|
|
|
|
required={ true }
|
|
|
|
focusOnMount={ true }
|
|
|
|
validateOnMount={ validateOnMount }
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
const { rerender } = await render( <TestComponent /> );
|
|
|
|
const textInputElement = await screen.getByLabelText(
|
|
|
|
'Test Input'
|
|
|
|
);
|
|
|
|
await expect( textInputElement ).toHaveFocus();
|
|
|
|
await expect( setValidationErrors ).not.toHaveBeenCalled();
|
|
|
|
|
|
|
|
await rerender( <TestComponent validateOnMount={ true } /> );
|
|
|
|
await expect( textInputElement ).toHaveFocus();
|
|
|
|
await expect( setValidationErrors ).not.toHaveBeenCalled();
|
|
|
|
} );
|
|
|
|
it( 'does not validate when validateOnMount is false and focusOnMount is true', async () => {
|
|
|
|
const setValidationErrors = jest.fn();
|
|
|
|
wpData.useDispatch.mockImplementation( ( storeName: string ) => {
|
|
|
|
if ( storeName === VALIDATION_STORE_KEY ) {
|
|
|
|
return {
|
|
|
|
...jest
|
|
|
|
.requireActual( '@wordpress/data' )
|
|
|
|
.useDispatch( storeName ),
|
|
|
|
setValidationErrors,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
return jest
|
|
|
|
.requireActual( '@wordpress/data' )
|
|
|
|
.useDispatch( storeName );
|
|
|
|
} );
|
|
|
|
|
|
|
|
const TestComponent = () => {
|
|
|
|
const [ inputValue, setInputValue ] = useState( '' );
|
|
|
|
return (
|
|
|
|
<ValidatedTextInput
|
|
|
|
instanceId={ '6' }
|
|
|
|
id={ 'test-input' }
|
|
|
|
onChange={ ( value ) => setInputValue( value ) }
|
|
|
|
value={ inputValue }
|
|
|
|
label={ 'Test Input' }
|
|
|
|
required={ true }
|
|
|
|
focusOnMount={ true }
|
|
|
|
validateOnMount={ false }
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
await render( <TestComponent /> );
|
|
|
|
const textInputElement = await screen.getByLabelText(
|
|
|
|
'Test Input'
|
|
|
|
);
|
|
|
|
await expect( textInputElement ).toHaveFocus();
|
|
|
|
await expect( setValidationErrors ).not.toHaveBeenCalled();
|
|
|
|
} );
|
2023-01-13 15:54:35 +00:00
|
|
|
} );
|
2022-11-10 10:05:41 +00:00
|
|
|
} );
|