aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit/currency-controller-test.js
blob: dd7fa91e06bfcf6b1c5feb192c248c2baf15f9f2 (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
// polyfill fetch
global.fetch = global.fetch || require('isomorphic-fetch')

const assert = require('assert')
const extend = require('xtend')
const rp = require('request-promise')
const nock = require('nock')
const CurrencyController = require('../../app/scripts/controllers/currency')

describe('config-manager', function() {
  var currencyController

  beforeEach(function() {
    currencyController = new CurrencyController()
  })

  describe('currency conversions', function() {

    describe('#setCurrentCurrency', function() {
      it('should return USD as default', function() {
        assert.equal(currencyController.getCurrentCurrency(), 'USD')
      })

      it('should be able to set to other currency', function() {
        assert.equal(currencyController.getCurrentCurrency(), 'USD')
        currencyController.setCurrentCurrency('JPY')
        var result = currencyController.getCurrentCurrency()
        assert.equal(result, 'JPY')
      })
    })

    describe('#getConversionRate', function() {
      it('should return undefined if non-existent', function() {
        var result = currencyController.getConversionRate()
        assert.ok(!result)
      })
    })

    describe('#updateConversionRate', function() {
      it('should retrieve an update for ETH to USD and set it in memory', function(done) {
        this.timeout(15000)
        var usdMock = nock('https://www.cryptonator.com')
          .get('/api/ticker/eth-USD')
          .reply(200, '{"ticker":{"base":"ETH","target":"USD","price":"11.02456145","volume":"44948.91745289","change":"-0.01472534"},"timestamp":1472072136,"success":true,"error":""}')

        assert.equal(currencyController.getConversionRate(), 0)
        currencyController.setCurrentCurrency('USD')
        currencyController.updateConversionRate()
        .then(function() {
          var result = currencyController.getConversionRate()
          console.log('currencyController.getConversionRate:', result)
          assert.equal(typeof result, 'number')
          done()
        }).catch(function(err) {
          done(err)
        })

      })

      it('should work for JPY as well.', function() {
        this.timeout(15000)
        assert.equal(currencyController.getConversionRate(), 0)

        var jpyMock = nock('https://www.cryptonator.com')
          .get('/api/ticker/eth-JPY')
          .reply(200, '{"ticker":{"base":"ETH","target":"JPY","price":"11.02456145","volume":"44948.91745289","change":"-0.01472534"},"timestamp":1472072136,"success":true,"error":""}')


        var promise = new Promise(
          function (resolve, reject) {
            currencyController.setCurrentCurrency('JPY')
            currencyController.updateConversionRate().then(function() {
              resolve()
            })
        })

        promise.then(function() {
          var result = currencyController.getConversionRate()
          assert.equal(typeof result, 'number')
        }).catch(function(err) {
          done(err)
        })
      })
    })
  })

})