aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit/tx-state-history-helper-test.js
blob: 90cb10713428629e59d7c8c80a7b02979674afd8 (plain) (blame)
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
const assert = require('assert')
const clone = require('clone')
const txStateHistoryHelper = require('../../app/scripts/lib/tx-state-history-helper')

describe('deepCloneFromTxMeta', function () {
  it('should clone deep', function () {
    const input = {
      foo: {
        bar: {
          bam: 'baz'
        }
      }
    }
    const output = txStateHistoryHelper.snapshotFromTxMeta(input)
    assert('foo' in output, 'has a foo key')
    assert('bar' in output.foo, 'has a bar key')
    assert('bam' in output.foo.bar, 'has a bar key')
    assert.equal(output.foo.bar.bam, 'baz', 'has a baz value')
  })

  it('should remove the history key', function () {
    const input = { foo: 'bar', history: 'remembered' }
    const output = txStateHistoryHelper.snapshotFromTxMeta(input)
    assert(typeof output.history, 'undefined', 'should remove history')
  })
})