2016-04-26 07:22:52 -04:00
|
|
|
|
require 'rails_helper'
|
|
|
|
|
|
2018-07-05 02:32:05 -04:00
|
|
|
|
describe 'Milestone' do
|
2017-07-07 11:08:49 -04:00
|
|
|
|
let(:group) { create(:group, :public) }
|
2017-08-02 15:55:11 -04:00
|
|
|
|
let(:project) { create(:project, :public, namespace: group) }
|
2016-04-26 07:22:52 -04:00
|
|
|
|
let(:user) { create(:user) }
|
|
|
|
|
|
|
|
|
|
before do
|
2017-07-07 11:08:49 -04:00
|
|
|
|
create(:group_member, group: group, user: user)
|
2017-12-22 03:18:28 -05:00
|
|
|
|
project.add_master(user)
|
2017-06-21 19:44:10 -04:00
|
|
|
|
sign_in(user)
|
2016-04-26 07:22:52 -04:00
|
|
|
|
end
|
|
|
|
|
|
2018-07-05 02:32:05 -04:00
|
|
|
|
describe 'Create a milestone' do
|
|
|
|
|
it 'shows an informative message for a new milestone' do
|
2017-07-06 12:20:50 -04:00
|
|
|
|
visit new_project_milestone_path(project)
|
2016-11-15 12:48:30 -05:00
|
|
|
|
|
2016-04-26 07:22:52 -04:00
|
|
|
|
page.within '.milestone-form' do
|
|
|
|
|
fill_in "milestone_title", with: '8.7'
|
2016-11-15 12:48:30 -05:00
|
|
|
|
fill_in "milestone_start_date", with: '2016-11-16'
|
|
|
|
|
fill_in "milestone_due_date", with: '2016-12-16'
|
2016-04-26 07:22:52 -04:00
|
|
|
|
end
|
2016-11-15 12:48:30 -05:00
|
|
|
|
|
2016-04-26 07:22:52 -04:00
|
|
|
|
find('input[name="commit"]').click
|
|
|
|
|
|
|
|
|
|
expect(find('.alert-success')).to have_content('Assign some issues to this milestone.')
|
2017-02-24 12:07:29 -05:00
|
|
|
|
expect(page).to have_content('Nov 16, 2016–Dec 16, 2016')
|
2016-04-26 07:22:52 -04:00
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2018-07-05 02:32:05 -04:00
|
|
|
|
describe 'Open a milestone with closed issues' do
|
|
|
|
|
it 'shows an informative message' do
|
2016-09-12 15:14:26 -04:00
|
|
|
|
milestone = create(:milestone, project: project, title: 8.7)
|
|
|
|
|
|
2016-04-26 07:22:52 -04:00
|
|
|
|
create(:issue, title: "Bugfix1", project: project, milestone: milestone, state: "closed")
|
2017-07-06 12:20:50 -04:00
|
|
|
|
visit project_milestone_path(project, milestone)
|
2016-04-26 07:22:52 -04:00
|
|
|
|
|
|
|
|
|
expect(find('.alert-success')).to have_content('All issues for this milestone are closed. You may close this milestone now.')
|
|
|
|
|
end
|
|
|
|
|
end
|
2016-09-12 15:14:26 -04:00
|
|
|
|
|
2018-07-05 02:32:05 -04:00
|
|
|
|
describe 'Open a project milestone with an existing title' do
|
|
|
|
|
it 'displays validation message when there is a project milestone with same title' do
|
2016-09-12 15:14:26 -04:00
|
|
|
|
milestone = create(:milestone, project: project, title: 8.7)
|
|
|
|
|
|
2017-07-06 12:20:50 -04:00
|
|
|
|
visit new_project_milestone_path(project)
|
2016-09-12 15:14:26 -04:00
|
|
|
|
page.within '.milestone-form' do
|
|
|
|
|
fill_in "milestone_title", with: milestone.title
|
|
|
|
|
end
|
|
|
|
|
find('input[name="commit"]').click
|
|
|
|
|
|
2017-07-07 11:08:49 -04:00
|
|
|
|
expect(find('.alert-danger')).to have_content('already being used for another group or project milestone.')
|
|
|
|
|
end
|
|
|
|
|
|
2018-07-05 02:32:05 -04:00
|
|
|
|
it 'displays validation message when there is a group milestone with same title' do
|
2017-07-07 11:08:49 -04:00
|
|
|
|
milestone = create(:milestone, project_id: nil, group: project.group, title: 8.7)
|
|
|
|
|
|
|
|
|
|
visit new_group_milestone_path(project.group)
|
|
|
|
|
|
|
|
|
|
page.within '.milestone-form' do
|
|
|
|
|
fill_in "milestone_title", with: milestone.title
|
|
|
|
|
end
|
|
|
|
|
find('input[name="commit"]').click
|
|
|
|
|
|
|
|
|
|
expect(find('.alert-danger')).to have_content('already being used for another group or project milestone.')
|
2016-09-12 15:14:26 -04:00
|
|
|
|
end
|
|
|
|
|
end
|
2017-11-07 14:49:41 -05:00
|
|
|
|
|
2018-07-05 02:32:05 -04:00
|
|
|
|
describe 'Open a milestone', :js do
|
|
|
|
|
it 'shows total issue time spent correctly when no time has been logged' do
|
2017-11-07 14:49:41 -05:00
|
|
|
|
milestone = create(:milestone, project: project, title: 8.7)
|
|
|
|
|
|
|
|
|
|
visit project_milestone_path(project, milestone)
|
|
|
|
|
|
2018-02-21 12:20:56 -05:00
|
|
|
|
wait_for_requests
|
|
|
|
|
|
|
|
|
|
page.within('.time-tracking-no-tracking-pane') do
|
|
|
|
|
expect(page).to have_content 'No estimate or time spent'
|
2017-11-07 14:49:41 -05:00
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2018-07-05 02:32:05 -04:00
|
|
|
|
it 'shows total issue time spent' do
|
2017-11-07 14:49:41 -05:00
|
|
|
|
milestone = create(:milestone, project: project, title: 8.7)
|
|
|
|
|
issue1 = create(:issue, project: project, milestone: milestone)
|
|
|
|
|
issue2 = create(:issue, project: project, milestone: milestone)
|
2017-12-14 14:32:55 -05:00
|
|
|
|
issue1.spend_time(duration: 3600, user_id: user.id)
|
2017-11-07 14:49:41 -05:00
|
|
|
|
issue1.save!
|
2017-12-14 14:32:55 -05:00
|
|
|
|
issue2.spend_time(duration: 7200, user_id: user.id)
|
2017-11-07 14:49:41 -05:00
|
|
|
|
issue2.save!
|
|
|
|
|
|
|
|
|
|
visit project_milestone_path(project, milestone)
|
|
|
|
|
|
2018-02-21 12:20:56 -05:00
|
|
|
|
wait_for_requests
|
|
|
|
|
|
|
|
|
|
page.within('.time-tracking-spend-only-pane') do
|
|
|
|
|
expect(page).to have_content 'Spent: 3h'
|
2017-11-07 14:49:41 -05:00
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
2018-03-01 18:20:06 -05:00
|
|
|
|
|
2018-07-05 02:32:05 -04:00
|
|
|
|
describe 'Deleting a milestone' do
|
|
|
|
|
it "The delete milestone button does not show for unauthorized users" do
|
2018-03-01 18:20:06 -05:00
|
|
|
|
create(:milestone, project: project, title: 8.7)
|
|
|
|
|
sign_out(user)
|
|
|
|
|
|
|
|
|
|
visit group_milestones_path(group)
|
|
|
|
|
|
|
|
|
|
expect(page).to have_selector('.js-delete-milestone-button', count: 0)
|
|
|
|
|
end
|
|
|
|
|
end
|
2018-03-23 15:14:09 -04:00
|
|
|
|
|
2018-07-05 02:32:05 -04:00
|
|
|
|
describe 'deprecation popover', :js do
|
2018-03-23 15:14:09 -04:00
|
|
|
|
it 'opens deprecation popover' do
|
|
|
|
|
milestone = create(:milestone, project: project)
|
|
|
|
|
|
|
|
|
|
visit group_milestone_path(group, milestone, title: milestone.title)
|
|
|
|
|
|
|
|
|
|
expect(page).to have_selector('.milestone-deprecation-message')
|
|
|
|
|
|
2018-04-02 19:21:43 -04:00
|
|
|
|
find('.milestone-deprecation-message .js-popover-link').click
|
2018-03-23 15:14:09 -04:00
|
|
|
|
|
2018-04-24 11:35:36 -04:00
|
|
|
|
expect(page).to have_selector('.popover')
|
2018-03-23 15:14:09 -04:00
|
|
|
|
end
|
|
|
|
|
end
|
2016-04-26 07:22:52 -04:00
|
|
|
|
end
|