aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit/app/controllers/token-rates-controller.js
blob: 28e583d8d219df86bd1e7521793462c6e09a4d54 (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
const assert = require('assert')
const sinon = require('sinon')
const TokenRatesController = require('../../../../app/scripts/controllers/token-rates')
const ObservableStore = require('obs-store')

describe('TokenRatesController', () => {
  it('should listen for preferences store updates', () => {
    const preferences = new ObservableStore({ tokens: [] })
    const controller = new TokenRatesController({ preferences })
    preferences.putState({ tokens: ['foo'] })
    assert.deepEqual(controller._tokens, ['foo'])
  })

  it('should poll on correct interval', async () => {
    const stub = sinon.stub(global, 'setInterval')
    new TokenRatesController({ interval: 1337 }) // eslint-disable-line no-new
    assert.strictEqual(stub.getCall(0).args[1], 1337)
    stub.restore()
  })

  it('should fetch each token rate based on address', async () => {
    const controller = new TokenRatesController()
    controller.isActive = true
    controller.fetchExchangeRate = address => address
    controller.tokens = [{ address: 'foo' }, { address: 'bar' }]
    await controller.updateExchangeRates()
    assert.deepEqual(controller.store.getState().contractExchangeRates, { foo: 'foo', bar: 'bar' })
  })
})