summaryrefslogtreecommitdiff
path: root/spec/helpers
diff options
context:
space:
mode:
authorMarin Jankovski <marin@gitlab.com>2014-05-06 19:51:56 +0200
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-05-13 15:33:38 +0300
commit6b04a5f9108c640f638afa8055e2a5b60f926d5a (patch)
treea0d58992330c6c18a933cec75ea8d0c50620eb7c /spec/helpers
parent1f1c59b61d30b76d69f0f925b43a0b96465f38ed (diff)
downloadgitlab-ce-6b04a5f9108c640f638afa8055e2a5b60f926d5a.tar.gz
Add support for Jira ticket mentions in format JIRA-123.
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> Conflicts: CHANGELOG-EE
Diffstat (limited to 'spec/helpers')
-rw-r--r--spec/helpers/gitlab_markdown_helper_spec.rb46
1 files changed, 46 insertions, 0 deletions
diff --git a/spec/helpers/gitlab_markdown_helper_spec.rb b/spec/helpers/gitlab_markdown_helper_spec.rb
index 5bd16d1c16c..8c33ceeff26 100644
--- a/spec/helpers/gitlab_markdown_helper_spec.rb
+++ b/spec/helpers/gitlab_markdown_helper_spec.rb
@@ -181,6 +181,52 @@ describe GitlabMarkdownHelper do
include_examples 'referenced object'
end
+ describe "referencing a Jira issue" do
+ let(:actual) { "Reference to JIRA-#{issue.iid}" }
+ let(:expected) { "http://jira.example/browse/JIRA-#{issue.iid}" }
+ let(:reference) { "JIRA-#{issue.iid}" }
+
+ before do
+ hash = { "jira" => { "title" => "JIRA tracker", "issues_url" => "http://jira.example/browse/:id" } }
+ Gitlab.config.stub(:issues_tracker).and_return(hash)
+ @project.stub(:issues_tracker).and_return("jira")
+ @project.stub(:issues_tracker_id).and_return("JIRA")
+ end
+
+ it "should link using a valid id" do
+ gfm(actual).should match(expected)
+ end
+
+ it "should link with adjacent text" do
+ # Wrap the reference in parenthesis
+ gfm(actual.gsub(reference, "(#{reference})")).should match(expected)
+
+ # Append some text to the end of the reference
+ gfm(actual.gsub(reference, "#{reference}, right?")).should match(expected)
+ end
+
+ it "should keep whitespace intact" do
+ actual = "Referenced #{reference} already."
+ expected = /Referenced <a.+>[^\s]+<\/a> already/
+ gfm(actual).should match(expected)
+ end
+
+ it "should not link with an invalid id" do
+ # Modify the reference string so it's still parsed, but is invalid
+ invalid_reference = actual.gsub(/(\d+)$/, "r45")
+ gfm(invalid_reference).should == invalid_reference
+ end
+
+ it "should include a title attribute" do
+ title = "Issue in JIRA tracker"
+ gfm(actual).should match(/title="#{title}"/)
+ end
+
+ it "should include standard gfm classes" do
+ gfm(actual).should match(/class="\s?gfm gfm-issue\s?"/)
+ end
+ end
+
describe "referencing a merge request" do
let(:object) { merge_request }
let(:reference) { "!#{merge_request.iid}" }