gitlabhq/spec/requests/issues_spec.rb

142 lines
3.8 KiB
Ruby
Raw Permalink Normal View History

2011-10-08 23:36:38 +02:00
require 'spec_helper'
describe "Issues" do
let(:project) { Factory :project }
before do
2011-10-08 23:36:38 +02:00
login_as :user
2011-11-01 21:51:20 +01:00
@user2 = Factory :user
2011-10-08 23:36:38 +02:00
project.add_access(@user, :read, :write)
2011-11-01 21:51:20 +01:00
project.add_access(@user2, :read, :write)
2011-10-08 23:36:38 +02:00
end
describe "Edit issue", js: true do
before do
2011-10-08 23:36:38 +02:00
@issue = Factory :issue,
author: @user,
assignee: @user,
project: project
2011-10-08 23:36:38 +02:00
visit project_issues_path(project)
click_link "Edit"
end
it "should open new issue popup" do
2011-10-08 23:36:38 +02:00
page.should have_content("Issue ##{@issue.id}")
end
describe "fill in" do
2011-10-08 23:36:38 +02:00
before do
fill_in "issue_title", with: "bug 345"
fill_in "issue_description", with: "bug description"
2011-10-08 23:36:38 +02:00
end
2012-03-25 18:44:29 +02:00
it { expect { click_button "Save changes" }.to_not change {Issue.count} }
2011-10-08 23:36:38 +02:00
it "should update issue fields" do
2012-03-25 18:44:29 +02:00
click_button "Save changes"
2011-10-08 23:36:38 +02: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 06:06:38 +02:00
describe "Search issue", js: true do
2011-10-22 06:06:38 +02:00
before do
['foobar', 'foobar2', 'gitlab'].each do |title|
@issue = Factory :issue,
author: @user,
assignee: @user,
project: project,
title: title
2011-10-22 06:06:38 +02:00
@issue.save
end
end
2011-11-11 10:29:58 +01:00
it "should be able to search on different statuses" do
@issue = Issue.first
@issue.closed = true
@issue.save
2011-10-22 06:06:38 +02:00
visit project_issues_path(project)
click_link 'Closed'
fill_in 'issue_search', with: 'foobar'
2011-11-11 10:29:58 +01:00
page.should have_content 'foobar'
page.should_not have_content 'foobar2'
page.should_not have_content 'gitlab'
end
2011-11-11 10:29:58 +01:00
it "should search for term and return the correct results" do
visit project_issues_path(project)
fill_in 'issue_search', with: 'foobar'
2011-10-22 06:06:38 +02:00
page.should have_content 'foobar'
page.should have_content 'foobar2'
page.should_not have_content 'gitlab'
end
it "should return all results if term has been cleared" do
visit project_issues_path(project)
fill_in "issue_search", with: "foobar"
# Because fill_in, with: "" triggers nothing we need to trigger a keyup event
page.execute_script("$('.issue_search').val('').keyup();");
page.should have_content 'foobar'
page.should have_content 'foobar2'
page.should have_content 'gitlab'
end
end
describe "Filter issue" do
before do
['foobar', 'barbaz', 'gitlab'].each do |title|
@issue = Factory :issue,
author: @user,
assignee: @user,
project: project,
title: title
end
@issue = Issue.first
@issue.milestone = Factory(:milestone, project: project)
@issue.assignee = nil
@issue.save
end
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
visit project_issues_path(project, milestone_id: @issue.milestone.id)
page.should have_content 'foobar'
page.should_not have_content 'barbaz'
page.should_not have_content 'gitlab'
end
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
end
2011-10-08 23:36:38 +02:00
end