summaryrefslogtreecommitdiff
path: root/spec/javascripts/repo/components/repo_tab_spec.js
blob: f3572804b4a94a566838f87b235a952ec211932c (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
import Vue from 'vue';
import repoTab from '~/repo/components/repo_tab.vue';

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

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

  it('renders a close link and a name link', () => {
    const tab = {
      loading: false,
      url: 'url',
      name: 'name',
    };
    const vm = createComponent({
      tab,
    });
    const close = vm.$el.querySelector('.close');
    const name = vm.$el.querySelector(`a[title="${tab.url}"]`);

    spyOn(vm, 'xClicked');
    spyOn(vm, 'tabClicked');

    expect(close.querySelector('.fa-times')).toBeTruthy();
    expect(name.textContent).toEqual(tab.name);

    close.click();
    name.click();

    expect(vm.xClicked).toHaveBeenCalledWith(tab);
    expect(vm.tabClicked).toHaveBeenCalledWith(tab);
  });

  it('renders a spinner if tab is loading', () => {
    const tab = {
      loading: true,
      url: 'url',
    };
    const vm = createComponent({
      tab,
    });
    const close = vm.$el.querySelector('.close');
    const name = vm.$el.querySelector(`a[title="${tab.url}"]`);

    expect(close).toBeFalsy();
    expect(name).toBeFalsy();
    expect(vm.$el.querySelector('.fa.fa-spinner.fa-spin')).toBeTruthy();
  });

  it('renders an fa-circle icon if tab is changed', () => {
    const tab = {
      loading: false,
      url: 'url',
      name: 'name',
      changed: true,
    };
    const vm = createComponent({
      tab,
    });

    expect(vm.$el.querySelector('.close .fa-circle')).toBeTruthy();
  });

  describe('methods', () => {
    describe('xClicked', () => {
      const vm = jasmine.createSpyObj('vm', ['$emit']);

      it('returns undefined and does not $emit if file is changed', () => {
        const file = { changed: true };
        const returnVal = repoTab.methods.xClicked.call(vm, file);

        expect(returnVal).toBeUndefined();
        expect(vm.$emit).not.toHaveBeenCalled();
      });

      it('$emits xclicked event with file obj', () => {
        const file = { changed: false };
        repoTab.methods.xClicked.call(vm, file);

        expect(vm.$emit).toHaveBeenCalledWith('xclicked', file);
      });
    });
  });
});