120 lines
3.3 KiB
JavaScript
120 lines
3.3 KiB
JavaScript
import { GlToggle } from '@gitlab/ui';
|
|
import { shallowMount } from '@vue/test-utils';
|
|
import { extendedWrapper } from 'helpers/vue_test_utils_helper';
|
|
import Subscriptions from '~/sidebar/components/subscriptions/subscriptions.vue';
|
|
import eventHub from '~/sidebar/event_hub';
|
|
|
|
describe('Subscriptions', () => {
|
|
let wrapper;
|
|
|
|
const findToggleButton = () => wrapper.findComponent(GlToggle);
|
|
|
|
const mountComponent = (propsData) =>
|
|
extendedWrapper(
|
|
shallowMount(Subscriptions, {
|
|
propsData,
|
|
}),
|
|
);
|
|
|
|
afterEach(() => {
|
|
wrapper.destroy();
|
|
wrapper = null;
|
|
});
|
|
|
|
it('shows loading spinner when loading', () => {
|
|
wrapper = mountComponent({
|
|
loading: true,
|
|
subscribed: undefined,
|
|
});
|
|
|
|
expect(findToggleButton().props('isLoading')).toBe(true);
|
|
});
|
|
|
|
it('is toggled "off" when currently not subscribed', () => {
|
|
wrapper = mountComponent({
|
|
subscribed: false,
|
|
});
|
|
|
|
expect(findToggleButton().props('value')).toBe(false);
|
|
});
|
|
|
|
it('is toggled "on" when currently subscribed', () => {
|
|
wrapper = mountComponent({
|
|
subscribed: true,
|
|
});
|
|
|
|
expect(findToggleButton().props('value')).toBe(true);
|
|
});
|
|
|
|
it('toggleSubscription method emits `toggleSubscription` event on eventHub and Component', () => {
|
|
const id = 42;
|
|
wrapper = mountComponent({ subscribed: true, id });
|
|
const eventHubSpy = jest.spyOn(eventHub, '$emit');
|
|
const wrapperEmitSpy = jest.spyOn(wrapper.vm, '$emit');
|
|
|
|
wrapper.vm.toggleSubscription();
|
|
|
|
expect(eventHubSpy).toHaveBeenCalledWith('toggleSubscription', id);
|
|
expect(wrapperEmitSpy).toHaveBeenCalledWith('toggleSubscription', id);
|
|
eventHubSpy.mockRestore();
|
|
wrapperEmitSpy.mockRestore();
|
|
});
|
|
|
|
it('tracks the event when toggled', () => {
|
|
wrapper = mountComponent({ subscribed: true });
|
|
|
|
const wrapperTrackSpy = jest.spyOn(wrapper.vm, 'track');
|
|
|
|
wrapper.vm.toggleSubscription();
|
|
|
|
expect(wrapperTrackSpy).toHaveBeenCalledWith('toggle_button', {
|
|
property: 'notifications',
|
|
value: 0,
|
|
});
|
|
wrapperTrackSpy.mockRestore();
|
|
});
|
|
|
|
it('onClickCollapsedIcon method emits `toggleSidebar` event on component', () => {
|
|
wrapper = mountComponent({ subscribed: true });
|
|
const spy = jest.spyOn(wrapper.vm, '$emit');
|
|
|
|
wrapper.vm.onClickCollapsedIcon();
|
|
|
|
expect(spy).toHaveBeenCalledWith('toggleSidebar');
|
|
spy.mockRestore();
|
|
});
|
|
|
|
it('has visually hidden label', () => {
|
|
wrapper = mountComponent();
|
|
|
|
expect(findToggleButton().props()).toMatchObject({
|
|
label: 'Notifications',
|
|
labelPosition: 'hidden',
|
|
});
|
|
});
|
|
|
|
describe('given project emails are disabled', () => {
|
|
const subscribeDisabledDescription = 'Notifications have been disabled';
|
|
|
|
beforeEach(() => {
|
|
wrapper = mountComponent({
|
|
subscribed: false,
|
|
projectEmailsDisabled: true,
|
|
subscribeDisabledDescription,
|
|
});
|
|
});
|
|
|
|
it('sets the correct display text', () => {
|
|
expect(wrapper.findByTestId('subscription-title').text()).toContain(
|
|
subscribeDisabledDescription,
|
|
);
|
|
expect(wrapper.find({ ref: 'tooltip' }).attributes('title')).toBe(
|
|
subscribeDisabledDescription,
|
|
);
|
|
});
|
|
|
|
it('does not render the toggle button', () => {
|
|
expect(findToggleButton().exists()).toBe(false);
|
|
});
|
|
});
|
|
});
|