summaryrefslogtreecommitdiff
path: root/spec/frontend/ide/components/ide_file_row_spec.js
blob: baf3d7cca9d42b45de5faa5521e8f6329767c23f (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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
import { mount } from '@vue/test-utils';
import Vue, { nextTick } from 'vue';
import Vuex from 'vuex';
import FileRowExtra from '~/ide/components/file_row_extra.vue';
import IdeFileRow from '~/ide/components/ide_file_row.vue';
import { createStore } from '~/ide/stores';
import FileRow from '~/vue_shared/components/file_row.vue';

Vue.use(Vuex);

const TEST_EXTRA_PROPS = {
  testattribute: 'abc',
};

const defaultComponentProps = (type = 'tree') => ({
  level: 4,
  file: {
    type,
    name: 'js',
  },
});

describe('Ide File Row component', () => {
  let wrapper;

  const createComponent = (props = {}, options = {}) => {
    wrapper = mount(IdeFileRow, {
      propsData: {
        ...defaultComponentProps(),
        ...props,
      },
      store: createStore(),
      ...options,
    });
  };

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

  const findFileRowExtra = () => wrapper.find(FileRowExtra);
  const findFileRow = () => wrapper.find(FileRow);
  const hasDropdownOpen = () => findFileRowExtra().props('dropdownOpen');

  it('fileRow component has listeners', async () => {
    const toggleTreeOpen = jest.fn();
    createComponent(
      {},
      {
        listeners: {
          toggleTreeOpen,
        },
      },
    );

    findFileRow().vm.$emit('toggleTreeOpen');

    await nextTick();
    expect(toggleTreeOpen).toHaveBeenCalled();
  });

  describe('default', () => {
    beforeEach(() => {
      createComponent(TEST_EXTRA_PROPS);
    });

    it('renders file row component', () => {
      const fileRow = findFileRow();

      expect(fileRow.props()).toEqual(expect.objectContaining(defaultComponentProps()));
      expect(fileRow.attributes()).toEqual(expect.objectContaining(TEST_EXTRA_PROPS));
    });

    it('renders file row extra', () => {
      const extra = findFileRowExtra();

      expect(extra.exists()).toBe(true);
      expect(extra.props()).toEqual({
        file: defaultComponentProps().file,
        dropdownOpen: false,
      });
    });
  });

  describe('with open dropdown', () => {
    beforeEach(async () => {
      createComponent();

      findFileRowExtra().vm.$emit('toggle', true);

      await nextTick();
    });

    it('shows open dropdown', () => {
      expect(hasDropdownOpen()).toBe(true);
    });

    it('hides dropdown when mouseleave', async () => {
      findFileRow().vm.$emit('mouseleave');

      await nextTick();
      expect(hasDropdownOpen()).toEqual(false);
    });

    it('hides dropdown on toggle', async () => {
      findFileRowExtra().vm.$emit('toggle', false);

      await nextTick();
      expect(hasDropdownOpen()).toEqual(false);
    });
  });
});