2011-10-08 17:36:38 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2015-02-12 13:53:23 -05:00
|
|
|
describe 'Issues', feature: true do
|
2015-02-06 01:40:35 -05:00
|
|
|
include SortingHelper
|
|
|
|
|
2012-11-05 22:31:55 -05:00
|
|
|
let(:project) { create(:project) }
|
2011-10-08 17:36:38 -04:00
|
|
|
|
2011-10-26 09:46:25 -04:00
|
|
|
before do
|
2011-10-08 17:36:38 -04:00
|
|
|
login_as :user
|
2012-11-13 19:20:37 -05:00
|
|
|
user2 = create(:user)
|
2011-11-01 16:51:20 -04:00
|
|
|
|
2013-01-04 01:43:25 -05:00
|
|
|
project.team << [[@user, user2], :developer]
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
|
|
|
|
2015-02-12 13:53:23 -05:00
|
|
|
describe 'Edit issue' do
|
2012-11-13 19:20:37 -05:00
|
|
|
let!(:issue) do
|
|
|
|
create(:issue,
|
|
|
|
author: @user,
|
|
|
|
assignee: @user,
|
|
|
|
project: project)
|
|
|
|
end
|
|
|
|
|
2011-10-26 09:46:25 -04:00
|
|
|
before do
|
2015-04-21 04:28:36 -04:00
|
|
|
visit edit_namespace_project_issue_path(project.namespace, project, issue)
|
2011-10-08 17:36:38 -04:00
|
|
|
click_link "Edit"
|
|
|
|
end
|
|
|
|
|
2015-02-12 13:53:23 -05:00
|
|
|
it 'should open new issue popup' do
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(page).to have_content("Issue ##{issue.iid}")
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
|
|
|
|
2015-02-12 13:53:23 -05:00
|
|
|
describe 'fill in' do
|
2011-10-08 17:36:38 -04:00
|
|
|
before do
|
2015-02-12 13:53:23 -05:00
|
|
|
fill_in 'issue_title', with: 'bug 345'
|
|
|
|
fill_in 'issue_description', with: 'bug description'
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
|
|
|
|
2015-02-12 13:53:23 -05:00
|
|
|
it 'does not change issue count' do
|
2015-06-22 16:00:54 -04:00
|
|
|
expect { click_button 'Save changes' }.to_not change { Issue.count }
|
2015-02-12 13:53:23 -05:00
|
|
|
end
|
2011-10-08 17:36:38 -04:00
|
|
|
|
2015-02-12 13:53:23 -05:00
|
|
|
it 'should update issue fields' do
|
|
|
|
click_button 'Save changes'
|
2011-10-08 17:36:38 -04:00
|
|
|
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(page).to have_content @user.name
|
2015-02-12 13:53:23 -05:00
|
|
|
expect(page).to have_content 'bug 345'
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(page).to have_content project.name
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
|
|
|
end
|
2014-03-02 12:29:01 -05:00
|
|
|
|
|
|
|
end
|
|
|
|
|
2015-02-12 13:53:23 -05:00
|
|
|
describe 'Editing issue assignee' do
|
2014-03-02 12:29:01 -05:00
|
|
|
let!(:issue) do
|
|
|
|
create(:issue,
|
|
|
|
author: @user,
|
|
|
|
assignee: @user,
|
|
|
|
project: project)
|
|
|
|
end
|
|
|
|
|
2015-02-12 13:53:23 -05:00
|
|
|
it 'allows user to select unasigned', js: true do
|
2015-01-24 13:02:58 -05:00
|
|
|
visit edit_namespace_project_issue_path(project.namespace, project, issue)
|
2014-03-02 12:29:01 -05:00
|
|
|
|
2015-12-02 08:30:12 -05:00
|
|
|
expect(page).to have_content "Assignee #{@user.name}"
|
2014-03-02 12:29:01 -05:00
|
|
|
|
2014-09-24 02:28:41 -04:00
|
|
|
first('#s2id_issue_assignee_id').click
|
2014-03-02 12:29:01 -05:00
|
|
|
sleep 2 # wait for ajax stuff to complete
|
2014-09-24 02:28:41 -04:00
|
|
|
first('.user-result').click
|
2014-03-02 12:29:01 -05:00
|
|
|
|
2015-02-12 13:53:23 -05:00
|
|
|
click_button 'Save changes'
|
2014-03-02 12:29:01 -05:00
|
|
|
|
2015-12-10 15:06:26 -05:00
|
|
|
page.within('.assignee') do
|
|
|
|
expect(page).to have_content 'None'
|
|
|
|
end
|
|
|
|
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(issue.reload.assignee).to be_nil
|
2014-03-02 12:29:01 -05:00
|
|
|
end
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
2011-10-22 00:06:38 -04:00
|
|
|
|
2015-02-12 13:53:23 -05:00
|
|
|
describe 'Filter issue' do
|
2012-08-13 01:38:00 -04:00
|
|
|
before do
|
|
|
|
['foobar', 'barbaz', 'gitlab'].each do |title|
|
2012-11-13 19:20:37 -05:00
|
|
|
create(:issue,
|
|
|
|
author: @user,
|
|
|
|
assignee: @user,
|
|
|
|
project: project,
|
|
|
|
title: title)
|
2012-08-13 01:38:00 -04:00
|
|
|
end
|
|
|
|
|
2015-02-06 01:40:35 -05:00
|
|
|
@issue = Issue.find_by(title: 'foobar')
|
2012-12-18 13:43:44 -05:00
|
|
|
@issue.milestone = create(:milestone, project: project)
|
|
|
|
@issue.assignee = nil
|
|
|
|
@issue.save
|
2012-08-13 01:38:00 -04:00
|
|
|
end
|
|
|
|
|
2012-12-18 13:43:44 -05:00
|
|
|
let(:issue) { @issue }
|
2012-11-13 19:20:37 -05:00
|
|
|
|
2015-02-12 13:53:23 -05:00
|
|
|
it 'should allow filtering by issues with no specified assignee' do
|
2015-03-27 03:27:51 -04:00
|
|
|
visit namespace_project_issues_path(project.namespace, project, assignee_id: IssuableFinder::NONE)
|
2012-08-13 20:49:18 -04:00
|
|
|
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(page).to have_content 'foobar'
|
|
|
|
expect(page).not_to have_content 'barbaz'
|
|
|
|
expect(page).not_to have_content 'gitlab'
|
2012-08-13 20:49:18 -04:00
|
|
|
end
|
|
|
|
|
2015-02-12 13:53:23 -05:00
|
|
|
it 'should allow filtering by a specified assignee' do
|
2015-01-24 13:02:58 -05:00
|
|
|
visit namespace_project_issues_path(project.namespace, project, assignee_id: @user.id)
|
2012-08-13 20:49:18 -04:00
|
|
|
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(page).not_to have_content 'foobar'
|
|
|
|
expect(page).to have_content 'barbaz'
|
|
|
|
expect(page).to have_content 'gitlab'
|
2012-08-13 20:49:18 -04:00
|
|
|
end
|
2012-08-13 01:38:00 -04:00
|
|
|
end
|
2013-11-20 17:59:50 -05:00
|
|
|
|
|
|
|
describe 'filter issue' do
|
|
|
|
titles = ['foo','bar','baz']
|
|
|
|
titles.each_with_index do |title, index|
|
2015-02-12 13:53:23 -05:00
|
|
|
let!(title.to_sym) do
|
|
|
|
create(:issue, title: title,
|
|
|
|
project: project,
|
|
|
|
created_at: Time.now - (index * 60))
|
|
|
|
end
|
2013-11-20 17:59:50 -05:00
|
|
|
end
|
2013-11-27 03:04:00 -05:00
|
|
|
let(:newer_due_milestone) { create(:milestone, due_date: '2013-12-11') }
|
|
|
|
let(:later_due_milestone) { create(:milestone, due_date: '2013-12-12') }
|
2013-11-20 17:59:50 -05:00
|
|
|
|
|
|
|
it 'sorts by newest' do
|
2015-01-24 13:02:58 -05:00
|
|
|
visit namespace_project_issues_path(project.namespace, project, sort: sort_value_recently_created)
|
2013-11-27 03:04:00 -05:00
|
|
|
|
2016-01-07 06:38:21 -05:00
|
|
|
expect(first_issue).to include('baz')
|
|
|
|
expect(last_issue).to include('foo')
|
2013-11-20 17:59:50 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'sorts by oldest' do
|
2015-01-24 13:02:58 -05:00
|
|
|
visit namespace_project_issues_path(project.namespace, project, sort: sort_value_oldest_created)
|
2013-11-20 17:59:50 -05:00
|
|
|
|
2016-01-07 06:38:21 -05:00
|
|
|
expect(first_issue).to include('foo')
|
|
|
|
expect(last_issue).to include('baz')
|
2013-11-20 17:59:50 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'sorts by most recently updated' do
|
|
|
|
baz.updated_at = Time.now + 100
|
|
|
|
baz.save
|
2015-01-24 13:02:58 -05:00
|
|
|
visit namespace_project_issues_path(project.namespace, project, sort: sort_value_recently_updated)
|
2013-11-20 17:59:50 -05:00
|
|
|
|
2015-02-12 13:53:23 -05:00
|
|
|
expect(first_issue).to include('baz')
|
2013-11-20 17:59:50 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'sorts by least recently updated' do
|
|
|
|
baz.updated_at = Time.now - 100
|
|
|
|
baz.save
|
2015-01-24 13:02:58 -05:00
|
|
|
visit namespace_project_issues_path(project.namespace, project, sort: sort_value_oldest_updated)
|
2013-11-20 17:59:50 -05:00
|
|
|
|
2015-02-12 13:53:23 -05:00
|
|
|
expect(first_issue).to include('baz')
|
2013-11-20 17:59:50 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
describe 'sorting by milestone' do
|
2013-11-27 03:04:00 -05:00
|
|
|
before :each do
|
2013-11-20 17:59:50 -05:00
|
|
|
foo.milestone = newer_due_milestone
|
|
|
|
foo.save
|
|
|
|
bar.milestone = later_due_milestone
|
|
|
|
bar.save
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'sorts by recently due milestone' do
|
2015-01-24 13:02:58 -05:00
|
|
|
visit namespace_project_issues_path(project.namespace, project, sort: sort_value_milestone_soon)
|
2013-11-20 17:59:50 -05:00
|
|
|
|
2015-02-12 13:53:23 -05:00
|
|
|
expect(first_issue).to include('foo')
|
2013-11-20 17:59:50 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'sorts by least recently due milestone' do
|
2015-01-24 13:02:58 -05:00
|
|
|
visit namespace_project_issues_path(project.namespace, project, sort: sort_value_milestone_later)
|
2013-11-20 17:59:50 -05:00
|
|
|
|
2015-02-12 13:53:23 -05:00
|
|
|
expect(first_issue).to include('bar')
|
2013-11-20 17:59:50 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'combine filter and sort' do
|
|
|
|
let(:user2) { create(:user) }
|
|
|
|
|
|
|
|
before :each do
|
|
|
|
foo.assignee = user2
|
|
|
|
foo.save
|
|
|
|
bar.assignee = user2
|
|
|
|
bar.save
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'sorts with a filter applied' do
|
2015-01-24 13:02:58 -05:00
|
|
|
visit namespace_project_issues_path(project.namespace, project,
|
|
|
|
sort: sort_value_oldest_created,
|
|
|
|
assignee_id: user2.id)
|
2013-11-20 17:59:50 -05:00
|
|
|
|
2016-01-07 06:38:21 -05:00
|
|
|
expect(first_issue).to include('foo')
|
|
|
|
expect(last_issue).to include('bar')
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(page).not_to have_content 'baz'
|
2013-11-20 17:59:50 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2013-11-27 08:00:57 -05:00
|
|
|
|
2013-12-17 09:39:39 -05:00
|
|
|
describe 'update assignee from issue#show' do
|
|
|
|
let(:issue) { create(:issue, project: project, author: @user) }
|
|
|
|
|
|
|
|
context 'by autorized user' do
|
|
|
|
|
|
|
|
it 'with dropdown menu' do
|
2015-01-24 13:02:58 -05:00
|
|
|
visit namespace_project_issue_path(project.namespace, project, issue)
|
2013-12-17 09:39:39 -05:00
|
|
|
|
2015-12-10 15:06:26 -05:00
|
|
|
find('.issuable-sidebar #issue_assignee_id').
|
2015-02-12 13:53:23 -05:00
|
|
|
set project.team.members.first.id
|
2013-12-17 09:39:39 -05:00
|
|
|
click_button 'Update Issue'
|
|
|
|
|
2015-12-11 14:03:58 -05:00
|
|
|
expect(page).to have_content 'Assignee'
|
2015-02-12 13:53:23 -05:00
|
|
|
has_select?('issue_assignee_id',
|
|
|
|
selected: project.team.members.first.name)
|
2013-12-17 09:39:39 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'by unauthorized user' do
|
2013-12-20 01:56:39 -05:00
|
|
|
|
2013-12-17 09:39:39 -05:00
|
|
|
let(:guest) { create(:user) }
|
2013-12-20 01:56:39 -05:00
|
|
|
|
2013-12-17 09:39:39 -05:00
|
|
|
before :each do
|
|
|
|
project.team << [[guest], :guest]
|
|
|
|
issue.assignee = @user
|
|
|
|
issue.save
|
|
|
|
end
|
|
|
|
|
2015-02-12 13:53:23 -05:00
|
|
|
it 'shows assignee text', js: true do
|
2013-12-17 09:39:39 -05:00
|
|
|
logout
|
|
|
|
login_with guest
|
|
|
|
|
2015-01-24 13:02:58 -05:00
|
|
|
visit namespace_project_issue_path(project.namespace, project, issue)
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(page).to have_content issue.assignee.name
|
2013-12-17 09:39:39 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'update milestone from issue#show' do
|
|
|
|
let!(:issue) { create(:issue, project: project, author: @user) }
|
|
|
|
let!(:milestone) { create(:milestone, project: project) }
|
|
|
|
|
|
|
|
context 'by authorized user' do
|
|
|
|
|
|
|
|
it 'with dropdown menu' do
|
2015-01-24 13:02:58 -05:00
|
|
|
visit namespace_project_issue_path(project.namespace, project, issue)
|
2013-12-17 09:39:39 -05:00
|
|
|
|
2015-12-10 15:06:26 -05:00
|
|
|
find('.issuable-sidebar').
|
2015-02-12 13:53:23 -05:00
|
|
|
select(milestone.title, from: 'issue_milestone_id')
|
2013-12-17 09:39:39 -05:00
|
|
|
click_button 'Update Issue'
|
|
|
|
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(page).to have_content "Milestone changed to #{milestone.title}"
|
2015-12-10 15:06:26 -05:00
|
|
|
|
|
|
|
page.within('.milestone') do
|
|
|
|
expect(page).to have_content milestone.title
|
|
|
|
end
|
|
|
|
|
2015-02-12 13:53:23 -05:00
|
|
|
has_select?('issue_assignee_id', selected: milestone.title)
|
2013-12-17 09:39:39 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'by unauthorized user' do
|
|
|
|
let(:guest) { create(:user) }
|
2013-12-20 01:56:39 -05:00
|
|
|
|
2013-12-17 09:39:39 -05:00
|
|
|
before :each do
|
2014-02-19 03:35:24 -05:00
|
|
|
project.team << [guest, :guest]
|
2013-12-17 09:39:39 -05:00
|
|
|
issue.milestone = milestone
|
|
|
|
issue.save
|
|
|
|
end
|
|
|
|
|
2015-02-12 13:53:23 -05:00
|
|
|
it 'shows milestone text', js: true do
|
2013-12-17 09:39:39 -05:00
|
|
|
logout
|
|
|
|
login_with guest
|
|
|
|
|
2015-01-24 13:02:58 -05:00
|
|
|
visit namespace_project_issue_path(project.namespace, project, issue)
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(page).to have_content milestone.title
|
2013-12-17 09:39:39 -05:00
|
|
|
end
|
|
|
|
end
|
2014-03-02 12:29:01 -05:00
|
|
|
|
|
|
|
describe 'removing assignee' do
|
|
|
|
let(:user2) { create(:user) }
|
|
|
|
|
|
|
|
before :each do
|
|
|
|
issue.assignee = user2
|
|
|
|
issue.save
|
|
|
|
end
|
|
|
|
|
2015-06-22 14:54:33 -04:00
|
|
|
it 'allows user to remove assignee', js: true do
|
2015-01-24 13:02:58 -05:00
|
|
|
visit namespace_project_issue_path(project.namespace, project, issue)
|
2014-03-02 12:29:01 -05:00
|
|
|
|
2015-12-10 15:06:26 -05:00
|
|
|
page.within('.assignee') do
|
|
|
|
expect(page).to have_content user2.name
|
|
|
|
end
|
|
|
|
|
|
|
|
find('.assignee .edit-link').click
|
2014-03-02 12:29:01 -05:00
|
|
|
sleep 2 # wait for ajax stuff to complete
|
2014-09-24 02:28:41 -04:00
|
|
|
first('.user-result').click
|
2014-03-02 12:29:01 -05:00
|
|
|
|
2015-12-10 15:06:26 -05:00
|
|
|
page.within('.assignee') do
|
|
|
|
expect(page).to have_content 'None'
|
|
|
|
end
|
|
|
|
|
2014-03-02 12:29:01 -05:00
|
|
|
sleep 2 # wait for ajax stuff to complete
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(issue.reload.assignee).to be_nil
|
2014-03-02 12:29:01 -05:00
|
|
|
end
|
|
|
|
end
|
2013-12-17 09:39:39 -05:00
|
|
|
end
|
|
|
|
|
2013-11-27 08:00:57 -05:00
|
|
|
def first_issue
|
2015-12-08 17:28:28 -05:00
|
|
|
page.all('ul.issues-list > li').first.text
|
2013-11-27 08:00:57 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def last_issue
|
2015-12-08 17:28:28 -05:00
|
|
|
page.all('ul.issues-list > li').last.text
|
2013-11-27 08:00:57 -05:00
|
|
|
end
|
2014-02-19 03:35:24 -05:00
|
|
|
end
|