2016-04-14 00:28:44 +02:00
|
|
|
var jsdom = require('mocha-jsdom')
|
|
|
|
var assert = require('assert')
|
|
|
|
var freeze = require('deep-freeze-strict')
|
|
|
|
var path = require('path')
|
|
|
|
|
2016-04-18 20:41:29 +02:00
|
|
|
var actions = require(path.join(__dirname, '..', '..', '..', 'ui', 'app', 'actions.js'))
|
|
|
|
var reducers = require(path.join(__dirname, '..', '..', '..', 'ui', 'app', 'reducers.js'))
|
2016-04-14 00:28:44 +02:00
|
|
|
|
|
|
|
describe ('config view actions', function() {
|
|
|
|
|
|
|
|
var initialState = {
|
|
|
|
metamask: {
|
|
|
|
rpcTarget: 'foo',
|
2017-02-23 22:56:58 +01:00
|
|
|
frequentRpcList: []
|
2016-04-14 00:28:44 +02:00
|
|
|
},
|
|
|
|
appState: {
|
|
|
|
currentView: {
|
|
|
|
name: 'accounts',
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
freeze(initialState)
|
|
|
|
|
|
|
|
describe('SHOW_CONFIG_PAGE', function() {
|
|
|
|
it('should set appState.currentView.name to config', function() {
|
|
|
|
var result = reducers(initialState, actions.showConfigPage())
|
|
|
|
assert.equal(result.appState.currentView.name, 'config')
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('SET_RPC_TARGET', function() {
|
|
|
|
|
|
|
|
it('sets the state.metamask.rpcTarget property of the state to the action.value', function() {
|
2017-02-23 22:56:58 +01:00
|
|
|
const value = {
|
|
|
|
rpcTarget: 'foo',
|
|
|
|
frequentRpcList: ['foo']
|
|
|
|
}
|
2016-04-14 00:28:44 +02:00
|
|
|
const action = {
|
|
|
|
type: actions.SET_RPC_TARGET,
|
2017-02-23 22:56:58 +01:00
|
|
|
value,
|
2016-04-14 00:28:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
var result = reducers(initialState, action)
|
2016-05-11 00:42:09 +02:00
|
|
|
assert.equal(result.metamask.provider.type, 'rpc')
|
2017-02-23 22:56:58 +01:00
|
|
|
assert.equal(result.metamask.provider.rpcTarget, value.rpcTarget)
|
|
|
|
assert.equal(result.metamask.frequentRpcList[0], value.frequentRpcList[0])
|
|
|
|
})
|
|
|
|
|
|
|
|
it('should handle multiple requests to change the rpc gracefully', function() {
|
|
|
|
const value = {
|
|
|
|
rpcTarget: 'foo',
|
|
|
|
frequentRpcList: ['foo']
|
|
|
|
}
|
|
|
|
|
|
|
|
const action = {
|
|
|
|
type: actions.SET_RPC_TARGET,
|
|
|
|
value,
|
|
|
|
}
|
|
|
|
|
|
|
|
var result = reducers(initialState, action)
|
|
|
|
var secondResult = reducers(result, action)
|
|
|
|
assert.equal(secondResult.metamask.frequentRpcList.length, 1)
|
2016-04-14 00:28:44 +02:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2017-02-23 22:56:58 +01:00
|
|
|
})
|