2017-09-10 17:25:29 +05:30
|
|
|
import Vue from 'vue';
|
2018-03-17 18:26:18 +05:30
|
|
|
import EmptyState from '~/monitoring/components/empty_state.vue';
|
2017-09-10 17:25:29 +05:30
|
|
|
import { statePaths } from './mock_data';
|
|
|
|
|
|
|
|
const createComponent = (propsData) => {
|
2018-03-17 18:26:18 +05:30
|
|
|
const Component = Vue.extend(EmptyState);
|
2017-09-10 17:25:29 +05:30
|
|
|
|
|
|
|
return new Component({
|
|
|
|
propsData,
|
|
|
|
}).$mount();
|
|
|
|
};
|
|
|
|
|
|
|
|
function getTextFromNode(component, selector) {
|
|
|
|
return component.$el.querySelector(selector).firstChild.nodeValue.trim();
|
|
|
|
}
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
describe('EmptyState', () => {
|
2017-09-10 17:25:29 +05:30
|
|
|
describe('Computed props', () => {
|
|
|
|
it('currentState', () => {
|
|
|
|
const component = createComponent({
|
|
|
|
selectedState: 'gettingStarted',
|
|
|
|
settingsPath: statePaths.settingsPath,
|
|
|
|
documentationPath: statePaths.documentationPath,
|
2018-03-17 18:26:18 +05:30
|
|
|
emptyGettingStartedSvgPath: 'foo',
|
|
|
|
emptyLoadingSvgPath: 'foo',
|
|
|
|
emptyUnableToConnectSvgPath: 'foo',
|
2017-09-10 17:25:29 +05:30
|
|
|
});
|
|
|
|
|
|
|
|
expect(component.currentState).toBe(component.states.gettingStarted);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('showButtonDescription returns a description with a link for the unableToConnect state', () => {
|
|
|
|
const component = createComponent({
|
|
|
|
selectedState: 'unableToConnect',
|
|
|
|
settingsPath: statePaths.settingsPath,
|
|
|
|
documentationPath: statePaths.documentationPath,
|
2018-03-17 18:26:18 +05:30
|
|
|
emptyGettingStartedSvgPath: 'foo',
|
|
|
|
emptyLoadingSvgPath: 'foo',
|
|
|
|
emptyUnableToConnectSvgPath: 'foo',
|
2017-09-10 17:25:29 +05:30
|
|
|
});
|
|
|
|
|
|
|
|
expect(component.showButtonDescription).toEqual(true);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('showButtonDescription returns the description without a link for any other state', () => {
|
|
|
|
const component = createComponent({
|
|
|
|
selectedState: 'loading',
|
|
|
|
settingsPath: statePaths.settingsPath,
|
|
|
|
documentationPath: statePaths.documentationPath,
|
2018-03-17 18:26:18 +05:30
|
|
|
emptyGettingStartedSvgPath: 'foo',
|
|
|
|
emptyLoadingSvgPath: 'foo',
|
|
|
|
emptyUnableToConnectSvgPath: 'foo',
|
2017-09-10 17:25:29 +05:30
|
|
|
});
|
|
|
|
|
|
|
|
expect(component.showButtonDescription).toEqual(false);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should show the gettingStarted state', () => {
|
|
|
|
const component = createComponent({
|
|
|
|
selectedState: 'gettingStarted',
|
|
|
|
settingsPath: statePaths.settingsPath,
|
2018-03-17 18:26:18 +05:30
|
|
|
clustersPath: statePaths.clustersPath,
|
2017-09-10 17:25:29 +05:30
|
|
|
documentationPath: statePaths.documentationPath,
|
2018-03-17 18:26:18 +05:30
|
|
|
emptyGettingStartedSvgPath: 'foo',
|
|
|
|
emptyLoadingSvgPath: 'foo',
|
|
|
|
emptyUnableToConnectSvgPath: 'foo',
|
2017-09-10 17:25:29 +05:30
|
|
|
});
|
|
|
|
|
|
|
|
expect(component.$el.querySelector('svg')).toBeDefined();
|
|
|
|
expect(getTextFromNode(component, '.state-title')).toEqual(component.states.gettingStarted.title);
|
|
|
|
expect(getTextFromNode(component, '.state-description')).toEqual(component.states.gettingStarted.description);
|
|
|
|
expect(getTextFromNode(component, '.btn-success')).toEqual(component.states.gettingStarted.buttonText);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should show the loading state', () => {
|
|
|
|
const component = createComponent({
|
|
|
|
selectedState: 'loading',
|
|
|
|
settingsPath: statePaths.settingsPath,
|
|
|
|
documentationPath: statePaths.documentationPath,
|
2018-03-17 18:26:18 +05:30
|
|
|
emptyGettingStartedSvgPath: 'foo',
|
|
|
|
emptyLoadingSvgPath: 'foo',
|
|
|
|
emptyUnableToConnectSvgPath: 'foo',
|
2017-09-10 17:25:29 +05:30
|
|
|
});
|
|
|
|
|
|
|
|
expect(component.$el.querySelector('svg')).toBeDefined();
|
|
|
|
expect(getTextFromNode(component, '.state-title')).toEqual(component.states.loading.title);
|
|
|
|
expect(getTextFromNode(component, '.state-description')).toEqual(component.states.loading.description);
|
|
|
|
expect(getTextFromNode(component, '.btn-success')).toEqual(component.states.loading.buttonText);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should show the unableToConnect state', () => {
|
|
|
|
const component = createComponent({
|
|
|
|
selectedState: 'unableToConnect',
|
|
|
|
settingsPath: statePaths.settingsPath,
|
|
|
|
documentationPath: statePaths.documentationPath,
|
2018-03-17 18:26:18 +05:30
|
|
|
emptyGettingStartedSvgPath: 'foo',
|
|
|
|
emptyLoadingSvgPath: 'foo',
|
|
|
|
emptyUnableToConnectSvgPath: 'foo',
|
2017-09-10 17:25:29 +05:30
|
|
|
});
|
|
|
|
|
|
|
|
expect(component.$el.querySelector('svg')).toBeDefined();
|
|
|
|
expect(getTextFromNode(component, '.state-title')).toEqual(component.states.unableToConnect.title);
|
|
|
|
expect(component.$el.querySelector('.state-description a')).toBeDefined();
|
|
|
|
expect(getTextFromNode(component, '.btn-success')).toEqual(component.states.unableToConnect.buttonText);
|
|
|
|
});
|
|
|
|
});
|