debian-mirror-gitlab/spec/frontend/alert_settings/alerts_integrations_list_spec.js

90 lines
2.4 KiB
JavaScript
Raw Normal View History

2021-01-03 14:25:43 +05:30
import { GlTable, GlIcon } from '@gitlab/ui';
import { mount } from '@vue/test-utils';
import Tracking from '~/tracking';
import AlertIntegrationsList, {
i18n,
} from '~/alerts_settings/components/alerts_integrations_list.vue';
import { trackAlertIntergrationsViewsOptions } from '~/alerts_settings/constants';
const mockIntegrations = [
{
activated: true,
name: 'Integration 1',
type: 'HTTP endpoint',
},
{
activated: false,
name: 'Integration 2',
type: 'HTTP endpoint',
},
];
describe('AlertIntegrationsList', () => {
let wrapper;
function mountComponent(propsData = {}) {
wrapper = mount(AlertIntegrationsList, {
propsData: {
integrations: mockIntegrations,
...propsData,
},
stubs: {
GlIcon: true,
},
});
}
afterEach(() => {
if (wrapper) {
wrapper.destroy();
wrapper = null;
}
});
beforeEach(() => {
mountComponent();
});
const findTableComponent = () => wrapper.find(GlTable);
const finsStatusCell = () => wrapper.findAll('[data-testid="integration-activated-status"]');
it('renders a table', () => {
expect(findTableComponent().exists()).toBe(true);
});
it('renders an empty state when no integrations provided', () => {
mountComponent({ integrations: [] });
expect(findTableComponent().text()).toContain(i18n.emptyState);
});
describe('integration status', () => {
it('enabled', () => {
const cell = finsStatusCell().at(0);
const activatedIcon = cell.find(GlIcon);
expect(cell.text()).toBe(i18n.status.enabled.name);
expect(activatedIcon.attributes('name')).toBe('check-circle-filled');
expect(activatedIcon.attributes('title')).toBe(i18n.status.enabled.tooltip);
});
it('disabled', () => {
const cell = finsStatusCell().at(1);
const notActivatedIcon = cell.find(GlIcon);
expect(cell.text()).toBe(i18n.status.disabled.name);
expect(notActivatedIcon.attributes('name')).toBe('warning-solid');
expect(notActivatedIcon.attributes('title')).toBe(i18n.status.disabled.tooltip);
});
});
describe('Snowplow tracking', () => {
beforeEach(() => {
jest.spyOn(Tracking, 'event');
mountComponent();
});
it('should track alert list page views', () => {
const { category, action } = trackAlertIntergrationsViewsOptions;
expect(Tracking.event).toHaveBeenCalledWith(category, action);
});
});
});