2013-02-11 08:32:29 -05:00
|
|
|
require "spec_helper"
|
|
|
|
|
|
|
|
describe IssuesHelper do
|
2017-08-02 15:55:11 -04:00
|
|
|
let(:project) { create(:project) }
|
2013-02-19 08:21:59 -05:00
|
|
|
let(:issue) { create :issue, project: project }
|
|
|
|
let(:ext_project) { create :redmine_project }
|
2013-02-11 08:32:29 -05:00
|
|
|
|
2015-02-12 10:48:53 -05:00
|
|
|
describe "url_for_issue" do
|
2015-01-26 18:59:40 -05:00
|
|
|
let(:issues_url) { ext_project.external_issue_tracker.issues_url}
|
2016-06-10 15:53:20 -04:00
|
|
|
let(:ext_expected) { issues_url.gsub(':id', issue.iid.to_s).gsub(':project_id', ext_project.id.to_s) }
|
2017-07-10 03:38:42 -04:00
|
|
|
let(:int_expected) { polymorphic_path([@project.namespace, @project, issue]) }
|
2013-02-11 08:32:29 -05:00
|
|
|
|
2016-07-25 14:16:19 -04:00
|
|
|
it "returns internal path if used internal tracker" do
|
2013-02-11 08:32:29 -05:00
|
|
|
@project = project
|
2016-07-25 14:16:19 -04:00
|
|
|
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(url_for_issue(issue.iid)).to match(int_expected)
|
2013-02-11 08:32:29 -05:00
|
|
|
end
|
|
|
|
|
2016-07-25 14:16:19 -04:00
|
|
|
it "returns path to external tracker" do
|
2013-02-11 08:32:29 -05:00
|
|
|
@project = ext_project
|
|
|
|
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(url_for_issue(issue.iid)).to match(ext_expected)
|
2017-07-10 03:38:42 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "returns path to internal issue when internal option passed" do
|
|
|
|
@project = ext_project
|
|
|
|
|
|
|
|
expect(url_for_issue(issue.iid, ext_project, internal: true)).to match(int_expected)
|
2013-02-11 08:32:29 -05:00
|
|
|
end
|
|
|
|
|
2016-07-25 14:16:19 -04:00
|
|
|
it "returns empty string if project nil" do
|
2013-02-11 08:32:29 -05:00
|
|
|
@project = nil
|
|
|
|
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(url_for_issue(issue.iid)).to eq ""
|
2013-02-11 08:32:29 -05:00
|
|
|
end
|
2013-10-17 04:42:39 -04:00
|
|
|
|
2016-04-21 11:13:14 -04:00
|
|
|
it 'returns an empty string if issue_url is invalid' do
|
|
|
|
expect(project).to receive_message_chain('issues_tracker.issue_url') { 'javascript:alert("foo");' }
|
|
|
|
|
|
|
|
expect(url_for_issue(issue.iid, project)).to eq ''
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns an empty string if issue_path is invalid' do
|
|
|
|
expect(project).to receive_message_chain('issues_tracker.issue_path') { 'javascript:alert("foo");' }
|
|
|
|
|
|
|
|
expect(url_for_issue(issue.iid, project, only_path: true)).to eq ''
|
|
|
|
end
|
|
|
|
|
2013-10-17 04:42:39 -04:00
|
|
|
describe "when external tracker was enabled and then config removed" do
|
|
|
|
before do
|
|
|
|
@project = ext_project
|
2015-02-12 13:17:35 -05:00
|
|
|
allow(Gitlab.config).to receive(:issues_tracker).and_return(nil)
|
2013-10-17 04:42:39 -04:00
|
|
|
end
|
|
|
|
|
2016-07-25 14:16:19 -04:00
|
|
|
it "returns external path" do
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(url_for_issue(issue.iid)).to match(ext_expected)
|
2013-10-17 04:42:39 -04:00
|
|
|
end
|
|
|
|
end
|
2013-02-11 08:32:29 -05:00
|
|
|
end
|
2013-03-26 04:27:34 -04:00
|
|
|
|
2016-06-19 19:06:57 -04:00
|
|
|
describe '#award_user_list' do
|
2016-10-06 14:00:51 -04:00
|
|
|
it "returns a comma-separated list of the first X users" do
|
|
|
|
user = build_stubbed(:user, name: 'Joe')
|
|
|
|
awards = Array.new(3, build_stubbed(:award_emoji, user: user))
|
2016-06-19 19:06:57 -04:00
|
|
|
|
2017-02-22 17:54:59 -05:00
|
|
|
expect(award_user_list(awards, nil, limit: 3))
|
|
|
|
.to eq('Joe, Joe, and Joe')
|
2016-06-19 19:06:57 -04:00
|
|
|
end
|
|
|
|
|
2016-07-11 14:53:07 -04:00
|
|
|
it "displays the current user's name as 'You'" do
|
2016-10-06 14:00:51 -04:00
|
|
|
user = build_stubbed(:user, name: 'Joe')
|
|
|
|
award = build_stubbed(:award_emoji, user: user)
|
2016-06-19 19:06:57 -04:00
|
|
|
|
2016-10-06 14:00:51 -04:00
|
|
|
expect(award_user_list([award], user)).to eq('You')
|
|
|
|
expect(award_user_list([award], nil)).to eq 'Joe'
|
2016-06-21 18:22:03 -04:00
|
|
|
end
|
|
|
|
|
2016-10-06 14:00:51 -04:00
|
|
|
it "truncates lists" do
|
|
|
|
user = build_stubbed(:user, name: 'Jane')
|
|
|
|
awards = Array.new(5, build_stubbed(:award_emoji, user: user))
|
|
|
|
|
2017-02-22 17:54:59 -05:00
|
|
|
expect(award_user_list(awards, nil, limit: 3))
|
|
|
|
.to eq('Jane, Jane, Jane, and 2 more.')
|
2016-06-21 18:22:03 -04:00
|
|
|
end
|
|
|
|
|
2016-10-06 14:00:51 -04:00
|
|
|
it "displays the current user in front of other users" do
|
|
|
|
current_user = build_stubbed(:user)
|
|
|
|
my_award = build_stubbed(:award_emoji, user: current_user)
|
|
|
|
award = build_stubbed(:award_emoji, user: build_stubbed(:user, name: 'Jane'))
|
|
|
|
awards = Array.new(5, award).push(my_award)
|
|
|
|
|
2017-06-21 09:48:12 -04:00
|
|
|
expect(award_user_list(awards, current_user, limit: 2))
|
|
|
|
.to eq("You, Jane, and 4 more.")
|
2016-06-19 19:06:57 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-12-30 09:44:21 -05:00
|
|
|
describe '#award_state_class' do
|
2016-04-16 15:09:08 -04:00
|
|
|
let!(:upvote) { create(:award_emoji) }
|
2015-11-19 07:41:05 -05:00
|
|
|
|
2016-12-30 09:44:21 -05:00
|
|
|
it "returns disabled string for unauthenticated user" do
|
|
|
|
expect(award_state_class(AwardEmoji.all, nil)).to eq("disabled")
|
2015-11-19 07:41:05 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it "returns active string for author" do
|
2016-12-30 09:44:21 -05:00
|
|
|
expect(award_state_class(AwardEmoji.all, upvote.user)).to eq("active")
|
2015-11-19 07:41:05 -05:00
|
|
|
end
|
|
|
|
end
|
2015-12-25 05:08:53 -05:00
|
|
|
|
2016-04-07 16:04:09 -04:00
|
|
|
describe "awards_sort" do
|
2015-12-25 05:08:53 -05:00
|
|
|
it "sorts a hash so thumbsup and thumbsdown are always on top" do
|
2015-12-25 08:46:01 -05:00
|
|
|
data = { "thumbsdown" => "some value", "lifter" => "some value", "thumbsup" => "some value" }
|
2017-02-22 12:46:57 -05:00
|
|
|
expect(awards_sort(data).keys).to eq(%w(thumbsup thumbsdown lifter))
|
2015-12-25 05:08:53 -05:00
|
|
|
end
|
|
|
|
end
|
2016-04-06 10:02:22 -04:00
|
|
|
|
2016-04-07 16:04:09 -04:00
|
|
|
describe "milestone_options" do
|
2016-04-06 10:02:22 -04:00
|
|
|
it "gets closed milestone from current issue" do
|
2016-04-07 16:04:09 -04:00
|
|
|
closed_milestone = create(:closed_milestone, project: project)
|
|
|
|
milestone1 = create(:milestone, project: project)
|
|
|
|
milestone2 = create(:milestone, project: project)
|
|
|
|
issue.update_attributes(milestone_id: closed_milestone.id)
|
|
|
|
|
2016-04-06 10:02:22 -04:00
|
|
|
options = milestone_options(issue)
|
2016-04-07 16:04:09 -04:00
|
|
|
|
2016-04-06 10:02:22 -04:00
|
|
|
expect(options).to have_selector('option[selected]', text: closed_milestone.title)
|
|
|
|
expect(options).to have_selector('option', text: milestone1.title)
|
|
|
|
expect(options).to have_selector('option', text: milestone2.title)
|
|
|
|
end
|
|
|
|
end
|
2017-03-08 10:39:20 -05:00
|
|
|
|
|
|
|
describe "#link_to_discussions_to_resolve" do
|
|
|
|
describe "passing only a merge request" do
|
|
|
|
let(:merge_request) { create(:merge_request) }
|
|
|
|
|
|
|
|
it "links just the merge request" do
|
2017-06-29 13:06:35 -04:00
|
|
|
expected_path = project_merge_request_path(merge_request.project, merge_request)
|
2017-03-08 10:39:20 -05:00
|
|
|
|
|
|
|
expect(link_to_discussions_to_resolve(merge_request, nil)).to include(expected_path)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "containst the reference to the merge request" do
|
|
|
|
expect(link_to_discussions_to_resolve(merge_request, nil)).to include(merge_request.to_reference)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "when passing a discussion" do
|
|
|
|
let(:diff_note) { create(:diff_note_on_merge_request) }
|
|
|
|
let(:merge_request) { diff_note.noteable }
|
2017-03-17 15:25:52 -04:00
|
|
|
let(:discussion) { diff_note.to_discussion }
|
2017-03-08 10:39:20 -05:00
|
|
|
|
|
|
|
it "links to the merge request with first note if a single discussion was passed" do
|
|
|
|
expected_path = Gitlab::UrlBuilder.build(diff_note)
|
|
|
|
|
|
|
|
expect(link_to_discussions_to_resolve(merge_request, discussion)).to include(expected_path)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "contains both the reference to the merge request and a mention of the discussion" do
|
|
|
|
expect(link_to_discussions_to_resolve(merge_request, discussion)).to include("#{merge_request.to_reference} (discussion #{diff_note.id})")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2013-02-11 08:32:29 -05:00
|
|
|
end
|