| import assert from 'assert'; |
| import { mapValues } from 'lodash'; |
| import formState from '../'; |
|
|
| function checkNthState( n, callback ) { |
| let count = 0; |
|
|
| return function ( state ) { |
| if ( count === n ) { |
| callback( state ); |
| } |
|
|
| count++; |
| }; |
| } |
|
|
| function testController( options ) { |
| const fieldNames = options.fieldNames; |
|
|
| const defaults = { |
| loadFunction: function ( onComplete ) { |
| const fieldValues = Object.fromEntries( fieldNames.map( ( name ) => [ name, 'loaded' ] ) ); |
| onComplete( null, fieldValues ); |
| }, |
|
|
| validatorFunction: function ( fieldValues, onComplete ) { |
| const fieldErrors = mapValues( fieldValues, () => [] ); |
| onComplete( null, fieldErrors ); |
| }, |
|
|
| onNewState: function () {}, |
|
|
| debounceWait: 0, |
| }; |
|
|
| return formState.Controller( { ...defaults, ...options } ); |
| } |
|
|
| describe( 'index', () => { |
| describe( '#Controller', () => { |
| describe( '#getInitialState', () => { |
| test( 'returns disabled fields', () => { |
| const controller = testController( { fieldNames: [ 'firstName' ] } ); |
| const state = controller.getInitialState(); |
|
|
| expect( formState.isFieldDisabled( state, 'firstName' ) ).toStrictEqual( true ); |
|
|
| assert.strictEqual( formState.isFieldDisabled( state, 'firstName' ), true ); |
| } ); |
| } ); |
|
|
| test( 'enables the fields on the first event', () => { |
| return new Promise( ( done ) => { |
| const onNewState = checkNthState( 0, function ( state ) { |
| expect( formState.isFieldDisabled( state, 'firstName' ) ).toStrictEqual( false ); |
| done(); |
| } ); |
|
|
| testController( { |
| fieldNames: [ 'firstName' ], |
| onNewState: onNewState, |
| } ); |
| } ); |
| } ); |
|
|
| describe( '#handleFieldChange', () => { |
| test( 'updates the field value', () => { |
| return new Promise( ( done ) => { |
| const onNewState = checkNthState( 1, function ( state ) { |
| expect( formState.getFieldValue( state, 'firstName' ) ).toStrictEqual( 'foo' ); |
| done(); |
| } ); |
|
|
| const controller = testController( { |
| fieldNames: [ 'firstName' ], |
| onNewState: onNewState, |
| } ); |
|
|
| controller.handleFieldChange( { |
| name: 'firstName', |
| value: 'foo', |
| } ); |
| } ); |
| } ); |
|
|
| test( 'validates the new value', () => { |
| return new Promise( ( done ) => { |
| const validatorFunction = function ( fieldValues, onComplete ) { |
| onComplete( null, { firstName: [ 'invalid' ] } ); |
| }; |
|
|
| const onNewState = checkNthState( 3, function ( state ) { |
| expect( formState.getErrorMessages( state ) ).toStrictEqual( [ 'invalid' ] ); |
| done(); |
| } ); |
|
|
| const controller = testController( { |
| fieldNames: [ 'firstName' ], |
| validatorFunction: validatorFunction, |
| onNewState: onNewState, |
| } ); |
|
|
| controller.handleFieldChange( { |
| name: 'firstName', |
| value: 'foo', |
| } ); |
| } ); |
| } ); |
|
|
| describe( 'when there are multiple changes at once', () => { |
| test( 'only shows errors for the latest values', () => { |
| return new Promise( ( done ) => { |
| const validatorFunction = function ( fieldValues, onComplete ) { |
| onComplete( null, { |
| firstName: fieldValues.firstName.length > 0 ? [] : [ 'invalid' ], |
| } ); |
| }; |
|
|
| const onNewState = checkNthState( 4, function ( state ) { |
| expect( formState.getErrorMessages( state ) ).toStrictEqual( [ 'invalid' ] ); |
| done(); |
| } ); |
|
|
| const controller = testController( { |
| fieldNames: [ 'firstName' ], |
| validatorFunction: validatorFunction, |
| onNewState: onNewState, |
| } ); |
|
|
| controller.handleFieldChange( { |
| name: 'firstName', |
| value: 'foo', |
| } ); |
|
|
| controller.handleFieldChange( { |
| name: 'firstName', |
| value: '', |
| } ); |
| } ); |
| } ); |
| } ); |
| } ); |
| } ); |
| } ); |
|
|