You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
1.8 KiB
62 lines
1.8 KiB
const assert = require('assert')
|
|
const sinon = require('sinon')
|
|
const InfuraController = require('../../app/scripts/controllers/infura')
|
|
|
|
describe('infura-controller', function () {
|
|
let infuraController, sandbox, networkStatus
|
|
const response = {'mainnet': 'degraded', 'ropsten': 'ok', 'kovan': 'ok', 'rinkeby': 'down'}
|
|
|
|
before(async function () {
|
|
infuraController = new InfuraController()
|
|
sandbox = sinon.sandbox.create()
|
|
sinon.stub(infuraController, 'checkInfuraNetworkStatus').resolves(response)
|
|
networkStatus = await infuraController.checkInfuraNetworkStatus()
|
|
})
|
|
|
|
after(function () {
|
|
sandbox.restore()
|
|
})
|
|
|
|
describe('Network status queries', function () {
|
|
|
|
describe('Mainnet', function () {
|
|
it('should have Mainnet', function () {
|
|
assert.equal(Object.keys(networkStatus)[0], 'mainnet')
|
|
})
|
|
|
|
it('should have a value for Mainnet status', function () {
|
|
assert.equal(networkStatus.mainnet, 'degraded')
|
|
})
|
|
})
|
|
|
|
describe('Ropsten', function () {
|
|
it('should have Ropsten', function () {
|
|
assert.equal(Object.keys(networkStatus)[1], 'ropsten')
|
|
})
|
|
|
|
it('should have a value for Ropsten status', function () {
|
|
assert.equal(networkStatus.ropsten, 'ok')
|
|
})
|
|
})
|
|
|
|
describe('Kovan', function () {
|
|
it('should have Kovan', function () {
|
|
assert.equal(Object.keys(networkStatus)[2], 'kovan')
|
|
})
|
|
|
|
it('should have a value for Kovan status', function () {
|
|
assert.equal(networkStatus.kovan, 'ok')
|
|
})
|
|
})
|
|
|
|
describe('Rinkeby', function () {
|
|
it('should have Rinkeby', function () {
|
|
assert.equal(Object.keys(networkStatus)[3], 'rinkeby')
|
|
})
|
|
|
|
it('should have a value for Rinkeby status', function () {
|
|
assert.equal(networkStatus.rinkeby, 'down')
|
|
})
|
|
})
|
|
})
|
|
})
|
|
|