aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit/infura-controller-test.js
blob: 37cdabe3a5f5417b2854b32eab695c32a02f2e7e (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
const assert = require('assert')
const InfuraController = require('../../app/scripts/controllers/infura')

describe('infura-controller', function () {
  let infuraController
  let response

  before(async function () {
    infuraController = new InfuraController()
    response = await infuraController.checkInfuraNetworkStatus()
  })

  describe('Network status queries', function () {
    it('should return object/json', function () {
      assert.equal(typeof response, 'object')
    })

    describe('Mainnet', function () {
      it('should have Mainnet', function () {
        assert.equal(Object.keys(response)[0], 'mainnet')
      })

      it('should have a value for Mainnet status', function () {
        assert(response.mainnet, 'Mainnet status')
      })
    })

    describe('Ropsten', function () {
      it('should have Ropsten', function () {
        assert.equal(Object.keys(response)[1], 'ropsten')
      })

      it('should have a value for Ropsten status', function () {
        assert(response.ropsten, 'Ropsten status')
      })
    })

    describe('Kovan', function () {
      it('should have Kovan', function () {
        assert.equal(Object.keys(response)[2], 'kovan')
      })

      it('should have a value for Kovan status', function () {
        assert(response.kovan, 'Kovan status')
      })
    })

    describe('Rinkeby', function () {
      it('should have Rinkeby', function () {
        assert.equal(Object.keys(response)[3], 'rinkeby')
      })

      it('should have a value for Rinkeby status', function () {
        assert(response.rinkeby, 'Rinkeby status')
      })
    })
  })
})