summaryrefslogtreecommitdiff
path: root/spec/javascripts/repo/components/repo_spec.js
blob: 3558a1557286d3898951f2475da31eb98482f31d (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
import Vue from 'vue';
import repo from '~/repo/components/repo.vue';
import RepoStore from '~/repo/stores/repo_store';
import Service from '~/repo/services/repo_service';
import eventHub from '~/repo/event_hub';
import createComponent from '../../helpers/vue_mount_component_helper';

describe('repo component', () => {
  let vm;

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

    RepoStore.currentBranch = 'master';

    vm = createComponent(Component);
  });

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

    RepoStore.currentBranch = '';
  });

  describe('createNewBranch', () => {
    beforeEach(() => {
      spyOn(history, 'pushState');
    });

    describe('success', () => {
      beforeEach(() => {
        spyOn(Service, 'createBranch').and.returnValue(Promise.resolve({
          data: {
            name: 'test',
          },
        }));
      });

      it('calls createBranch with branchName', () => {
        eventHub.$emit('createNewBranch', 'test');

        expect(Service.createBranch).toHaveBeenCalledWith({
          branch: 'test',
          ref: RepoStore.currentBranch,
        });
      });

      it('pushes new history state', (done) => {
        RepoStore.currentBranch = 'master';

        spyOn(vm, 'getCurrentLocation').and.returnValue('http://test.com/master');

        eventHub.$emit('createNewBranch', 'test');

        setTimeout(() => {
          expect(history.pushState).toHaveBeenCalledWith(jasmine.anything(), '', 'http://test.com/test');
          done();
        });
      });

      it('updates stores currentBranch', (done) => {
        eventHub.$emit('createNewBranch', 'test');

        setTimeout(() => {
          expect(RepoStore.currentBranch).toBe('test');

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

    describe('failure', () => {
      beforeEach(() => {
        spyOn(Service, 'createBranch').and.returnValue(Promise.reject({
          response: {
            data: {
              message: 'test',
            },
          },
        }));
      });

      it('emits createNewBranchError event', (done) => {
        spyOn(eventHub, '$emit').and.callThrough();

        eventHub.$emit('createNewBranch', 'test');

        setTimeout(() => {
          expect(eventHub.$emit).toHaveBeenCalledWith('createNewBranchError', 'test');

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