2018-05-29 14:51:42 +00:00
|
|
|
import { changeNodeRequested, changeNodeSucceeded } from 'actions/config';
|
2018-04-05 20:53:36 +00:00
|
|
|
import { selectedNode } from 'reducers/config/nodes/selectedNode';
|
|
|
|
import { SelectedNodeState } from 'reducers/config/nodes/types';
|
2018-02-12 20:43:07 +00:00
|
|
|
|
|
|
|
export const expectedState = {
|
2018-04-09 17:23:37 +00:00
|
|
|
initialState: { nodeId: 'eth_mycrypto', prevNode: 'eth_mycrypto', pending: false },
|
|
|
|
nodeChange: { nodeId: 'nodeToChangeTo', prevNode: 'eth_auto', pending: false },
|
|
|
|
nodeChangeIntent: { nodeId: 'eth_mycrypto', prevNode: 'eth_mycrypto', pending: true }
|
2018-02-12 20:43:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
export const actions = {
|
2018-05-29 14:51:42 +00:00
|
|
|
changeNode: changeNodeSucceeded({ nodeId: 'nodeToChangeTo', networkId: 'networkToChangeTo' }),
|
|
|
|
changeNodeRequested: changeNodeRequested('eth_mycrypto')
|
2018-02-12 20:43:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
describe('selected node reducer', () => {
|
|
|
|
it('should handle a node change', () =>
|
|
|
|
expect(selectedNode(undefined, actions.changeNode)).toEqual(expectedState.nodeChange));
|
|
|
|
|
|
|
|
it('should handle the intent to change a node', () =>
|
2018-04-05 20:53:36 +00:00
|
|
|
expect(
|
2018-05-29 14:51:42 +00:00
|
|
|
selectedNode(expectedState.initialState as SelectedNodeState, actions.changeNodeRequested)
|
2018-04-05 20:53:36 +00:00
|
|
|
).toEqual(expectedState.nodeChangeIntent));
|
2018-02-12 20:43:07 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
export { actions as selectedNodeActions, expectedState as selectedNodeExpectedState };
|