File size: 2,062 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
import { expect } from 'chai'

import { merge } from './merge.js'

describe('merge', () => {
  it('removes nulled arrays when nested items were found', () => {
    const object1 = { status: 'draft', postImage: null, blogImageSizes: null }
    const object2 = { 'blogImageSizes.0': 4130, 'blogImageMimeTypes.0': 'image/jpeg' }

    expect(merge(object1, object2)).to.deep.equal({
      status: 'draft',
      postImage: null,
      'blogImageSizes.0': 4130,
      'blogImageMimeTypes.0': 'image/jpeg',
    })
  })

  context('object with nested fields are given in the first argument', () => {
    const object1 = { status: {
      type: 'draft',
      updated: 'yesterday',
      tags: ['super'],
    } }

    it('flattens everything and changes just nested property when it was given nested', () => {
      const object2 = { 'status.type': 'newDraft' }

      expect(merge(object1, object2)).to.deep.equal({
        'status.type': object2['status.type'],
        'status.updated': 'yesterday',
        'status.tags.0': 'super',
      })
    })

    it('changes entire record when 2 objects are given', () => {
      const object2 = { status: {
        type: 'newType',
        updated: 'today',
      } }

      expect(merge(object1, object2)).to.deep.equal({
        'status.type': object2.status.type,
        'status.updated': 'today',
      })
    })
  })

  describe('multiple parameters', () => {
    const object1 = { status: { type: 'draft' } }

    it('returns flatten object when one other argument is given', () => {
      expect(merge(object1)).to.deep.equal({
        'status.type': 'draft',
      })
    })

    it('merges more then 2 arguments', () => {
      const object2 = {
        'status.type': 'status2',
        'status.age': '1 day',
      }
      const object3 = {
        'status.type': 'status3',
        names: [
          'Wojtek',
        ],
      }
      expect(merge(object1, object2, object3)).to.deep.equal({
        'status.type': 'status2',
        'status.age': '1 day',
        'names.0': 'Wojtek',
      })
    })
  })
})