182 lines
		
	
	
		
			5.2 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
			
		
		
	
	
			182 lines
		
	
	
		
			5.2 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
import { GlDrawer, GlLabel, GlModal, GlButton } from '@gitlab/ui';
 | 
						|
import { shallowMount } from '@vue/test-utils';
 | 
						|
import { MountingPortal } from 'portal-vue';
 | 
						|
import Vue, { nextTick } from 'vue';
 | 
						|
import Vuex from 'vuex';
 | 
						|
import { createMockDirective, getBinding } from 'helpers/vue_mock_directive';
 | 
						|
import { stubComponent } from 'helpers/stub_component';
 | 
						|
import { extendedWrapper } from 'helpers/vue_test_utils_helper';
 | 
						|
import BoardSettingsSidebar from '~/boards/components/board_settings_sidebar.vue';
 | 
						|
import { inactiveId, LIST } from '~/boards/constants';
 | 
						|
import actions from '~/boards/stores/actions';
 | 
						|
import getters from '~/boards/stores/getters';
 | 
						|
import mutations from '~/boards/stores/mutations';
 | 
						|
import sidebarEventHub from '~/sidebar/event_hub';
 | 
						|
import { mockLabelList } from '../mock_data';
 | 
						|
 | 
						|
Vue.use(Vuex);
 | 
						|
 | 
						|
describe('BoardSettingsSidebar', () => {
 | 
						|
  let wrapper;
 | 
						|
  const labelTitle = mockLabelList.label.title;
 | 
						|
  const labelColor = mockLabelList.label.color;
 | 
						|
  const listId = mockLabelList.id;
 | 
						|
  const modalID = 'board-settings-sidebar-modal';
 | 
						|
 | 
						|
  const createComponent = ({
 | 
						|
    canAdminList = false,
 | 
						|
    list = {},
 | 
						|
    sidebarType = LIST,
 | 
						|
    activeId = inactiveId,
 | 
						|
  } = {}) => {
 | 
						|
    const boardLists = {
 | 
						|
      [listId]: list,
 | 
						|
    };
 | 
						|
    const store = new Vuex.Store({
 | 
						|
      state: { sidebarType, activeId, boardLists },
 | 
						|
      getters,
 | 
						|
      mutations,
 | 
						|
      actions,
 | 
						|
    });
 | 
						|
 | 
						|
    wrapper = extendedWrapper(
 | 
						|
      shallowMount(BoardSettingsSidebar, {
 | 
						|
        store,
 | 
						|
        provide: {
 | 
						|
          canAdminList,
 | 
						|
          scopedLabelsAvailable: false,
 | 
						|
        },
 | 
						|
        directives: {
 | 
						|
          GlModal: createMockDirective(),
 | 
						|
        },
 | 
						|
        stubs: {
 | 
						|
          GlDrawer: stubComponent(GlDrawer, {
 | 
						|
            template: '<div><slot name="header"></slot><slot></slot></div>',
 | 
						|
          }),
 | 
						|
        },
 | 
						|
      }),
 | 
						|
    );
 | 
						|
  };
 | 
						|
  const findLabel = () => wrapper.find(GlLabel);
 | 
						|
  const findDrawer = () => wrapper.find(GlDrawer);
 | 
						|
  const findModal = () => wrapper.find(GlModal);
 | 
						|
  const findRemoveButton = () => wrapper.find(GlButton);
 | 
						|
 | 
						|
  afterEach(() => {
 | 
						|
    jest.restoreAllMocks();
 | 
						|
    wrapper.destroy();
 | 
						|
    wrapper = null;
 | 
						|
  });
 | 
						|
 | 
						|
  it('finds a MountingPortal component', () => {
 | 
						|
    createComponent();
 | 
						|
 | 
						|
    expect(wrapper.find(MountingPortal).props()).toMatchObject({
 | 
						|
      mountTo: '#js-right-sidebar-portal',
 | 
						|
      append: true,
 | 
						|
      name: 'board-settings-sidebar',
 | 
						|
    });
 | 
						|
  });
 | 
						|
 | 
						|
  describe('when sidebarType is "list"', () => {
 | 
						|
    it('finds a GlDrawer component', () => {
 | 
						|
      createComponent();
 | 
						|
 | 
						|
      expect(findDrawer().exists()).toBe(true);
 | 
						|
    });
 | 
						|
 | 
						|
    describe('on close', () => {
 | 
						|
      it('closes the sidebar', async () => {
 | 
						|
        createComponent();
 | 
						|
 | 
						|
        findDrawer().vm.$emit('close');
 | 
						|
 | 
						|
        await nextTick();
 | 
						|
 | 
						|
        expect(wrapper.find(GlDrawer).exists()).toBe(false);
 | 
						|
      });
 | 
						|
 | 
						|
      it('closes the sidebar when emitting the correct event', async () => {
 | 
						|
        createComponent();
 | 
						|
 | 
						|
        sidebarEventHub.$emit('sidebar.closeAll');
 | 
						|
 | 
						|
        await nextTick();
 | 
						|
 | 
						|
        expect(wrapper.find(GlDrawer).exists()).toBe(false);
 | 
						|
      });
 | 
						|
    });
 | 
						|
 | 
						|
    describe('when activeId is zero', () => {
 | 
						|
      it('renders GlDrawer with open false', () => {
 | 
						|
        createComponent();
 | 
						|
 | 
						|
        expect(findDrawer().props('open')).toBe(false);
 | 
						|
      });
 | 
						|
    });
 | 
						|
 | 
						|
    describe('when activeId is greater than zero', () => {
 | 
						|
      it('renders GlDrawer with open true', () => {
 | 
						|
        createComponent({ list: mockLabelList, activeId: listId });
 | 
						|
 | 
						|
        expect(findDrawer().props('open')).toBe(true);
 | 
						|
      });
 | 
						|
    });
 | 
						|
 | 
						|
    describe('when activeId is in state', () => {
 | 
						|
      it('renders label title', () => {
 | 
						|
        createComponent({ list: mockLabelList, activeId: listId });
 | 
						|
 | 
						|
        expect(findLabel().props('title')).toBe(labelTitle);
 | 
						|
      });
 | 
						|
 | 
						|
      it('renders label background color', () => {
 | 
						|
        createComponent({ list: mockLabelList, activeId: listId });
 | 
						|
 | 
						|
        expect(findLabel().props('backgroundColor')).toBe(labelColor);
 | 
						|
      });
 | 
						|
    });
 | 
						|
 | 
						|
    describe('when activeId is not in state', () => {
 | 
						|
      it('does not render GlLabel', () => {
 | 
						|
        createComponent({ list: mockLabelList });
 | 
						|
 | 
						|
        expect(findLabel().exists()).toBe(false);
 | 
						|
      });
 | 
						|
    });
 | 
						|
  });
 | 
						|
 | 
						|
  describe('when sidebarType is not List', () => {
 | 
						|
    it('does not render GlDrawer', () => {
 | 
						|
      createComponent({ sidebarType: '' });
 | 
						|
 | 
						|
      expect(findDrawer().exists()).toBe(false);
 | 
						|
    });
 | 
						|
  });
 | 
						|
 | 
						|
  it('does not render "Remove list" when user cannot admin the boards list', () => {
 | 
						|
    createComponent();
 | 
						|
 | 
						|
    expect(findRemoveButton().exists()).toBe(false);
 | 
						|
  });
 | 
						|
 | 
						|
  describe('when user can admin the boards list', () => {
 | 
						|
    it('renders "Remove list" button', () => {
 | 
						|
      createComponent({ canAdminList: true, activeId: listId, list: mockLabelList });
 | 
						|
 | 
						|
      expect(findRemoveButton().exists()).toBe(true);
 | 
						|
    });
 | 
						|
 | 
						|
    it('has the correct ID on the button', () => {
 | 
						|
      createComponent({ canAdminList: true, activeId: listId, list: mockLabelList });
 | 
						|
      const binding = getBinding(findRemoveButton().element, 'gl-modal');
 | 
						|
      expect(binding.value).toBe(modalID);
 | 
						|
    });
 | 
						|
 | 
						|
    it('has the correct ID on the modal', () => {
 | 
						|
      createComponent({ canAdminList: true, activeId: listId, list: mockLabelList });
 | 
						|
      expect(findModal().props('modalId')).toBe(modalID);
 | 
						|
    });
 | 
						|
  });
 | 
						|
});
 |