2018-03-17 18:26:18 +05:30
|
|
|
import Vue from 'vue';
|
|
|
|
import subscriptions from '~/sidebar/components/subscriptions/subscriptions.vue';
|
2018-10-15 14:42:47 +05:30
|
|
|
import eventHub from '~/sidebar/event_hub';
|
2018-03-27 19:54:05 +05:30
|
|
|
import mountComponent from 'spec/helpers/vue_mount_component_helper';
|
2018-03-17 18:26:18 +05:30
|
|
|
|
2018-12-13 13:39:08 +05:30
|
|
|
describe('Subscriptions', function() {
|
2018-03-17 18:26:18 +05:30
|
|
|
let vm;
|
|
|
|
let Subscriptions;
|
2019-12-04 20:38:33 +05:30
|
|
|
let statsSpy;
|
2018-03-17 18:26:18 +05:30
|
|
|
|
|
|
|
beforeEach(() => {
|
2019-12-04 20:38:33 +05:30
|
|
|
statsSpy = spyOnDependency(subscriptions, 'trackEvent');
|
2018-03-17 18:26:18 +05:30
|
|
|
Subscriptions = Vue.extend(subscriptions);
|
|
|
|
});
|
|
|
|
|
|
|
|
afterEach(() => {
|
|
|
|
vm.$destroy();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('shows loading spinner when loading', () => {
|
|
|
|
vm = mountComponent(Subscriptions, {
|
|
|
|
loading: true,
|
|
|
|
subscribed: undefined,
|
|
|
|
});
|
|
|
|
|
|
|
|
expect(vm.$refs.toggleButton.isLoading).toBe(true);
|
2018-12-13 13:39:08 +05:30
|
|
|
expect(vm.$refs.toggleButton.$el.querySelector('.project-feature-toggle')).toHaveClass(
|
|
|
|
'is-loading',
|
|
|
|
);
|
2018-03-17 18:26:18 +05:30
|
|
|
});
|
|
|
|
|
|
|
|
it('is toggled "off" when currently not subscribed', () => {
|
|
|
|
vm = mountComponent(Subscriptions, {
|
|
|
|
subscribed: false,
|
|
|
|
});
|
|
|
|
|
2018-12-13 13:39:08 +05:30
|
|
|
expect(vm.$refs.toggleButton.$el.querySelector('.project-feature-toggle')).not.toHaveClass(
|
|
|
|
'is-checked',
|
|
|
|
);
|
2018-03-17 18:26:18 +05:30
|
|
|
});
|
|
|
|
|
|
|
|
it('is toggled "on" when currently subscribed', () => {
|
|
|
|
vm = mountComponent(Subscriptions, {
|
|
|
|
subscribed: true,
|
|
|
|
});
|
|
|
|
|
2018-12-13 13:39:08 +05:30
|
|
|
expect(vm.$refs.toggleButton.$el.querySelector('.project-feature-toggle')).toHaveClass(
|
|
|
|
'is-checked',
|
|
|
|
);
|
2018-03-17 18:26:18 +05:30
|
|
|
});
|
2018-10-15 14:42:47 +05:30
|
|
|
|
|
|
|
it('toggleSubscription method emits `toggleSubscription` event on eventHub and Component', () => {
|
|
|
|
vm = mountComponent(Subscriptions, { subscribed: true });
|
|
|
|
spyOn(eventHub, '$emit');
|
|
|
|
spyOn(vm, '$emit');
|
|
|
|
|
|
|
|
vm.toggleSubscription();
|
2018-12-13 13:39:08 +05:30
|
|
|
|
2018-10-15 14:42:47 +05:30
|
|
|
expect(eventHub.$emit).toHaveBeenCalledWith('toggleSubscription', jasmine.any(Object));
|
|
|
|
expect(vm.$emit).toHaveBeenCalledWith('toggleSubscription', jasmine.any(Object));
|
|
|
|
});
|
|
|
|
|
2019-12-04 20:38:33 +05:30
|
|
|
it('calls trackEvent when toggled', () => {
|
|
|
|
vm = mountComponent(Subscriptions, { subscribed: true });
|
|
|
|
vm.toggleSubscription();
|
|
|
|
|
|
|
|
expect(statsSpy).toHaveBeenCalled();
|
|
|
|
});
|
|
|
|
|
2018-10-15 14:42:47 +05:30
|
|
|
it('onClickCollapsedIcon method emits `toggleSidebar` event on component', () => {
|
|
|
|
vm = mountComponent(Subscriptions, { subscribed: true });
|
|
|
|
spyOn(vm, '$emit');
|
|
|
|
|
|
|
|
vm.onClickCollapsedIcon();
|
2018-12-13 13:39:08 +05:30
|
|
|
|
2018-10-15 14:42:47 +05:30
|
|
|
expect(vm.$emit).toHaveBeenCalledWith('toggleSidebar');
|
|
|
|
});
|
2018-03-17 18:26:18 +05:30
|
|
|
});
|