aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/helpers/confirm-transaction/util.test.js
blob: 4c1a3e16b50d487591b175a928cfcb001fcfb310 (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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
import * as utils from './util'
import assert from 'assert'

describe('Confirm Transaction utils', () => {
  describe('increaseLastGasPrice', () => {
    it('should increase the gasPrice by 10%', () => {
      const increasedGasPrice = utils.increaseLastGasPrice('0xa')
      assert.equal(increasedGasPrice, '0xb')
    })

    it('should prefix the result with 0x', () => {
      const increasedGasPrice = utils.increaseLastGasPrice('a')
      assert.equal(increasedGasPrice, '0xb')
    })
  })

  describe('hexGreaterThan', () => {
    it('should return true if the first value is greater than the second value', () => {
      assert.equal(
        utils.hexGreaterThan('0xb', '0xa'),
        true
      )
    })

    it('should return false if the first value is less than the second value', () => {
      assert.equal(
        utils.hexGreaterThan('0xa', '0xb'),
        false
      )
    })

    it('should return false if the first value is equal to the second value', () => {
      assert.equal(
        utils.hexGreaterThan('0xa', '0xa'),
        false
      )
    })

    it('should correctly compare prefixed and non-prefixed hex values', () => {
      assert.equal(
        utils.hexGreaterThan('0xb', 'a'),
        true
      )
    })
  })

  describe('getHexGasTotal', () => {
    it('should multiply the hex gasLimit and hex gasPrice values together', () => {
      assert.equal(
        utils.getHexGasTotal({ gasLimit: '0x5208', gasPrice: '0x3b9aca00' }),
        '0x1319718a5000'
      )
    })

    it('should prefix the result with 0x', () => {
      assert.equal(
        utils.getHexGasTotal({ gasLimit: '5208', gasPrice: '3b9aca00' }),
        '0x1319718a5000'
      )
    })
  })

  describe('addEth', () => {
    it('should add two values together rounding to 6 decimal places', () => {
      assert.equal(
        utils.addEth('0.12345678', '0'),
        '0.123457'
      )
    })

    it('should add any number of values together rounding to 6 decimal places', () => {
      assert.equal(
        utils.addEth('0.1', '0.02', '0.003', '0.0004', '0.00005', '0.000006', '0.0000007'),
        '0.123457'
      )
    })
  })

  describe('addFiat', () => {
    it('should add two values together rounding to 2 decimal places', () => {
      assert.equal(
        utils.addFiat('0.12345678', '0'),
        '0.12'
      )
    })

    it('should add any number of values together rounding to 2 decimal places', () => {
      assert.equal(
        utils.addFiat('0.1', '0.02', '0.003', '0.0004', '0.00005', '0.000006', '0.0000007'),
        '0.12'
      )
    })
  })

  describe('getValueFromWeiHex', () => {
    it('should get the transaction amount in ETH', () => {
      const ethTransactionAmount = utils.getValueFromWeiHex({
        value: '0xde0b6b3a7640000', toCurrency: 'ETH', conversionRate: 468.58, numberOfDecimals: 6,
      })

      assert.equal(ethTransactionAmount, '1')
    })

    it('should get the transaction amount in fiat', () => {
      const fiatTransactionAmount = utils.getValueFromWeiHex({
        value: '0xde0b6b3a7640000', toCurrency: 'usd', conversionRate: 468.58, numberOfDecimals: 2,
      })

      assert.equal(fiatTransactionAmount, '468.58')
    })
  })

  describe('getTransactionFee', () => {
    it('should get the transaction fee in ETH', () => {
      const ethTransactionFee = utils.getTransactionFee({
        value: '0x1319718a5000', toCurrency: 'ETH', conversionRate: 468.58, numberOfDecimals: 6,
      })

      assert.equal(ethTransactionFee, '0.000021')
    })

    it('should get the transaction fee in fiat', () => {
      const fiatTransactionFee = utils.getTransactionFee({
        value: '0x1319718a5000', toCurrency: 'usd', conversionRate: 468.58, numberOfDecimals: 2,
      })

      assert.equal(fiatTransactionFee, '0.01')
    })
  })

  describe('formatCurrency', () => {
    it('should format USD values', () => {
      const value = utils.formatCurrency('123.45', 'usd')
      assert.equal(value, '$123.45')
    })
  })
})