mirror of
https://github.com/weaveworks/scope.git
synced 2026-03-03 18:20:27 +00:00
475 lines
16 KiB
JavaScript
475 lines
16 KiB
JavaScript
jest.dontMock('../../utils/router-utils');
|
|
jest.dontMock('../../utils/search-utils');
|
|
jest.dontMock('../../utils/string-utils');
|
|
jest.dontMock('../../utils/topology-utils');
|
|
jest.dontMock('../../utils/network-view-utils');
|
|
jest.dontMock('../../constants/action-types');
|
|
jest.dontMock('../root');
|
|
|
|
const is = require('immutable').is;
|
|
|
|
// Root reducer test suite using Jasmine matchers
|
|
|
|
describe('RootReducer', () => {
|
|
const ActionTypes = require('../../constants/action-types').default;
|
|
const reducer = require('../root').default;
|
|
const initialState = require('../root').initialState;
|
|
const topologyUtils = require('../../utils/topology-utils');
|
|
// TODO maybe extract those to topology-utils tests?
|
|
const getActiveTopologyOptions = topologyUtils.getActiveTopologyOptions;
|
|
const getAdjacentNodes = topologyUtils.getAdjacentNodes;
|
|
const isTopologyEmpty = topologyUtils.isTopologyEmpty;
|
|
const getUrlState = require('../../utils/router-utils').getUrlState;
|
|
|
|
// fixtures
|
|
|
|
const NODE_SET = {
|
|
n1: {
|
|
id: 'n1',
|
|
rank: undefined,
|
|
adjacency: ['n1', 'n2'],
|
|
pseudo: undefined,
|
|
label: undefined,
|
|
label_minor: undefined,
|
|
filtered: false,
|
|
metrics: undefined,
|
|
node_count: undefined,
|
|
shape: undefined,
|
|
stack: undefined
|
|
},
|
|
n2: {
|
|
id: 'n2',
|
|
rank: undefined,
|
|
adjacency: undefined,
|
|
pseudo: undefined,
|
|
label: undefined,
|
|
label_minor: undefined,
|
|
filtered: false,
|
|
metrics: undefined,
|
|
node_count: undefined,
|
|
shape: undefined,
|
|
stack: undefined
|
|
}
|
|
};
|
|
|
|
// actions
|
|
|
|
const ChangeTopologyOptionAction = {
|
|
type: ActionTypes.CHANGE_TOPOLOGY_OPTION,
|
|
topologyId: 'topo1',
|
|
option: 'option1',
|
|
value: 'on'
|
|
};
|
|
|
|
const ChangeTopologyOptionAction2 = {
|
|
type: ActionTypes.CHANGE_TOPOLOGY_OPTION,
|
|
topologyId: 'topo1',
|
|
option: 'option1',
|
|
value: 'off'
|
|
};
|
|
|
|
const ClickNodeAction = {
|
|
type: ActionTypes.CLICK_NODE,
|
|
nodeId: 'n1'
|
|
};
|
|
|
|
const ClickNode2Action = {
|
|
type: ActionTypes.CLICK_NODE,
|
|
nodeId: 'n2'
|
|
};
|
|
|
|
const ClickRelativeAction = {
|
|
type: ActionTypes.CLICK_RELATIVE,
|
|
nodeId: 'rel1'
|
|
};
|
|
|
|
const ClickShowTopologyForNodeAction = {
|
|
type: ActionTypes.CLICK_SHOW_TOPOLOGY_FOR_NODE,
|
|
topologyId: 'topo2',
|
|
nodeId: 'rel1'
|
|
};
|
|
|
|
const ClickSubTopologyAction = {
|
|
type: ActionTypes.CLICK_TOPOLOGY,
|
|
topologyId: 'topo1-grouped'
|
|
};
|
|
|
|
const ClickTopologyAction = {
|
|
type: ActionTypes.CLICK_TOPOLOGY,
|
|
topologyId: 'topo1'
|
|
};
|
|
|
|
const ClickTopology2Action = {
|
|
type: ActionTypes.CLICK_TOPOLOGY,
|
|
topologyId: 'topo2'
|
|
};
|
|
|
|
const CloseWebsocketAction = {
|
|
type: ActionTypes.CLOSE_WEBSOCKET
|
|
};
|
|
|
|
const deSelectNode = {
|
|
type: ActionTypes.DESELECT_NODE
|
|
};
|
|
|
|
const OpenWebsocketAction = {
|
|
type: ActionTypes.OPEN_WEBSOCKET
|
|
};
|
|
|
|
const ReceiveNodesDeltaAction = {
|
|
type: ActionTypes.RECEIVE_NODES_DELTA,
|
|
delta: {
|
|
add: [{
|
|
id: 'n1',
|
|
adjacency: ['n1', 'n2']
|
|
}, {
|
|
id: 'n2'
|
|
}]
|
|
}
|
|
};
|
|
|
|
const ReceiveNodesDeltaUpdateAction = {
|
|
type: ActionTypes.RECEIVE_NODES_DELTA,
|
|
delta: {
|
|
update: [{
|
|
id: 'n1',
|
|
adjacency: ['n1']
|
|
}],
|
|
remove: ['n2']
|
|
}
|
|
};
|
|
|
|
const ReceiveTopologiesAction = {
|
|
type: ActionTypes.RECEIVE_TOPOLOGIES,
|
|
topologies: [{
|
|
url: '/topo1',
|
|
name: 'Topo1',
|
|
options: [{
|
|
id: 'option1',
|
|
defaultValue: 'off',
|
|
options: [
|
|
{value: 'on'},
|
|
{value: 'off'}
|
|
]
|
|
}],
|
|
stats: {
|
|
node_count: 1
|
|
},
|
|
sub_topologies: [{
|
|
url: '/topo1-grouped',
|
|
name: 'topo 1 grouped'
|
|
}]
|
|
}, {
|
|
url: '/topo2',
|
|
name: 'Topo2',
|
|
stats: {
|
|
node_count: 0
|
|
}
|
|
}]
|
|
};
|
|
|
|
const RouteAction = {
|
|
type: ActionTypes.ROUTE_TOPOLOGY,
|
|
state: {}
|
|
};
|
|
|
|
// Basic tests
|
|
|
|
it('returns initial state', () => {
|
|
const nextState = reducer(undefined, {});
|
|
expect(is(nextState, initialState)).toBeTruthy();
|
|
});
|
|
|
|
// topology tests
|
|
|
|
it('init with no topologies', () => {
|
|
const nextState = reducer(undefined, {});
|
|
expect(nextState.get('topologies').size).toBe(0);
|
|
expect(nextState.get('currentTopology')).toBeFalsy();
|
|
});
|
|
|
|
it('get current topology', () => {
|
|
let nextState = initialState;
|
|
nextState = reducer(nextState, ReceiveTopologiesAction);
|
|
nextState = reducer(nextState, ClickTopologyAction);
|
|
|
|
expect(nextState.get('topologies').size).toBe(2);
|
|
expect(nextState.get('currentTopology').get('name')).toBe('Topo1');
|
|
expect(nextState.get('currentTopology').get('url')).toBe('/topo1');
|
|
expect(nextState.get('currentTopology').get('options').first().get('id')).toBe('option1');
|
|
});
|
|
|
|
it('get sub-topology', () => {
|
|
let nextState = initialState;
|
|
nextState = reducer(nextState, ReceiveTopologiesAction);
|
|
nextState = reducer(nextState, ClickSubTopologyAction);
|
|
|
|
expect(nextState.get('topologies').size).toBe(2);
|
|
expect(nextState.get('currentTopology').get('name')).toBe('topo 1 grouped');
|
|
expect(nextState.get('currentTopology').get('url')).toBe('/topo1-grouped');
|
|
expect(nextState.get('currentTopology').get('options')).toBeUndefined();
|
|
});
|
|
|
|
// topology options
|
|
|
|
it('changes topology option', () => {
|
|
let nextState = initialState;
|
|
nextState = reducer(nextState, ReceiveTopologiesAction);
|
|
nextState = reducer(nextState, ClickTopologyAction);
|
|
|
|
// default options
|
|
expect(getActiveTopologyOptions(nextState).has('option1')).toBeTruthy();
|
|
expect(getActiveTopologyOptions(nextState).get('option1')).toBe('off');
|
|
expect(getUrlState(nextState).topologyOptions.topo1.option1).toBe('off');
|
|
|
|
// turn on
|
|
nextState = reducer(nextState, ChangeTopologyOptionAction);
|
|
expect(getActiveTopologyOptions(nextState).get('option1')).toBe('on');
|
|
expect(getUrlState(nextState).topologyOptions.topo1.option1).toBe('on');
|
|
|
|
// turn off
|
|
nextState = reducer(nextState, ChangeTopologyOptionAction2);
|
|
expect(getActiveTopologyOptions(nextState).get('option1')).toBe('off');
|
|
expect(getUrlState(nextState).topologyOptions.topo1.option1).toBe('off');
|
|
|
|
// sub-topology should retain main topo options
|
|
nextState = reducer(nextState, ClickSubTopologyAction);
|
|
expect(getActiveTopologyOptions(nextState).get('option1')).toBe('off');
|
|
expect(getUrlState(nextState).topologyOptions.topo1.option1).toBe('off');
|
|
|
|
// other topology w/o options dont return options, but keep in app state
|
|
nextState = reducer(nextState, ClickTopology2Action);
|
|
expect(getActiveTopologyOptions(nextState)).toBeUndefined();
|
|
expect(getUrlState(nextState).topologyOptions.topo1.option1).toBe('off');
|
|
});
|
|
|
|
it('sets topology options from route', () => {
|
|
RouteAction.state = {
|
|
topologyId: 'topo1',
|
|
selectedNodeId: null,
|
|
topologyOptions: {topo1: {option1: 'on'}}};
|
|
|
|
let nextState = initialState;
|
|
nextState = reducer(nextState, RouteAction);
|
|
expect(getActiveTopologyOptions(nextState).get('option1')).toBe('on');
|
|
expect(getUrlState(nextState).topologyOptions.topo1.option1).toBe('on');
|
|
|
|
// stay same after topos have been received
|
|
nextState = reducer(nextState, ReceiveTopologiesAction);
|
|
nextState = reducer(nextState, ClickTopologyAction);
|
|
expect(getActiveTopologyOptions(nextState).get('option1')).toBe('on');
|
|
expect(getUrlState(nextState).topologyOptions.topo1.option1).toBe('on');
|
|
});
|
|
|
|
it('uses default topology options from route', () => {
|
|
RouteAction.state = {
|
|
topologyId: 'topo1',
|
|
selectedNodeId: null,
|
|
topologyOptions: null};
|
|
let nextState = initialState;
|
|
nextState = reducer(nextState, RouteAction);
|
|
nextState = reducer(nextState, ReceiveTopologiesAction);
|
|
nextState = reducer(nextState, ClickTopologyAction);
|
|
expect(getActiveTopologyOptions(nextState).get('option1')).toBe('off');
|
|
expect(getUrlState(nextState).topologyOptions.topo1.option1).toBe('off');
|
|
});
|
|
|
|
// nodes delta
|
|
|
|
it('replaces adjacency on update', () => {
|
|
let nextState = initialState;
|
|
nextState = reducer(nextState, ReceiveNodesDeltaAction);
|
|
expect(nextState.get('nodes').toJS().n1.adjacency).toEqual(['n1', 'n2']);
|
|
nextState = reducer(nextState, ReceiveNodesDeltaUpdateAction);
|
|
expect(nextState.get('nodes').toJS().n1.adjacency).toEqual(['n1']);
|
|
});
|
|
|
|
// browsing
|
|
|
|
it('shows nodes that were received', () => {
|
|
let nextState = initialState;
|
|
nextState = reducer(nextState, ReceiveNodesDeltaAction);
|
|
expect(nextState.get('nodes').toJS()).toEqual(NODE_SET);
|
|
});
|
|
|
|
it('knows a route was set', () => {
|
|
let nextState = initialState;
|
|
expect(nextState.get('routeSet')).toBeFalsy();
|
|
nextState = reducer(nextState, RouteAction);
|
|
expect(nextState.get('routeSet')).toBeTruthy();
|
|
});
|
|
|
|
it('gets selected node after click', () => {
|
|
let nextState = initialState;
|
|
nextState = reducer(nextState, ReceiveNodesDeltaAction);
|
|
nextState = reducer(nextState, ClickNodeAction);
|
|
|
|
expect(nextState.get('selectedNodeId')).toBe('n1');
|
|
expect(nextState.get('nodes').toJS()).toEqual(NODE_SET);
|
|
|
|
nextState = reducer(nextState, deSelectNode);
|
|
expect(nextState.get('selectedNodeId')).toBe(null);
|
|
expect(nextState.get('nodes').toJS()).toEqual(NODE_SET);
|
|
});
|
|
|
|
it('keeps showing nodes on navigating back after node click', () => {
|
|
let nextState = initialState;
|
|
nextState = reducer(nextState, ReceiveTopologiesAction);
|
|
nextState = reducer(nextState, ClickTopologyAction);
|
|
nextState = reducer(nextState, ReceiveNodesDeltaAction);
|
|
expect(getUrlState(nextState).selectedNodeId).toEqual(null);
|
|
|
|
nextState = reducer(nextState, ClickNodeAction);
|
|
expect(getUrlState(nextState).selectedNodeId).toEqual('n1');
|
|
|
|
// go back in browsing
|
|
RouteAction.state = {topologyId: 'topo1', selectedNodeId: null};
|
|
nextState = reducer(nextState, RouteAction);
|
|
expect(nextState.get('selectedNodeId')).toBe(null);
|
|
expect(nextState.get('nodes').toJS()).toEqual(NODE_SET);
|
|
});
|
|
|
|
it('closes details when changing topologies', () => {
|
|
let nextState = initialState;
|
|
nextState = reducer(nextState, ReceiveTopologiesAction);
|
|
nextState = reducer(nextState, ClickTopologyAction);
|
|
nextState = reducer(nextState, ReceiveNodesDeltaAction);
|
|
|
|
expect(getUrlState(nextState).selectedNodeId).toEqual(null);
|
|
expect(getUrlState(nextState).topologyId).toEqual('topo1');
|
|
|
|
nextState = reducer(nextState, ClickNodeAction);
|
|
expect(getUrlState(nextState).selectedNodeId).toEqual('n1');
|
|
expect(getUrlState(nextState).topologyId).toEqual('topo1');
|
|
|
|
nextState = reducer(nextState, ClickSubTopologyAction);
|
|
expect(getUrlState(nextState).selectedNodeId).toEqual(null);
|
|
expect(getUrlState(nextState).topologyId).toEqual('topo1-grouped');
|
|
});
|
|
|
|
// connection errors
|
|
|
|
it('resets topology on websocket reconnect', () => {
|
|
let nextState = initialState;
|
|
nextState = reducer(nextState, ReceiveNodesDeltaAction);
|
|
expect(nextState.get('nodes').toJS()).toEqual(NODE_SET);
|
|
|
|
nextState = reducer(nextState, CloseWebsocketAction);
|
|
expect(nextState.get('websocketClosed')).toBeTruthy();
|
|
// keep showing old nodes
|
|
expect(nextState.get('nodes').toJS()).toEqual(NODE_SET);
|
|
|
|
nextState = reducer(nextState, OpenWebsocketAction);
|
|
expect(nextState.get('websocketClosed')).toBeFalsy();
|
|
// opened socket clears nodes
|
|
expect(nextState.get('nodes').toJS()).toEqual({});
|
|
});
|
|
|
|
// adjacency test
|
|
|
|
it('returns the correct adjacency set for a node', () => {
|
|
let nextState = initialState;
|
|
nextState = reducer(nextState, ReceiveNodesDeltaAction);
|
|
expect(getAdjacentNodes(nextState).size).toEqual(0);
|
|
|
|
nextState = reducer(nextState, ClickNodeAction);
|
|
expect(getAdjacentNodes(nextState, 'n1').size).toEqual(2);
|
|
expect(getAdjacentNodes(nextState, 'n1').has('n1')).toBeTruthy();
|
|
expect(getAdjacentNodes(nextState, 'n1').has('n2')).toBeTruthy();
|
|
|
|
nextState = reducer(nextState, deSelectNode);
|
|
expect(getAdjacentNodes(nextState).size).toEqual(0);
|
|
});
|
|
|
|
// empty topology
|
|
|
|
it('detects that the topology is empty', () => {
|
|
let nextState = initialState;
|
|
nextState = reducer(nextState, ReceiveTopologiesAction);
|
|
nextState = reducer(nextState, ClickTopologyAction);
|
|
expect(isTopologyEmpty(nextState)).toBeFalsy();
|
|
|
|
nextState = reducer(nextState, ClickTopology2Action);
|
|
expect(isTopologyEmpty(nextState)).toBeTruthy();
|
|
|
|
nextState = reducer(nextState, ClickTopologyAction);
|
|
expect(isTopologyEmpty(nextState)).toBeFalsy();
|
|
});
|
|
|
|
// selection of relatives
|
|
|
|
it('keeps relatives as a stack', () => {
|
|
let nextState = initialState;
|
|
nextState = reducer(nextState, ClickNodeAction);
|
|
expect(nextState.get('selectedNodeId')).toBe('n1');
|
|
expect(nextState.get('nodeDetails').size).toEqual(1);
|
|
expect(nextState.get('nodeDetails').has('n1')).toBeTruthy();
|
|
expect(nextState.get('nodeDetails').keySeq().last()).toEqual('n1');
|
|
|
|
nextState = reducer(nextState, ClickRelativeAction);
|
|
// stack relative, first node stays main node
|
|
expect(nextState.get('selectedNodeId')).toBe('n1');
|
|
expect(nextState.get('nodeDetails').keySeq().last()).toEqual('rel1');
|
|
expect(nextState.get('nodeDetails').size).toEqual(2);
|
|
expect(nextState.get('nodeDetails').has('rel1')).toBeTruthy();
|
|
|
|
// click on first node should clear the stack
|
|
nextState = reducer(nextState, ClickNodeAction);
|
|
expect(nextState.get('selectedNodeId')).toBe('n1');
|
|
expect(nextState.get('nodeDetails').keySeq().last()).toEqual('n1');
|
|
expect(nextState.get('nodeDetails').size).toEqual(1);
|
|
expect(nextState.get('nodeDetails').has('rel1')).toBeFalsy();
|
|
});
|
|
|
|
it('keeps clears stack when sibling is clicked', () => {
|
|
let nextState = initialState;
|
|
nextState = reducer(nextState, ClickNodeAction);
|
|
expect(nextState.get('selectedNodeId')).toBe('n1');
|
|
expect(nextState.get('nodeDetails').size).toEqual(1);
|
|
expect(nextState.get('nodeDetails').has('n1')).toBeTruthy();
|
|
expect(nextState.get('nodeDetails').keySeq().last()).toEqual('n1');
|
|
|
|
nextState = reducer(nextState, ClickRelativeAction);
|
|
// stack relative, first node stays main node
|
|
expect(nextState.get('selectedNodeId')).toBe('n1');
|
|
expect(nextState.get('nodeDetails').keySeq().last()).toEqual('rel1');
|
|
expect(nextState.get('nodeDetails').size).toEqual(2);
|
|
expect(nextState.get('nodeDetails').has('rel1')).toBeTruthy();
|
|
|
|
// click on sibling node should clear the stack
|
|
nextState = reducer(nextState, ClickNode2Action);
|
|
expect(nextState.get('selectedNodeId')).toBe('n2');
|
|
expect(nextState.get('nodeDetails').keySeq().last()).toEqual('n2');
|
|
expect(nextState.get('nodeDetails').size).toEqual(1);
|
|
expect(nextState.get('nodeDetails').has('n1')).toBeFalsy();
|
|
expect(nextState.get('nodeDetails').has('rel1')).toBeFalsy();
|
|
});
|
|
|
|
it('selectes relatives topology while keeping node selected', () => {
|
|
let nextState = initialState;
|
|
nextState = reducer(nextState, ClickTopologyAction);
|
|
nextState = reducer(nextState, ReceiveTopologiesAction);
|
|
expect(nextState.get('currentTopology').get('name')).toBe('Topo1');
|
|
|
|
nextState = reducer(nextState, ClickNodeAction);
|
|
expect(nextState.get('selectedNodeId')).toBe('n1');
|
|
expect(nextState.get('nodeDetails').size).toEqual(1);
|
|
expect(nextState.get('nodeDetails').has('n1')).toBeTruthy();
|
|
expect(nextState.get('nodeDetails').keySeq().last()).toEqual('n1');
|
|
|
|
nextState = reducer(nextState, ClickRelativeAction);
|
|
// stack relative, first node stays main node
|
|
expect(nextState.get('selectedNodeId')).toBe('n1');
|
|
expect(nextState.get('nodeDetails').keySeq().last()).toEqual('rel1');
|
|
expect(nextState.get('nodeDetails').size).toEqual(2);
|
|
expect(nextState.get('nodeDetails').has('rel1')).toBeTruthy();
|
|
|
|
// click switches over to relative's topology and selectes relative
|
|
nextState = reducer(nextState, ClickShowTopologyForNodeAction);
|
|
expect(nextState.get('selectedNodeId')).toBe('rel1');
|
|
expect(nextState.get('nodeDetails').keySeq().last()).toEqual('rel1');
|
|
expect(nextState.get('nodeDetails').size).toEqual(1);
|
|
expect(nextState.get('currentTopology').get('name')).toBe('Topo2');
|
|
});
|
|
});
|