tripleo-ui/src/__tests__/components/nodes/Nodes.tests.js

37 lines
1.1 KiB
JavaScript

import React from 'react';
import TestUtils from 'react-addons-test-utils';
const IronicApiService = require('../../../js/services/IronicApiService');
import Nodes from '../../../js/components/nodes/Nodes';
describe('Nodes Component', () => {
let NodesVdom, NodesInstance;
beforeEach(() => {
let shallowRenderer = TestUtils.createRenderer();
shallowRenderer.render(<Nodes/>);
NodesVdom = shallowRenderer.getRenderOutput();
NodesInstance = shallowRenderer._instance._instance;
});
// TODO(jtomasek): not sure how to mock children passed by react router
xit('should render Nodes nav tabs', () => {
expect(NodesVdom).toExist();
});
xit('should render tab-pane', () => {
});
xit('should listen to NodesStore changes', () => {
});
xit('should get nodes from NodesStore and store them in state on change in NodesStore', () => {
});
xit('should issue a request to list Nodes on when mounted', () => {
spyOn(IronicApiService, 'handleGetNodes');
NodesInstance.componentDidMount();
expect(IronicApiService.handleGetNodes).toHaveBeenCalled();
});
});