2011-10-08 17:36:38 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe "Issues" do
|
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
|
|
|
|
|
2012-12-18 22:14:05 -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
|
2011-10-08 17:36:38 -04:00
|
|
|
visit project_issues_path(project)
|
|
|
|
click_link "Edit"
|
|
|
|
end
|
|
|
|
|
2011-10-26 09:46:25 -04:00
|
|
|
it "should open new issue popup" do
|
2012-11-13 19:20:37 -05:00
|
|
|
page.should have_content("Issue ##{issue.id}")
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
|
|
|
|
2011-10-26 09:46:25 -04:00
|
|
|
describe "fill in" do
|
2011-10-08 17:36:38 -04:00
|
|
|
before do
|
2012-08-10 18:07:50 -04:00
|
|
|
fill_in "issue_title", with: "bug 345"
|
|
|
|
fill_in "issue_description", with: "bug description"
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
|
|
|
|
2012-03-25 12:44:29 -04:00
|
|
|
it { expect { click_button "Save changes" }.to_not change {Issue.count} }
|
2011-10-08 17:36:38 -04:00
|
|
|
|
2011-10-26 09:46:25 -04:00
|
|
|
it "should update issue fields" do
|
2012-03-25 12:44:29 -04:00
|
|
|
click_button "Save changes"
|
2011-10-08 17:36:38 -04:00
|
|
|
|
|
|
|
page.should have_content @user.name
|
|
|
|
page.should have_content "bug 345"
|
|
|
|
page.should have_content project.name
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2011-10-22 00:06:38 -04:00
|
|
|
|
2012-08-10 18:07:50 -04:00
|
|
|
describe "Search issue", js: true do
|
2011-10-22 00:06:38 -04:00
|
|
|
before do
|
|
|
|
['foobar', 'foobar2', 'gitlab'].each do |title|
|
2012-11-13 19:20:37 -05:00
|
|
|
create(:issue,
|
|
|
|
author: @user,
|
|
|
|
assignee: @user,
|
|
|
|
project: project,
|
|
|
|
title: title)
|
2011-10-22 00:06:38 -04:00
|
|
|
end
|
|
|
|
end
|
2011-11-11 04:29:58 -05:00
|
|
|
|
2011-10-25 20:15:11 -04:00
|
|
|
it "should be able to search on different statuses" do
|
2012-11-13 19:20:37 -05:00
|
|
|
issue = Issue.first # with title 'foobar'
|
2013-02-18 04:10:58 -05:00
|
|
|
issue.close
|
2011-10-25 20:15:11 -04:00
|
|
|
|
2011-10-22 00:06:38 -04:00
|
|
|
visit project_issues_path(project)
|
2012-01-29 16:59:12 -05:00
|
|
|
click_link 'Closed'
|
2012-08-10 18:07:50 -04:00
|
|
|
fill_in 'issue_search', with: 'foobar'
|
2011-11-11 04:29:58 -05:00
|
|
|
|
2011-10-25 20:15:11 -04:00
|
|
|
page.should have_content 'foobar'
|
|
|
|
page.should_not have_content 'foobar2'
|
|
|
|
page.should_not have_content 'gitlab'
|
|
|
|
end
|
|
|
|
|
2011-11-11 04:29:58 -05:00
|
|
|
it "should search for term and return the correct results" do
|
2011-10-25 20:15:11 -04:00
|
|
|
visit project_issues_path(project)
|
2012-08-10 18:07:50 -04:00
|
|
|
fill_in 'issue_search', with: 'foobar'
|
2011-10-25 20:15:11 -04:00
|
|
|
|
2011-10-22 00:06:38 -04:00
|
|
|
page.should have_content 'foobar'
|
|
|
|
page.should have_content 'foobar2'
|
|
|
|
page.should_not have_content 'gitlab'
|
|
|
|
end
|
2011-10-25 20:15:11 -04:00
|
|
|
end
|
2012-08-13 01:38:00 -04:00
|
|
|
|
|
|
|
describe "Filter issue" do
|
|
|
|
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
|
|
|
|
|
2012-12-18 13:43:44 -05:00
|
|
|
@issue = Issue.first # with title 'foobar'
|
|
|
|
@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
|
|
|
|
2012-08-13 01:38:00 -04:00
|
|
|
it "should allow filtering by issues with no specified milestone" do
|
|
|
|
visit project_issues_path(project, milestone_id: '0')
|
|
|
|
|
|
|
|
page.should_not have_content 'foobar'
|
|
|
|
page.should have_content 'barbaz'
|
|
|
|
page.should have_content 'gitlab'
|
|
|
|
end
|
|
|
|
|
|
|
|
it "should allow filtering by a specified milestone" do
|
2012-11-13 19:20:37 -05:00
|
|
|
visit project_issues_path(project, milestone_id: issue.milestone.id)
|
2012-08-13 01:38:00 -04:00
|
|
|
|
|
|
|
page.should have_content 'foobar'
|
|
|
|
page.should_not have_content 'barbaz'
|
|
|
|
page.should_not have_content 'gitlab'
|
|
|
|
end
|
2012-08-13 20:49:18 -04:00
|
|
|
|
|
|
|
it "should allow filtering by issues with no specified assignee" do
|
|
|
|
visit project_issues_path(project, assignee_id: '0')
|
|
|
|
|
|
|
|
page.should have_content 'foobar'
|
|
|
|
page.should_not have_content 'barbaz'
|
|
|
|
page.should_not have_content 'gitlab'
|
|
|
|
end
|
|
|
|
|
|
|
|
it "should allow filtering by a specified assignee" do
|
|
|
|
visit project_issues_path(project, assignee_id: @user.id)
|
|
|
|
|
|
|
|
page.should_not have_content 'foobar'
|
|
|
|
page.should have_content 'barbaz'
|
|
|
|
page.should have_content 'gitlab'
|
|
|
|
end
|
2012-08-13 01:38:00 -04:00
|
|
|
end
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|