2017-05-04 23:35:10 +02:00
|
|
|
// var jsdom = require('mocha-jsdom')
|
2019-12-03 15:52:01 +01:00
|
|
|
const assert = require('assert')
|
|
|
|
const freeze = require('deep-freeze-strict')
|
|
|
|
const path = require('path')
|
2016-04-14 00:28:44 +02:00
|
|
|
|
2019-12-03 15:52:01 +01:00
|
|
|
const actions = require(path.join(__dirname, '..', '..', '..', 'ui', 'app', 'store', 'actions.js'))
|
|
|
|
const reducers = require(path.join(__dirname, '..', '..', '..', 'ui', 'app', 'ducks', 'index.js'))
|
2016-04-14 00:28:44 +02:00
|
|
|
|
2017-05-04 23:35:10 +02:00
|
|
|
describe('config view actions', function () {
|
2019-12-03 15:52:01 +01:00
|
|
|
const initialState = {
|
2016-04-14 00:28:44 +02:00
|
|
|
metamask: {
|
|
|
|
rpcTarget: 'foo',
|
2017-05-04 23:35:10 +02:00
|
|
|
frequentRpcList: [],
|
2016-04-14 00:28:44 +02:00
|
|
|
},
|
|
|
|
appState: {
|
|
|
|
currentView: {
|
|
|
|
name: 'accounts',
|
2017-05-04 23:35:10 +02:00
|
|
|
},
|
|
|
|
},
|
2016-04-14 00:28:44 +02:00
|
|
|
}
|
|
|
|
freeze(initialState)
|
|
|
|
|
2017-05-04 23:35:10 +02:00
|
|
|
describe('SHOW_CONFIG_PAGE', function () {
|
|
|
|
it('should set appState.currentView.name to config', function () {
|
2019-12-03 15:52:01 +01:00
|
|
|
const result = reducers(initialState, actions.showConfigPage())
|
2016-04-14 00:28:44 +02:00
|
|
|
assert.equal(result.appState.currentView.name, 'config')
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2017-05-04 23:35:10 +02:00
|
|
|
describe('SET_RPC_TARGET', function () {
|
|
|
|
it('sets the state.metamask.rpcTarget property of the state to the action.value', function () {
|
2016-04-14 00:28:44 +02:00
|
|
|
const action = {
|
|
|
|
type: actions.SET_RPC_TARGET,
|
2017-03-07 19:37:01 +01:00
|
|
|
value: 'foo',
|
|
|
|
}
|
|
|
|
|
2019-12-03 15:52:01 +01:00
|
|
|
const result = reducers(initialState, action)
|
2016-05-11 00:42:09 +02:00
|
|
|
assert.equal(result.metamask.provider.type, 'rpc')
|
2017-03-07 19:37:01 +01:00
|
|
|
assert.equal(result.metamask.provider.rpcTarget, 'foo')
|
2017-02-23 22:56:58 +01:00
|
|
|
})
|
2016-04-14 00:28:44 +02:00
|
|
|
})
|
2017-02-23 22:56:58 +01:00
|
|
|
})
|