woocommerce/plugins/woocommerce-blocks/packages/checkout/registry/test/index.js

53 lines
1.3 KiB
JavaScript
Raw Normal View History

/**
* Internal dependencies
*/
import {
__experimentalRegisterCheckoutFilters,
__experimentalApplyCheckoutFilter,
} from '../';
describe( 'Checkout registry', () => {
const filterName = 'loremIpsum';
test( 'should return default value if there are no filters', () => {
const value = 'Hello World';
const newValue = __experimentalApplyCheckoutFilter( {
filterName,
defaultValue: value,
} );
expect( newValue ).toBe( value );
} );
test( 'should return filtered value when a filter is registered', () => {
const value = 'Hello World';
__experimentalRegisterCheckoutFilters( filterName, {
[ filterName ]: ( val, args ) =>
val.toUpperCase() + args.punctuationSign,
} );
const newValue = __experimentalApplyCheckoutFilter( {
filterName,
defaultValue: value,
arg: {
punctuationSign: '!',
},
} );
expect( newValue ).toBe( 'HELLO WORLD!' );
} );
test( 'should not return filtered value if validation failed', () => {
const value = 'Hello World';
__experimentalRegisterCheckoutFilters( filterName, {
[ filterName ]: ( val ) => val.toUpperCase(),
} );
const newValue = __experimentalApplyCheckoutFilter( {
filterName,
defaultValue: value,
validation: ( val ) => ! val.includes( 'HELLO' ),
} );
expect( newValue ).toBe( value );
} );
} );