summaryrefslogtreecommitdiff
path: root/spec/javascripts/boards/components/board_spec.js
blob: dee7841c0880d50663f3d734a009d33ac946480d (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
import Vue from 'vue';
import '~/boards/services/board_service';
import Board from '~/boards/components/board';
import '~/boards/models/list';
import { mockBoardService } from '../mock_data';

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

  beforeEach(done => {
    loadFixtures('boards/show.html.raw');

    el = document.createElement('div');
    document.body.appendChild(el);

    gl.boardService = mockBoardService({
      boardsEndpoint: '/',
      listsEndpoint: '/',
      bulkUpdatePath: '/',
      boardId: 1,
    });

    vm = new Board({
      propsData: {
        boardId: '1',
        disabled: false,
        issueLinkBase: '/',
        rootPath: '/',
        // eslint-disable-next-line no-undef
        list: new List({
          id: 1,
          position: 0,
          title: 'test',
          list_type: 'backlog',
        }),
      },
    }).$mount(el);

    Vue.nextTick(done);
  });

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

    // remove the component from the DOM
    document.querySelector('.board').remove();

    localStorage.removeItem(`boards.${vm.boardId}.${vm.list.type}.expanded`);
  });

  it('board is expandable when list type is backlog', () => {
    expect(vm.$el.classList.contains('is-expandable')).toBe(true);
  });

  it('board is expandable when list type is closed', done => {
    vm.list.type = 'closed';

    Vue.nextTick(() => {
      expect(vm.$el.classList.contains('is-expandable')).toBe(true);

      done();
    });
  });

  it('board is not expandable when list type is label', done => {
    vm.list.type = 'label';
    vm.list.isExpandable = false;

    Vue.nextTick(() => {
      expect(vm.$el.classList.contains('is-expandable')).toBe(false);

      done();
    });
  });

  it('collapses when clicking header', done => {
    vm.$el.querySelector('.board-header').click();

    Vue.nextTick(() => {
      expect(vm.$el.classList.contains('is-collapsed')).toBe(true);

      done();
    });
  });

  it('created sets isExpanded to true from localStorage', done => {
    vm.$el.querySelector('.board-header').click();

    return Vue.nextTick()
      .then(() => {
        expect(vm.$el.classList.contains('is-collapsed')).toBe(true);

        // call created manually
        vm.$options.created[0].call(vm);

        return Vue.nextTick();
      })
      .then(() => {
        expect(vm.$el.classList.contains('is-collapsed')).toBe(true);

        done();
      })
      .catch(done.fail);
  });
});