Welcome to mirror list, hosted at ThFree Co, Russian Federation.

work_item_sticky_header_spec.js « components « work_items « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4b7818044b1f932962bb2fa81ba9dbc23da0df3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
import { GlIntersectionObserver } from '@gitlab/ui';
import { nextTick } from 'vue';
import { shallowMountExtended } from 'helpers/vue_test_utils_helper';
import { STATE_OPEN } from '~/work_items/constants';
import { workItemResponseFactory } from 'jest/work_items/mock_data';
import WorkItemStickyHeader from '~/work_items/components/work_item_sticky_header.vue';
import ConfidentialityBadge from '~/vue_shared/components/confidentiality_badge.vue';
import WorkItemActions from '~/work_items/components/work_item_actions.vue';
import WorkItemTodos from '~/work_items/components/work_item_todos.vue';

describe('WorkItemStickyHeader', () => {
  let wrapper;

  const workItemResponse = workItemResponseFactory({ canUpdate: true, confidential: true }).data
    .workItem;

  const createComponent = () => {
    wrapper = shallowMountExtended(WorkItemStickyHeader, {
      propsData: {
        workItem: workItemResponse,
        fullPath: '/test',
        isStickyHeaderShowing: true,
        workItemNotificationsSubscribed: true,
        updateInProgress: false,
        parentWorkItemConfidentiality: false,
        showWorkItemCurrentUserTodos: true,
        isModal: false,
        currentUserTodos: [],
        workItemState: STATE_OPEN,
      },
    });
  };
  const findStickyHeader = () => wrapper.findByTestId('work-item-sticky-header');
  const findConfidentialityBadge = () => wrapper.findComponent(ConfidentialityBadge);
  const findWorkItemActions = () => wrapper.findComponent(WorkItemActions);
  const findWorkItemTodos = () => wrapper.findComponent(WorkItemTodos);
  const findIntersectionObserver = () => wrapper.findComponent(GlIntersectionObserver);
  const triggerPageScroll = () => findIntersectionObserver().vm.$emit('disappear');

  beforeEach(() => {
    createComponent();
  });

  it('has the sticky header when the page is scrolled', async () => {
    global.pageYOffset = 100;
    triggerPageScroll();

    await nextTick();

    expect(findStickyHeader().exists()).toBe(true);
  });

  it('has the components of confidentiality, actions, todos and title', () => {
    expect(findConfidentialityBadge().exists()).toBe(true);
    expect(findWorkItemActions().exists()).toBe(true);
    expect(findWorkItemTodos().exists()).toBe(true);
    expect(wrapper.findByText(workItemResponse.title).exists()).toBe(true);
  });
});