1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-26 05:13:37 +02:00
metamask-extension/test/unit/network-contoller-test.js

103 lines
2.9 KiB
JavaScript
Raw Normal View History

2017-05-23 08:12:28 +02:00
const assert = require('assert')
2018-02-15 17:34:31 +01:00
const nock = require('nock')
2017-05-23 08:12:28 +02:00
const NetworkController = require('../../app/scripts/controllers/network')
2018-04-12 23:17:36 +02:00
const {
getNetworkDisplayName,
} = require('../../app/scripts/controllers/network/util')
2017-05-23 08:12:28 +02:00
2018-02-15 18:54:22 +01:00
const { createTestProviderTools } = require('../stub/provider')
const providerResultStub = {}
2017-05-23 08:12:28 +02:00
describe('# Network Controller', function () {
let networkController
2018-02-15 18:54:22 +01:00
const noop = () => {}
const networkControllerProviderConfig = {
2018-02-28 00:51:14 +01:00
getAccounts: noop,
}
2017-05-23 08:12:28 +02:00
beforeEach(function () {
2018-02-15 18:54:22 +01:00
nock('https://rinkeby.infura.io')
.persist()
2018-02-15 18:54:22 +01:00
.post('/metamask')
.reply(200)
networkController = new NetworkController()
2017-05-23 08:12:28 +02:00
networkController.initializeProvider(networkControllerProviderConfig)
2017-05-23 08:12:28 +02:00
})
afterEach(function () {
nock.cleanAll()
})
2017-05-23 08:12:28 +02:00
describe('network', function () {
2017-05-28 20:18:07 +02:00
describe('#provider', function () {
2017-05-23 08:12:28 +02:00
it('provider should be updatable without reassignment', function () {
networkController.initializeProvider(networkControllerProviderConfig)
const proxy = networkController._proxy
proxy.setTarget({ test: true, on: () => {} })
assert.ok(proxy.test)
2017-05-23 08:12:28 +02:00
})
})
describe('#getNetworkState', function () {
it('should return loading when new', function () {
2017-05-28 20:18:07 +02:00
const networkState = networkController.getNetworkState()
2017-05-23 08:12:28 +02:00
assert.equal(networkState, 'loading', 'network is loading')
})
})
describe('#setNetworkState', function () {
it('should update the network', function () {
networkController.setNetworkState(1)
2017-05-28 20:18:07 +02:00
const networkState = networkController.getNetworkState()
2017-05-23 08:12:28 +02:00
assert.equal(networkState, 1, 'network is 1')
})
})
describe('#setProviderType', function () {
it('should update provider.type', function () {
networkController.setProviderType('mainnet')
const type = networkController.getProviderConfig().type
assert.equal(type, 'mainnet', 'provider type is updated')
})
it('should set the network to loading', function () {
networkController.setProviderType('mainnet')
const loading = networkController.isNetworkLoading()
assert.ok(loading, 'network is loading')
})
})
})
2018-04-12 23:17:36 +02:00
})
describe('Network utils', () => {
2018-04-12 23:17:36 +02:00
it('getNetworkDisplayName should return the correct network name', () => {
const tests = [
{
input: 3,
expected: 'Ropsten',
}, {
input: 4,
expected: 'Rinkeby',
}, {
input: 42,
expected: 'Kovan',
}, {
input: 'ropsten',
expected: 'Ropsten',
}, {
input: 'rinkeby',
expected: 'Rinkeby',
}, {
input: 'kovan',
expected: 'Kovan',
}, {
input: 'mainnet',
expected: 'Main Ethereum Network',
},
]
tests.forEach(({ input, expected }) => assert.equal(getNetworkDisplayName(input), expected))
})
})