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

work_item_todos_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: 83b61a042986cfbec4f6f52eaee9c22926140898 (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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
import { GlButton, GlIcon } from '@gitlab/ui';
import Vue from 'vue';
import VueApollo from 'vue-apollo';
import createMockApollo from 'helpers/mock_apollo_helper';
import waitForPromises from 'helpers/wait_for_promises';
import { shallowMountExtended } from 'helpers/vue_test_utils_helper';
import WorkItemTodos from '~/work_items/components/work_item_todos.vue';
import { ADD, TODO_DONE_ICON, TODO_ADD_ICON } from '~/work_items/constants';
import updateWorkItemMutation from '~/work_items/graphql/update_work_item.mutation.graphql';
import { updateGlobalTodoCount } from '~/sidebar/utils';
import { workItemResponseFactory, updateWorkItemMutationResponseFactory } from '../mock_data';

jest.mock('~/sidebar/utils');

describe('WorkItemTodo component', () => {
  Vue.use(VueApollo);

  let wrapper;

  const findTodoWidget = () => wrapper.findComponent(GlButton);
  const findTodoIcon = () => wrapper.findComponent(GlIcon);

  const errorMessage = 'Failed to add item';
  const workItemQueryResponse = workItemResponseFactory({ canUpdate: true });
  const successHandler = jest
    .fn()
    .mockResolvedValue(updateWorkItemMutationResponseFactory({ canUpdate: true }));
  const failureHandler = jest.fn().mockRejectedValue(new Error(errorMessage));

  const inputVariables = {
    id: 'gid://gitlab/WorkItem/1',
    currentUserTodosWidget: {
      action: ADD,
    },
  };

  const createComponent = ({
    currentUserTodosMock = [updateWorkItemMutation, successHandler],
    currentUserTodos = [],
  } = {}) => {
    const handlers = [currentUserTodosMock];
    wrapper = shallowMountExtended(WorkItemTodos, {
      apolloProvider: createMockApollo(handlers),
      propsData: {
        workItem: workItemQueryResponse.data.workItem,
        currentUserTodos,
      },
    });
  };

  it('renders the widget', () => {
    createComponent();

    expect(findTodoWidget().exists()).toBe(true);
    expect(findTodoIcon().props('name')).toEqual(TODO_ADD_ICON);
    expect(findTodoIcon().classes('gl-fill-blue-500')).toBe(false);
  });

  it('renders mark as done button when there is pending item', () => {
    createComponent({
      currentUserTodos: [
        {
          node: {
            id: 'gid://gitlab/Todo/1',
            state: 'pending',
          },
        },
      ],
    });

    expect(findTodoIcon().props('name')).toEqual(TODO_DONE_ICON);
    expect(findTodoIcon().classes('gl-fill-blue-500')).toBe(true);
  });

  it('calls update mutation when to do button is clicked', async () => {
    createComponent();

    findTodoWidget().vm.$emit('click');

    await waitForPromises();

    expect(successHandler).toHaveBeenCalledWith({
      input: inputVariables,
    });
    expect(updateGlobalTodoCount).toHaveBeenCalled();
  });

  it('emits error when the update mutation fails', async () => {
    createComponent({ currentUserTodosMock: [updateWorkItemMutation, failureHandler] });

    findTodoWidget().vm.$emit('click');

    await waitForPromises();

    expect(wrapper.emitted('error')).toEqual([[errorMessage]]);
  });
});