summaryrefslogtreecommitdiff
path: root/spec/javascripts/repo/components/new_branch_form_spec.js
blob: c9c5ce096fcd2e58c3e6de635354f7fdc001b464 (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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
import Vue from 'vue';
import newBranchForm from '~/repo/components/new_branch_form.vue';
import eventHub from '~/repo/event_hub';
import RepoStore from '~/repo/stores/repo_store';
import createComponent from '../../helpers/vue_mount_component_helper';

describe('Multi-file editor new branch form', () => {
  let vm;

  beforeEach(() => {
    const Component = Vue.extend(newBranchForm);

    RepoStore.currentBranch = 'master';

    vm = createComponent(Component, {
      currentBranch: RepoStore.currentBranch,
    });
  });

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

    RepoStore.currentBranch = '';
  });

  describe('template', () => {
    it('renders submit as disabled', () => {
      expect(vm.$el.querySelector('.btn').getAttribute('disabled')).toBe('disabled');
    });

    it('enables the submit button when branch is not empty', (done) => {
      vm.branchName = 'testing';

      Vue.nextTick(() => {
        expect(vm.$el.querySelector('.btn').getAttribute('disabled')).toBeNull();

        done();
      });
    });

    it('displays current branch creating from', (done) => {
      Vue.nextTick(() => {
        expect(vm.$el.querySelector('p').textContent.replace(/\s+/g, ' ').trim()).toBe('Create from: master');

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

  describe('submitNewBranch', () => {
    it('sets to loading', () => {
      vm.submitNewBranch();

      expect(vm.loading).toBeTruthy();
    });

    it('hides current flash element', (done) => {
      vm.$refs.flashContainer.innerHTML = '<div class="flash-alert"></div>';

      vm.submitNewBranch();

      Vue.nextTick(() => {
        expect(vm.$el.querySelector('.flash-alert')).toBeNull();

        done();
      });
    });

    it('emits an event with branchName', () => {
      spyOn(eventHub, '$emit');

      vm.branchName = 'testing';

      vm.submitNewBranch();

      expect(eventHub.$emit).toHaveBeenCalledWith('createNewBranch', 'testing');
    });
  });

  describe('showErrorMessage', () => {
    it('sets loading to false', () => {
      vm.loading = true;

      vm.showErrorMessage();

      expect(vm.loading).toBeFalsy();
    });

    it('creates flash element', () => {
      vm.showErrorMessage('error message');

      expect(vm.$el.querySelector('.flash-alert')).not.toBeNull();
      expect(vm.$el.querySelector('.flash-alert').textContent.trim()).toBe('error message');
    });
  });

  describe('createdNewBranch', () => {
    it('set loading to false', () => {
      vm.loading = true;

      vm.createdNewBranch();

      expect(vm.loading).toBeFalsy();
    });

    it('resets branch name', () => {
      vm.branchName = 'testing';

      vm.createdNewBranch();

      expect(vm.branchName).toBe('');
    });

    it('sets the dropdown toggle text', () => {
      vm.dropdownText = document.createElement('span');

      vm.createdNewBranch('branch name');

      expect(vm.dropdownText.textContent).toBe('branch name');
    });
  });
});