summaryrefslogtreecommitdiff
path: root/spec/javascripts/repo/components/repo_loading_file_spec.js
blob: a030314d7492df2e20e2fbb3810f7f8203d3f384 (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
import Vue from 'vue';
import repoLoadingFile from '~/repo/components/repo_loading_file.vue';

describe('RepoLoadingFile', () => {
  function createComponent(propsData) {
    const RepoLoadingFile = Vue.extend(repoLoadingFile);

    return new RepoLoadingFile({
      propsData,
    }).$mount();
  }

  function assertLines(lines) {
    lines.forEach((line, n) => {
      const index = n + 1;
      expect(line.classList.contains(`skeleton-line-${index}`)).toBeTruthy();
    });
  }

  function assertColumns(columns) {
    columns.forEach((column) => {
      const container = column.querySelector('.animation-container');
      const lines = [...container.querySelectorAll(':scope > div')];

      expect(container).toBeTruthy();
      expect(lines.length).toEqual(6);
      assertLines(lines);
    });
  }

  it('renders 3 columns of animated LoC', () => {
    const vm = createComponent({
      loading: {
        tree: true,
      },
      hasFiles: false,
    });
    const columns = [...vm.$el.querySelectorAll('td')];

    expect(columns.length).toEqual(3);
    assertColumns(columns);
  });

  it('renders 1 column of animated LoC if isMini', () => {
    const vm = createComponent({
      loading: {
        tree: true,
      },
      hasFiles: false,
      isMini: true,
    });
    const columns = [...vm.$el.querySelectorAll('td')];

    expect(columns.length).toEqual(1);
    assertColumns(columns);
  });

  it('does not render if tree is not loading', () => {
    const vm = createComponent({
      loading: {
        tree: false,
      },
      hasFiles: false,
    });

    expect(vm.$el.innerHTML).toBeFalsy();
  });

  it('does not render if hasFiles is true', () => {
    const vm = createComponent({
      loading: {
        tree: true,
      },
      hasFiles: true,
    });

    expect(vm.$el.innerHTML).toBeFalsy();
  });
});