summaryrefslogtreecommitdiff
path: root/spec/javascripts/ide/components/nav_dropdown_button_spec.js
blob: 0a58e2602808303326bdd5b0a9ea9c86326cd2a7 (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 NavDropdownButton from '~/ide/components/nav_dropdown_button.vue';
import store from '~/ide/stores';
import { trimText } from 'spec/helpers/vue_component_helper';
import { mountComponentWithStore } from 'spec/helpers/vue_mount_component_helper';
import { resetStore } from '../helpers';

describe('NavDropdown', () => {
  const TEST_BRANCH_ID = 'lorem-ipsum-dolar';
  const TEST_MR_ID = '12345';
  const Component = Vue.extend(NavDropdownButton);
  let vm;

  beforeEach(() => {
    vm = mountComponentWithStore(Component, { store });

    vm.$mount();
  });

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

    resetStore(store);
  });

  it('renders empty placeholders, if state is falsey', () => {
    expect(trimText(vm.$el.textContent)).toEqual('- -');
  });

  it('renders branch name, if state has currentBranchId', done => {
    vm.$store.state.currentBranchId = TEST_BRANCH_ID;

    vm.$nextTick()
      .then(() => {
        expect(trimText(vm.$el.textContent)).toEqual(`${TEST_BRANCH_ID} -`);
      })
      .then(done)
      .catch(done.fail);
  });

  it('renders mr id, if state has currentMergeRequestId', done => {
    vm.$store.state.currentMergeRequestId = TEST_MR_ID;

    vm.$nextTick()
      .then(() => {
        expect(trimText(vm.$el.textContent)).toEqual(`- !${TEST_MR_ID}`);
      })
      .then(done)
      .catch(done.fail);
  });

  it('renders branch and mr, if state has both', done => {
    vm.$store.state.currentBranchId = TEST_BRANCH_ID;
    vm.$store.state.currentMergeRequestId = TEST_MR_ID;

    vm.$nextTick()
      .then(() => {
        expect(trimText(vm.$el.textContent)).toEqual(`${TEST_BRANCH_ID} !${TEST_MR_ID}`);
      })
      .then(done)
      .catch(done.fail);
  });
});