summaryrefslogtreecommitdiff
path: root/spec/javascripts/ide/components/repo_loading_file_spec.js
blob: 8f9644216bc95d61ffeb40a34bc3bbedc91e7210 (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
import Vue from 'vue';
import store from '~/ide/stores';
import repoLoadingFile from '~/ide/components/repo_loading_file.vue';
import { resetStore } from '../helpers';

describe('RepoLoadingFile', () => {
  let vm;

  function createComponent() {
    const RepoLoadingFile = Vue.extend(repoLoadingFile);

    return new RepoLoadingFile({
      store,
    }).$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);
    });
  }

  afterEach(() => {
    vm.$destroy();

    resetStore(vm.$store);
  });

  it('renders 3 columns of animated LoC', () => {
    vm = createComponent();
    const columns = [...vm.$el.querySelectorAll('td')];

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

  it('renders 1 column of animated LoC if isMini', done => {
    vm = createComponent();
    vm.$store.state.leftPanelCollapsed = true;
    vm.$store.state.openFiles.push('test');

    vm.$nextTick(() => {
      const columns = [...vm.$el.querySelectorAll('td')];

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

      done();
    });
  });
});