summaryrefslogtreecommitdiff
path: root/spec/javascripts/repo/components/repo_tab_spec.js
blob: d2a790ad73a9f94e71bd8b777842c6a856a2c42a (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
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 = {
      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, 'closeTab');
    spyOn(vm, 'tabClicked');

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

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

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

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

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

  describe('methods', () => {
    describe('closeTab', () => {
      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.closeTab.call(vm, file);

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

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

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