aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/send/account-list-item/tests/account-list-item-container.test.js
blob: 662880aa0409169590961f2d58cf641c94662101 (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
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
import assert from 'assert'
import proxyquire from 'proxyquire'

let mapStateToProps

proxyquire('../account-list-item.container.js', {
  'react-redux': {
    connect: (ms, md) => {
      mapStateToProps = ms
      return () => ({})
    },
  },
  '../send.selectors.js': {
    getConversionRate: () => `mockConversionRate`,
    getCurrentCurrency: () => `mockCurrentCurrency`,
    getNativeCurrency: () => `mockNativeCurrency`,
  },
  '../../../selectors.js': {
    isBalanceCached: () => `mockBalanceIsCached`,
    preferencesSelector: ({ showFiatInTestnets }) => ({
      showFiatInTestnets,
    }),
    getIsMainnet: ({ isMainnet }) => isMainnet,
  },
})

describe('account-list-item container', () => {

  describe('mapStateToProps()', () => {

    it('should map the correct properties to props', () => {
      assert.deepEqual(mapStateToProps({ isMainnet: true, showFiatInTestnets: false }), {
        conversionRate: 'mockConversionRate',
        currentCurrency: 'mockCurrentCurrency',
        nativeCurrency: 'mockNativeCurrency',
        balanceIsCached: 'mockBalanceIsCached',
        showFiat: true,
      })
    })

    it('should map the correct properties to props when in mainnet and showFiatInTestnet is true', () => {
      assert.deepEqual(mapStateToProps({ isMainnet: true, showFiatInTestnets: true }), {
        conversionRate: 'mockConversionRate',
        currentCurrency: 'mockCurrentCurrency',
        nativeCurrency: 'mockNativeCurrency',
        balanceIsCached: 'mockBalanceIsCached',
        showFiat: true,
      })
    })

    it('should map the correct properties to props when not in mainnet and showFiatInTestnet is true', () => {
      assert.deepEqual(mapStateToProps({ isMainnet: false, showFiatInTestnets: true }), {
        conversionRate: 'mockConversionRate',
        currentCurrency: 'mockCurrentCurrency',
        nativeCurrency: 'mockNativeCurrency',
        balanceIsCached: 'mockBalanceIsCached',
        showFiat: true,
      })
    })

    it('should map the correct properties to props when not in mainnet and showFiatInTestnet is false', () => {
      assert.deepEqual(mapStateToProps({ isMainnet: false, showFiatInTestnets: false }), {
        conversionRate: 'mockConversionRate',
        currentCurrency: 'mockCurrentCurrency',
        nativeCurrency: 'mockNativeCurrency',
        balanceIsCached: 'mockBalanceIsCached',
        showFiat: false,
      })
    })

  })

})