summaryrefslogtreecommitdiff
path: root/spec/javascripts/sidebar/sidebar_assignees_spec.js
blob: 929ba75e67d2db35719f9ae17780b056cb835458 (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
import Vue from 'vue';
import SidebarAssignees from '~/sidebar/components/assignees/sidebar_assignees';
import SidebarMediator from '~/sidebar/sidebar_mediator';
import SidebarService from '~/sidebar/services/sidebar_service';
import SidebarStore from '~/sidebar/stores/sidebar_store';
import Mock from './mock_data';

describe('sidebar assignees', () => {
  let component;
  let SidebarAssigneeComponent;
  preloadFixtures('issues/open-issue.html.raw');

  beforeEach(() => {
    Vue.http.interceptors.push(Mock.sidebarMockInterceptor);
    SidebarAssigneeComponent = Vue.extend(SidebarAssignees);
    spyOn(SidebarMediator.prototype, 'saveAssignees').and.callThrough();
    spyOn(SidebarMediator.prototype, 'assignYourself').and.callThrough();
    this.mediator = new SidebarMediator(Mock.mediator);
    loadFixtures('issues/open-issue.html.raw');
    this.sidebarAssigneesEl = document.querySelector('#js-vue-sidebar-assignees');
  });

  afterEach(() => {
    SidebarService.singleton = null;
    SidebarStore.singleton = null;
    SidebarMediator.singleton = null;
    Vue.http.interceptors = _.without(Vue.http.interceptors, Mock.sidebarMockInterceptor);
  });

  it('calls the mediator when saves the assignees', () => {
    component = new SidebarAssigneeComponent()
      .$mount(this.sidebarAssigneesEl);
    component.saveAssignees();

    expect(SidebarMediator.prototype.saveAssignees).toHaveBeenCalled();
  });

  it('calls the mediator when "assignSelf" method is called', () => {
    component = new SidebarAssigneeComponent()
      .$mount(this.sidebarAssigneesEl);
    component.assignSelf();

    expect(SidebarMediator.prototype.assignYourself).toHaveBeenCalled();
    expect(this.mediator.store.assignees.length).toEqual(1);
  });

  it('hides assignees until fetched', (done) => {
    component = new SidebarAssigneeComponent().$mount(this.sidebarAssigneesEl);
    const currentAssignee = this.sidebarAssigneesEl.querySelector('.value');
    expect(currentAssignee).toBe(null);

    component.store.isFetching.assignees = false;
    Vue.nextTick(() => {
      expect(component.$el.querySelector('.value')).toBeVisible();
      done();
    });
  });
});