1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00

Infura Network response tests

This commit is contained in:
tmashuang 2017-07-14 10:34:03 -07:00
parent 9d3207fb73
commit bda52f7cba
2 changed files with 59 additions and 34 deletions

View File

@ -26,6 +26,7 @@ class InfuraController {
this.store.updateState({
infuraNetworkStatus: parsedResponse,
})
return parsedResponse
})
}

View File

@ -1,34 +1,58 @@
// polyfill fetch
// global.fetch = function () {return Promise.resolve({
// json: () => { return Promise.resolve({"mainnet": "ok", "ropsten": "degraded", "kovan": "down", "rinkeby": "ok"}) },
// })
// }
// const assert = require('assert')
// const InfuraController = require('../../app/scripts/controllers/infura')
//
// describe('infura-controller', function () {
// var infuraController
//
// beforeEach(function () {
// infuraController = new InfuraController()
// })
//
// describe('network status queries', function () {
// describe('#checkInfuraNetworkStatus', function () {
// it('should return an object reflecting the network statuses', function (done) {
// this.timeout(15000)
// infuraController.checkInfuraNetworkStatus()
// .then(() => {
// const networkStatus = infuraController.store.getState().infuraNetworkStatus
// assert.equal(Object.keys(networkStatus).length, 4)
// assert.equal(networkStatus.mainnet, 'ok')
// assert.equal(networkStatus.ropsten, 'degraded')
// assert.equal(networkStatus.kovan, 'down')
// })
// .then(() => done())
// .catch(done)
//
// })
// })
// })
// })
const assert = require('assert')
const InfuraController = require('../../app/scripts/controllers/infura')
describe('infura-controller', function () {
var 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')
})
})
})
})