summaryrefslogtreecommitdiff
path: root/spec/javascripts/vue_shared/components/navigation_tabs_spec.js
blob: 09fda95d7d39a2210a4d48196150d20d324c4e19 (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
import Vue from 'vue';
import navigationTabs from '~/vue_shared/components/navigation_tabs.vue';
import mountComponent from 'spec/helpers/vue_mount_component_helper';

describe('navigation tabs component', () => {
  let vm;
  let Component;
  let data;

  beforeEach(() => {
    data = [
      {
        name: 'All',
        scope: 'all',
        count: 1,
        isActive: true,
      },
      {
        name: 'Pending',
        scope: 'pending',
        count: 0,
        isActive: false,
      },
      {
        name: 'Running',
        scope: 'running',
        isActive: false,
      },
    ];

    Component = Vue.extend(navigationTabs);
    vm = mountComponent(Component, { tabs: data, scope: 'pipelines' });
  });

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

  it('should render tabs', () => {
    expect(vm.$el.querySelectorAll('li').length).toEqual(data.length);
  });

  it('should render active tab', () => {
    expect(vm.$el.querySelector('.active .js-pipelines-tab-all')).toBeDefined();
  });

  it('should render badge', () => {
    expect(vm.$el.querySelector('.js-pipelines-tab-all .badge').textContent.trim()).toEqual('1');
    expect(vm.$el.querySelector('.js-pipelines-tab-pending .badge').textContent.trim()).toEqual('0');
  });

  it('should not render badge', () => {
    expect(vm.$el.querySelector('.js-pipelines-tab-running .badge')).toEqual(null);
  });

  it('should trigger onTabClick', () => {
    spyOn(vm, '$emit');
    vm.$el.querySelector('.js-pipelines-tab-pending').click();
    expect(vm.$emit).toHaveBeenCalledWith('onChangeTab', 'pending');
  });
});