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

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

  const defaultProps = {
    hideBacklogList: false,
    hideClosedList: false,
  };

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

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

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

  const checkboxAssert = (backlogCheckbox, closedCheckbox) => {
    expect(backlogListCheckbox().attributes('checked')).toEqual(
      backlogCheckbox ? undefined : 'true',
    );
    expect(closedListCheckbox().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',
    ({ backlogCheckboxValue, closedCheckboxValue }) => {
      createComponent({
        hideBacklogList: backlogCheckboxValue,
        hideClosedList: closedCheckboxValue,
      });
      checkboxAssert(backlogCheckboxValue, closedCheckboxValue);
    },
  );

  it('emits a correct value on backlog checkbox change', () => {
    createComponent();

    backlogListCheckbox().vm.$emit('change');

    expect(wrapper.emitted('update:hideBacklogList')).toEqual([[true]]);
  });

  it('emits a correct value on closed checkbox change', () => {
    createComponent();

    closedListCheckbox().vm.$emit('change');

    expect(wrapper.emitted('update:hideClosedList')).toEqual([[true]]);
  });
});