summaryrefslogtreecommitdiff
path: root/spec/services/boards/lists/move_service_spec.rb
blob: 072087a0e051a8e22053d87b1e83fd2823a4155b (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
require 'spec_helper'

describe Boards::Lists::MoveService, services: true do
  describe '#execute' do
    let(:project) { create(:project_with_board) }
    let(:board)   { project.board }
    let!(:list1)  { create(:backlog_list, board: board, position: 1) }
    let!(:list2)  { create(:label_list,   board: board, position: 2) }
    let!(:list3)  { create(:label_list,   board: board, position: 3) }
    let!(:list4)  { create(:label_list,   board: board, position: 4) }
    let!(:list5)  { create(:label_list,   board: board, position: 5) }
    let!(:list6)  { create(:done_list,    board: board, position: 6) }

    context 'when list type is set to label' do
      it 'keeps position of lists when new position is nil' do
        service = described_class.new(project, { list_id: list2.id, position: nil })

        service.execute

        expect(positions_of_lists).to eq [1, 2, 3, 4, 5, 6]
      end

      it 'keeps position of lists when new positon is equal to old position' do
        service = described_class.new(project, { list_id: list2.id, position: 2 })

        service.execute

        expect(positions_of_lists).to eq [1, 2, 3, 4, 5, 6]
      end

      it 'keeps position of lists when new positon is equal to first position' do
        service = described_class.new(project, { list_id: list3.id, position: 1 })

        service.execute

        expect(positions_of_lists).to eq [1, 2, 3, 4, 5, 6]
      end

      it 'keeps position of lists when new positon is equal to last position' do
        service = described_class.new(project, { list_id: list3.id, position: 6 })

        service.execute

        expect(positions_of_lists).to eq [1, 2, 3, 4, 5, 6]
      end

      it 'decrements position of intermediate lists when new position is greater than old position' do
        service = described_class.new(project, { list_id: list2.id, position: 5 })

        service.execute

        expect(positions_of_lists).to eq [1, 5, 2, 3, 4, 6]
      end

      it 'increments position of intermediate lists when when new position is lower than old position' do
        service = described_class.new(project, { list_id: list5.id, position: 2 })

        service.execute

        expect(positions_of_lists).to eq [1, 3, 4, 5, 2, 6]
      end
    end

    it 'keeps position of lists when list type is backlog' do
      service = described_class.new(project, { list_id: list1.id, position: 2 })

      service.execute

      expect(positions_of_lists).to eq [1, 2, 3, 4, 5, 6]
    end

    it 'keeps position of lists when list type is done' do
      service = described_class.new(project, { list_id: list6.id, position: 2 })

      service.execute

      expect(positions_of_lists).to eq [1, 2, 3, 4, 5, 6]
    end
  end

  def positions_of_lists
    (1..6).map { |index| send("list#{index}").reload.position }
  end
end