2017-10-31 12:15:03 -04:00
|
|
|
import Vue from 'vue';
|
2018-02-26 14:43:34 -05:00
|
|
|
import mountComponent from 'spec/helpers/vue_mount_component_helper';
|
2019-09-19 17:06:29 -04:00
|
|
|
import { mockTracking } from 'spec/helpers/tracking_helper';
|
2019-12-10 04:07:51 -05:00
|
|
|
import subscriptions from '~/sidebar/components/subscriptions/subscriptions.vue';
|
|
|
|
import eventHub from '~/sidebar/event_hub';
|
2017-10-31 12:15:03 -04:00
|
|
|
|
2018-10-17 03:13:26 -04:00
|
|
|
describe('Subscriptions', function() {
|
2017-10-31 12:15:03 -04:00
|
|
|
let vm;
|
|
|
|
let Subscriptions;
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
Subscriptions = Vue.extend(subscriptions);
|
|
|
|
});
|
|
|
|
|
|
|
|
afterEach(() => {
|
|
|
|
vm.$destroy();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('shows loading spinner when loading', () => {
|
|
|
|
vm = mountComponent(Subscriptions, {
|
|
|
|
loading: true,
|
|
|
|
subscribed: undefined,
|
|
|
|
});
|
|
|
|
|
2018-01-12 00:45:54 -05:00
|
|
|
expect(vm.$refs.toggleButton.isLoading).toBe(true);
|
2018-10-17 03:13:26 -04:00
|
|
|
expect(vm.$refs.toggleButton.$el.querySelector('.project-feature-toggle')).toHaveClass(
|
|
|
|
'is-loading',
|
|
|
|
);
|
2017-10-31 12:15:03 -04:00
|
|
|
});
|
|
|
|
|
2018-01-12 00:45:54 -05:00
|
|
|
it('is toggled "off" when currently not subscribed', () => {
|
2017-10-31 12:15:03 -04:00
|
|
|
vm = mountComponent(Subscriptions, {
|
|
|
|
subscribed: false,
|
|
|
|
});
|
|
|
|
|
2018-10-17 03:13:26 -04:00
|
|
|
expect(vm.$refs.toggleButton.$el.querySelector('.project-feature-toggle')).not.toHaveClass(
|
|
|
|
'is-checked',
|
|
|
|
);
|
2017-10-31 12:15:03 -04:00
|
|
|
});
|
|
|
|
|
2018-01-12 00:45:54 -05:00
|
|
|
it('is toggled "on" when currently subscribed', () => {
|
2017-10-31 12:15:03 -04:00
|
|
|
vm = mountComponent(Subscriptions, {
|
|
|
|
subscribed: true,
|
|
|
|
});
|
|
|
|
|
2018-10-17 03:13:26 -04:00
|
|
|
expect(vm.$refs.toggleButton.$el.querySelector('.project-feature-toggle')).toHaveClass(
|
|
|
|
'is-checked',
|
|
|
|
);
|
2017-10-31 12:15:03 -04:00
|
|
|
});
|
2018-05-03 03:31:52 -04:00
|
|
|
|
|
|
|
it('toggleSubscription method emits `toggleSubscription` event on eventHub and Component', () => {
|
|
|
|
vm = mountComponent(Subscriptions, { subscribed: true });
|
|
|
|
spyOn(eventHub, '$emit');
|
|
|
|
spyOn(vm, '$emit');
|
2019-09-19 17:06:29 -04:00
|
|
|
spyOn(vm, 'track');
|
2018-05-03 03:31:52 -04:00
|
|
|
|
|
|
|
vm.toggleSubscription();
|
2018-10-09 14:03:09 -04:00
|
|
|
|
2018-05-03 03:31:52 -04:00
|
|
|
expect(eventHub.$emit).toHaveBeenCalledWith('toggleSubscription', jasmine.any(Object));
|
|
|
|
expect(vm.$emit).toHaveBeenCalledWith('toggleSubscription', jasmine.any(Object));
|
|
|
|
});
|
|
|
|
|
2019-09-19 17:06:29 -04:00
|
|
|
it('tracks the event when toggled', () => {
|
2019-08-21 15:12:11 -04:00
|
|
|
vm = mountComponent(Subscriptions, { subscribed: true });
|
2019-09-19 17:06:29 -04:00
|
|
|
const spy = mockTracking('_category_', vm.$el, spyOn);
|
2019-08-21 15:12:11 -04:00
|
|
|
vm.toggleSubscription();
|
|
|
|
|
2019-09-19 17:06:29 -04:00
|
|
|
expect(spy).toHaveBeenCalled();
|
2019-08-21 15:12:11 -04:00
|
|
|
});
|
|
|
|
|
2018-05-03 03:31:52 -04:00
|
|
|
it('onClickCollapsedIcon method emits `toggleSidebar` event on component', () => {
|
|
|
|
vm = mountComponent(Subscriptions, { subscribed: true });
|
|
|
|
spyOn(vm, '$emit');
|
|
|
|
|
|
|
|
vm.onClickCollapsedIcon();
|
2018-10-09 14:03:09 -04:00
|
|
|
|
2018-05-03 03:31:52 -04:00
|
|
|
expect(vm.$emit).toHaveBeenCalledWith('toggleSidebar');
|
|
|
|
});
|
2019-11-18 07:06:03 -05:00
|
|
|
|
|
|
|
describe('given project emails are disabled', () => {
|
|
|
|
const subscribeDisabledDescription = 'Notifications have been disabled';
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
vm = mountComponent(Subscriptions, {
|
|
|
|
subscribed: false,
|
|
|
|
projectEmailsDisabled: true,
|
|
|
|
subscribeDisabledDescription,
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('sets the correct display text', () => {
|
|
|
|
expect(vm.$el.textContent).toContain(subscribeDisabledDescription);
|
|
|
|
expect(vm.$refs.tooltip.dataset.originalTitle).toBe(subscribeDisabledDescription);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('does not render the toggle button', () => {
|
|
|
|
expect(vm.$refs.toggleButton).toBeUndefined();
|
|
|
|
});
|
|
|
|
});
|
2017-10-31 12:15:03 -04:00
|
|
|
});
|