Remove backlog lists from board services
This commit is contained in:
parent
682d213f43
commit
860fafee13
8 changed files with 6 additions and 88 deletions
|
@ -12,7 +12,6 @@ module Boards
|
|||
|
||||
def create_board!
|
||||
board = project.boards.create
|
||||
board.lists.create(list_type: :backlog)
|
||||
board.lists.create(list_type: :done)
|
||||
|
||||
board
|
||||
|
|
|
@ -11,12 +11,11 @@ describe Boards::CreateService, services: true do
|
|||
expect { service.execute }.to change(Board, :count).by(1)
|
||||
end
|
||||
|
||||
it 'creates default lists' do
|
||||
it 'creates the default lists' do
|
||||
board = service.execute
|
||||
|
||||
expect(board.lists.size).to eq 2
|
||||
expect(board.lists.first).to be_backlog
|
||||
expect(board.lists.last).to be_done
|
||||
expect(board.lists.size).to eq 1
|
||||
expect(board.lists.first).to be_done
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
@ -13,15 +13,10 @@ describe Boards::Issues::ListService, services: true do
|
|||
let(:p2) { create(:label, title: 'P2', project: project, priority: 2) }
|
||||
let(:p3) { create(:label, title: 'P3', project: project, priority: 3) }
|
||||
|
||||
let!(:backlog) { create(:backlog_list, board: board) }
|
||||
let!(:list1) { create(:list, board: board, label: development, position: 0) }
|
||||
let!(:list2) { create(:list, board: board, label: testing, position: 1) }
|
||||
let!(:done) { create(:done_list, board: board) }
|
||||
|
||||
let!(:opened_issue1) { create(:labeled_issue, project: project, labels: [bug]) }
|
||||
let!(:opened_issue2) { create(:labeled_issue, project: project, labels: [p2]) }
|
||||
let!(:reopened_issue1) { create(:issue, :reopened, project: project) }
|
||||
|
||||
let!(:list1_issue1) { create(:labeled_issue, project: project, labels: [p2, development]) }
|
||||
let!(:list1_issue2) { create(:labeled_issue, project: project, labels: [development]) }
|
||||
let!(:list1_issue3) { create(:labeled_issue, project: project, labels: [development, p1]) }
|
||||
|
@ -45,14 +40,6 @@ describe Boards::Issues::ListService, services: true do
|
|||
end
|
||||
|
||||
context 'sets default order to priority' do
|
||||
it 'returns opened issues when listing issues from Backlog' do
|
||||
params = { board_id: board.id, id: backlog.id }
|
||||
|
||||
issues = described_class.new(project, user, params).execute
|
||||
|
||||
expect(issues).to eq [opened_issue2, reopened_issue1, opened_issue1]
|
||||
end
|
||||
|
||||
it 'returns closed issues when listing issues from Done' do
|
||||
params = { board_id: board.id, id: done.id }
|
||||
|
||||
|
|
|
@ -10,7 +10,6 @@ describe Boards::Issues::MoveService, services: true do
|
|||
let(:development) { create(:label, project: project, name: 'Development') }
|
||||
let(:testing) { create(:label, project: project, name: 'Testing') }
|
||||
|
||||
let!(:backlog) { create(:backlog_list, board: board1) }
|
||||
let!(:list1) { create(:list, board: board1, label: development, position: 0) }
|
||||
let!(:list2) { create(:list, board: board1, label: testing, position: 1) }
|
||||
let!(:done) { create(:done_list, board: board1) }
|
||||
|
@ -19,41 +18,6 @@ describe Boards::Issues::MoveService, services: true do
|
|||
project.team << [user, :developer]
|
||||
end
|
||||
|
||||
context 'when moving from backlog' do
|
||||
it 'adds the label of the list it goes to' do
|
||||
issue = create(:labeled_issue, project: project, labels: [bug])
|
||||
params = { board_id: board1.id, from_list_id: backlog.id, to_list_id: list1.id }
|
||||
|
||||
described_class.new(project, user, params).execute(issue)
|
||||
|
||||
expect(issue.reload.labels).to contain_exactly(bug, development)
|
||||
end
|
||||
end
|
||||
|
||||
context 'when moving to backlog' do
|
||||
it 'removes all list-labels' do
|
||||
issue = create(:labeled_issue, project: project, labels: [bug, development, testing])
|
||||
params = { board_id: board1.id, from_list_id: list1.id, to_list_id: backlog.id }
|
||||
|
||||
described_class.new(project, user, params).execute(issue)
|
||||
|
||||
expect(issue.reload.labels).to contain_exactly(bug)
|
||||
end
|
||||
end
|
||||
|
||||
context 'when moving from backlog to done' do
|
||||
it 'closes the issue' do
|
||||
issue = create(:labeled_issue, project: project, labels: [bug])
|
||||
params = { board_id: board1.id, from_list_id: backlog.id, to_list_id: done.id }
|
||||
|
||||
described_class.new(project, user, params).execute(issue)
|
||||
issue.reload
|
||||
|
||||
expect(issue.labels).to contain_exactly(bug)
|
||||
expect(issue).to be_closed
|
||||
end
|
||||
end
|
||||
|
||||
context 'when moving an issue between lists' do
|
||||
let(:issue) { create(:labeled_issue, project: project, labels: [bug, development]) }
|
||||
let(:params) { { board_id: board1.id, from_list_id: list1.id, to_list_id: list2.id } }
|
||||
|
@ -113,19 +77,6 @@ describe Boards::Issues::MoveService, services: true do
|
|||
end
|
||||
end
|
||||
|
||||
context 'when moving from done to backlog' do
|
||||
it 'reopens the issue' do
|
||||
issue = create(:labeled_issue, :closed, project: project, labels: [bug])
|
||||
params = { board_id: board1.id, from_list_id: done.id, to_list_id: backlog.id }
|
||||
|
||||
described_class.new(project, user, params).execute(issue)
|
||||
issue.reload
|
||||
|
||||
expect(issue.labels).to contain_exactly(bug)
|
||||
expect(issue).to be_reopened
|
||||
end
|
||||
end
|
||||
|
||||
context 'when moving to same list' do
|
||||
let(:issue) { create(:labeled_issue, project: project, labels: [bug, development]) }
|
||||
let(:params) { { board_id: board1.id, from_list_id: list1.id, to_list_id: list1.id } }
|
||||
|
|
|
@ -21,7 +21,7 @@ describe Boards::Lists::CreateService, services: true do
|
|||
end
|
||||
end
|
||||
|
||||
context 'when board lists has backlog, and done lists' do
|
||||
context 'when board lists has the done list' do
|
||||
it 'creates a new list at beginning of the list' do
|
||||
list = service.execute(board)
|
||||
|
||||
|
@ -40,7 +40,7 @@ describe Boards::Lists::CreateService, services: true do
|
|||
end
|
||||
end
|
||||
|
||||
context 'when board lists has backlog, label and done lists' do
|
||||
context 'when board lists has label and done lists' do
|
||||
it 'creates a new list at end of the label lists' do
|
||||
list1 = create(:list, board: board, position: 0)
|
||||
|
||||
|
|
|
@ -15,7 +15,6 @@ describe Boards::Lists::DestroyService, services: true do
|
|||
end
|
||||
|
||||
it 'decrements position of higher lists' do
|
||||
backlog = board.backlog_list
|
||||
development = create(:list, board: board, position: 0)
|
||||
review = create(:list, board: board, position: 1)
|
||||
staging = create(:list, board: board, position: 2)
|
||||
|
@ -23,20 +22,12 @@ describe Boards::Lists::DestroyService, services: true do
|
|||
|
||||
described_class.new(project, user).execute(development)
|
||||
|
||||
expect(backlog.reload.position).to be_nil
|
||||
expect(review.reload.position).to eq 0
|
||||
expect(staging.reload.position).to eq 1
|
||||
expect(done.reload.position).to be_nil
|
||||
end
|
||||
end
|
||||
|
||||
it 'does not remove list from board when list type is backlog' do
|
||||
list = board.backlog_list
|
||||
service = described_class.new(project, user)
|
||||
|
||||
expect { service.execute(list) }.not_to change(board.lists, :count)
|
||||
end
|
||||
|
||||
it 'does not remove list from board when list type is done' do
|
||||
list = board.done_list
|
||||
service = described_class.new(project, user)
|
||||
|
|
|
@ -10,7 +10,7 @@ describe Boards::Lists::ListService, services: true do
|
|||
|
||||
service = described_class.new(project, double)
|
||||
|
||||
expect(service.execute(board)).to eq [board.backlog_list, list, board.done_list]
|
||||
expect(service.execute(board)).to eq [list, board.done_list]
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
@ -6,7 +6,6 @@ describe Boards::Lists::MoveService, services: true do
|
|||
let(:board) { create(:board, project: project) }
|
||||
let(:user) { create(:user) }
|
||||
|
||||
let!(:backlog) { create(:backlog_list, board: board) }
|
||||
let!(:planning) { create(:list, board: board, position: 0) }
|
||||
let!(:development) { create(:list, board: board, position: 1) }
|
||||
let!(:review) { create(:list, board: board, position: 2) }
|
||||
|
@ -87,14 +86,6 @@ describe Boards::Lists::MoveService, services: true do
|
|||
end
|
||||
end
|
||||
|
||||
it 'keeps position of lists when list type is backlog' do
|
||||
service = described_class.new(project, user, position: 2)
|
||||
|
||||
service.execute(backlog)
|
||||
|
||||
expect(current_list_positions).to eq [0, 1, 2, 3]
|
||||
end
|
||||
|
||||
it 'keeps position of lists when list type is done' do
|
||||
service = described_class.new(project, user, position: 2)
|
||||
|
||||
|
|
Loading…
Reference in a new issue