import { GlIntersectionObserver } from '@gitlab/ui'; import Draggable from 'vuedraggable'; import { nextTick } from 'vue'; import { DraggableItemTypes, ListType } from 'ee_else_ce/boards/constants'; import { useFakeRequestAnimationFrame } from 'helpers/fake_request_animation_frame'; import waitForPromises from 'helpers/wait_for_promises'; import createComponent from 'jest/boards/board_list_helper'; import BoardCard from '~/boards/components/board_card.vue'; import eventHub from '~/boards/eventhub'; import BoardCardMoveToPosition from '~/boards/components/board_card_move_to_position.vue'; import { mockIssues, mockList, mockIssuesMore } from './mock_data'; describe('Board list component', () => { let wrapper; const findByTestId = (testId) => wrapper.find(`[data-testid="${testId}"]`); const findDraggable = () => wrapper.findComponent(Draggable); const findMoveToPositionComponent = () => wrapper.findComponent(BoardCardMoveToPosition); const findIntersectionObserver = () => wrapper.findComponent(GlIntersectionObserver); const findBoardListCount = () => wrapper.find('.board-list-count'); const triggerInfiniteScroll = () => findIntersectionObserver().vm.$emit('appear'); const startDrag = ( params = { item: { dataset: { draggableItemType: DraggableItemTypes.card, }, }, }, ) => { findByTestId('tree-root-wrapper').vm.$emit('start', params); }; const endDrag = (params) => { findByTestId('tree-root-wrapper').vm.$emit('end', params); }; useFakeRequestAnimationFrame(); describe('When Expanded', () => { beforeEach(() => { wrapper = createComponent({ issuesCount: 1 }); }); it('renders component', () => { expect(wrapper.find('.board-list-component').exists()).toBe(true); }); it('renders loading icon', () => { wrapper = createComponent({ state: { listsFlags: { 'gid://gitlab/List/1': { isLoading: true } } }, }); expect(findByTestId('board_list_loading').exists()).toBe(true); }); it('renders issues', () => { expect(wrapper.findAllComponents(BoardCard).length).toBe(1); }); it('sets data attribute with issue id', () => { expect(wrapper.find('.board-card').attributes('data-item-id')).toBe('1'); }); it('shows new issue form after eventhub event', async () => { eventHub.$emit(`toggle-issue-form-${mockList.id}`); await nextTick(); expect(wrapper.find('.board-new-issue-form').exists()).toBe(true); }); it('does not show new issue form for closed list', async () => { wrapper = createComponent({ listProps: { listType: ListType.closed, }, }); await waitForPromises(); eventHub.$emit(`toggle-issue-form-${mockList.id}`); await nextTick(); expect(wrapper.find('.board-new-issue-form').exists()).toBe(false); }); it('renders the move to position icon', () => { expect(findMoveToPositionComponent().exists()).toBe(true); }); }); describe('when ListType is Closed', () => { beforeEach(() => { wrapper = createComponent({ listProps: { listType: ListType.closed, }, }); }); it('Board card move to position is not visible', () => { expect(findMoveToPositionComponent().exists()).toBe(false); }); }); describe('load more issues', () => { describe('when loading is not in progress', () => { beforeEach(() => { wrapper = createComponent({ listProps: { id: 'gid://gitlab/List/1', }, componentProps: { boardItems: mockIssuesMore, }, actions: { fetchItemsForList: jest.fn(), }, state: { listsFlags: { 'gid://gitlab/List/1': { isLoadingMore: false } } }, }); }); it('has intersection observer when the number of board list items are more than 5', () => { expect(findIntersectionObserver().exists()).toBe(true); }); it('shows count when loaded more items and correct data attribute', async () => { triggerInfiniteScroll(); await waitForPromises(); expect(findBoardListCount().exists()).toBe(true); expect(findBoardListCount().attributes('data-issue-id')).toBe('-1'); }); }); }); describe('max issue count warning', () => { describe('when issue count exceeds max issue count', () => { it('sets background to gl-bg-red-100', async () => { wrapper = createComponent({ listProps: { issuesCount: 4, maxIssueCount: 3 } }); await waitForPromises(); const block = wrapper.find('.gl-bg-red-100'); expect(block.exists()).toBe(true); expect(block.attributes('class')).toContain( 'gl-rounded-bottom-left-base gl-rounded-bottom-right-base', ); }); }); describe('when list issue count does NOT exceed list max issue count', () => { it('does not sets background to gl-bg-red-100', async () => { wrapper = createComponent({ list: { issuesCount: 2, maxIssueCount: 3 } }); await waitForPromises(); expect(wrapper.find('.gl-bg-red-100').exists()).toBe(false); }); }); describe('when list max issue count is 0', () => { it('does not sets background to gl-bg-red-100', async () => { wrapper = createComponent({ list: { maxIssueCount: 0 } }); await waitForPromises(); expect(wrapper.find('.gl-bg-red-100').exists()).toBe(false); }); }); }); describe('drag & drop issue', () => { describe('when dragging is allowed', () => { beforeEach(() => { wrapper = createComponent({ componentProps: { disabled: false, }, }); }); it('Draggable is used', () => { expect(findDraggable().exists()).toBe(true); }); it('sets delay and delayOnTouchOnly attributes on board list', () => { const listEl = wrapper.findComponent({ ref: 'list' }); expect(listEl.attributes('delay')).toBe('100'); expect(listEl.attributes('delayontouchonly')).toBe('true'); }); describe('handleDragOnStart', () => { it('adds a class `is-dragging` to document body', () => { expect(document.body.classList.contains('is-dragging')).toBe(false); startDrag(); expect(document.body.classList.contains('is-dragging')).toBe(true); }); }); describe('handleDragOnEnd', () => { beforeEach(() => { startDrag(); }); it('removes class `is-dragging` from document body', () => { document.body.classList.add('is-dragging'); endDrag({ oldIndex: 1, newIndex: 0, item: { dataset: { draggableItemType: DraggableItemTypes.card, itemId: mockIssues[0].id, itemIid: mockIssues[0].iid, itemPath: mockIssues[0].referencePath, }, }, to: { children: [], dataset: { listId: 'gid://gitlab/List/1' } }, from: { dataset: { listId: 'gid://gitlab/List/2' } }, }); expect(document.body.classList.contains('is-dragging')).toBe(false); }); it(`should not handle the event if the dragged item is not a "${DraggableItemTypes.card}"`, () => { endDrag({ oldIndex: 1, newIndex: 0, item: { dataset: { draggableItemType: DraggableItemTypes.list, itemId: mockIssues[0].id, itemIid: mockIssues[0].iid, itemPath: mockIssues[0].referencePath, }, }, to: { children: [], dataset: { listId: 'gid://gitlab/List/1' } }, from: { dataset: { listId: 'gid://gitlab/List/2' } }, }); expect(document.body.classList.contains('is-dragging')).toBe(true); }); }); }); describe('when dragging is not allowed', () => { beforeEach(() => { wrapper = createComponent({ provide: { disabled: true, }, }); }); it('Draggable is not used', () => { expect(findDraggable().exists()).toBe(false); }); it('Board card move to position is not visible', () => { expect(findMoveToPositionComponent().exists()).toBe(false); }); }); }); });