redux-form/redux-form

View on GitHub
src/__tests__/helpers/reducer.arrayPush.js

Summary

Maintainability
A
0 mins
Test Coverage
import actions from '../../actions'
const { arrayPush } = actions

const describeArrayPush = (reducer, expect, { fromJS }) => () => {
  it('should work with empty state', () => {
    const state = reducer(undefined, arrayPush('foo', 'myField', 'myValue'))
    expect(state).toEqualMap({
      foo: {
        values: {
          myField: ['myValue']
        }
      }
    })
  })

  it('should work pushing undefined to empty state', () => {
    const state = reducer(undefined, arrayPush('foo', 'myField'))
    expect(state).toEqualMap({
      foo: {
        values: {
          myField: [undefined]
        }
      }
    })
  })

  it('should work with existing empty array', () => {
    const state = reducer(
      fromJS({
        foo: {
          values: {
            myField: []
          }
        }
      }),
      arrayPush('foo', 'myField', 'myValue')
    )
    expect(state).toEqualMap({
      foo: {
        values: {
          myField: ['myValue']
        }
      }
    })
  })

  it('should push at end', () => {
    const state = reducer(
      fromJS({
        foo: {
          values: {
            myField: {
              subField: ['a', 'b', 'c']
            }
          },
          fields: {
            myField: {
              subField: [
                { touched: true },
                { touched: true, visited: true },
                { touched: true }
              ]
            }
          }
        }
      }),
      arrayPush('foo', 'myField.subField', 'newValue')
    )
    expect(state).toEqualMap({
      foo: {
        values: {
          myField: {
            subField: ['a', 'b', 'c', 'newValue']
          }
        },
        fields: {
          myField: {
            subField: [
              { touched: true },
              { touched: true, visited: true },
              { touched: true },
              {}
            ]
          }
        }
      }
    })
  })

  it('should handle a null leaf value', () => {
    const state = reducer(
      fromJS({
        foo: {
          values: {
            steps: null
          }
        }
      }),
      arrayPush('foo', 'steps', 'value')
    )
    expect(state).toEqualMap({
      foo: {
        values: {
          steps: ['value']
        }
      }
    })
  })
}

export default describeArrayPush