2017-05-04 23:35:10 +02:00
|
|
|
// var jsdom = require('mocha-jsdom')
|
2016-04-14 00:28:44 +02:00
|
|
|
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'))
|
2017-05-04 23:35:10 +02:00
|
|
|
var reducers = require(path.join(__dirname, '..', '..', '..', 'ui', 'app', 'reducers.js'))
|
2016-04-14 00:28:44 +02:00
|
|
|
|
2017-05-04 23:35:10 +02:00
|
|
|
describe('SET_SELECTED_ACCOUNT', function () {
|
|
|
|
it('sets the state.appState.activeAddress property of the state to the action.value', function () {
|
2016-04-14 00:28:44 +02:00
|
|
|
var initialState = {
|
|
|
|
appState: {
|
|
|
|
activeAddress: 'foo',
|
2017-05-04 23:35:10 +02:00
|
|
|
},
|
2016-04-14 00:28:44 +02:00
|
|
|
}
|
|
|
|
freeze(initialState)
|
|
|
|
|
|
|
|
const action = {
|
|
|
|
type: actions.SET_SELECTED_ACCOUNT,
|
|
|
|
value: 'bar',
|
|
|
|
}
|
|
|
|
freeze(action)
|
|
|
|
|
|
|
|
var resultingState = reducers(initialState, action)
|
|
|
|
assert.equal(resultingState.appState.activeAddress, action.value)
|
2017-05-04 23:35:10 +02:00
|
|
|
})
|
|
|
|
})
|
2016-05-13 10:13:14 +02:00
|
|
|
|
2017-05-04 23:35:10 +02:00
|
|
|
describe('SHOW_ACCOUNT_DETAIL', function () {
|
|
|
|
it('updates metamask state', function () {
|
2016-05-13 10:13:14 +02:00
|
|
|
var initialState = {
|
|
|
|
metamask: {
|
2017-05-04 23:35:10 +02:00
|
|
|
selectedAddress: 'foo',
|
|
|
|
},
|
2016-05-13 10:13:14 +02:00
|
|
|
}
|
|
|
|
freeze(initialState)
|
|
|
|
|
|
|
|
const action = {
|
|
|
|
type: actions.SHOW_ACCOUNT_DETAIL,
|
|
|
|
value: 'bar',
|
|
|
|
}
|
|
|
|
freeze(action)
|
|
|
|
|
|
|
|
var resultingState = reducers(initialState, action)
|
2017-01-31 00:25:12 +01:00
|
|
|
assert.equal(resultingState.metamask.selectedAddress, action.value)
|
2016-05-13 10:13:14 +02:00
|
|
|
})
|
|
|
|
})
|