summaryrefslogtreecommitdiff
path: root/spec/frontend/boards/components/board_configuration_options_spec.js
blob: e9a1cb6a4e8c02b879a12aa07522886419f05fcf (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 { shallowMount } from '@vue/test-utils';
import BoardConfigurationOptions from '~/boards/components/board_configuration_options.vue';

describe('BoardConfigurationOptions', () => {
  let wrapper;
  const board = { hide_backlog_list: false, hide_closed_list: false };

  const defaultProps = {
    currentBoard: board,
    board,
    isNewForm: false,
  };

  const createComponent = () => {
    wrapper = shallowMount(BoardConfigurationOptions, {
      propsData: { ...defaultProps },
    });
  };

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

  afterEach(() => {
    wrapper.destroy();
  });

  const backlogListCheckbox = el => el.find('[data-testid="backlog-list-checkbox"]');
  const closedListCheckbox = el => el.find('[data-testid="closed-list-checkbox"]');

  const checkboxAssert = (backlogCheckbox, closedCheckbox) => {
    expect(backlogListCheckbox(wrapper).attributes('checked')).toEqual(
      backlogCheckbox ? undefined : 'true',
    );
    expect(closedListCheckbox(wrapper).attributes('checked')).toEqual(
      closedCheckbox ? undefined : 'true',
    );
  };

  it.each`
    backlogCheckboxValue | closedCheckboxValue
    ${true}              | ${true}
    ${true}              | ${false}
    ${false}             | ${true}
    ${false}             | ${false}
  `(
    'renders two checkbox when one is $backlogCheckboxValue and other is $closedCheckboxValue',
    async ({ backlogCheckboxValue, closedCheckboxValue }) => {
      await wrapper.setData({
        hideBacklogList: backlogCheckboxValue,
        hideClosedList: closedCheckboxValue,
      });

      return wrapper.vm.$nextTick().then(() => {
        checkboxAssert(backlogCheckboxValue, closedCheckboxValue);
      });
    },
  );
});