issues_helper_spec.rb 2.95 KB
Newer Older
Andrew8xx8's avatar
Andrew8xx8 committed
1 2 3
require "spec_helper"

describe IssuesHelper do
Andrew8xx8's avatar
Andrew8xx8 committed
4 5 6
  let(:project) { create :project }
  let(:issue) { create :issue, project: project }
  let(:ext_project) { create :redmine_project }
Andrew8xx8's avatar
Andrew8xx8 committed
7 8 9 10

  describe :title_for_issue do
    it "should return issue title if used internal tracker" do
      @project = project
11
      title_for_issue(issue.iid).should eq issue.title
Andrew8xx8's avatar
Andrew8xx8 committed
12 13 14 15 16 17 18 19 20 21 22 23 24 25
    end

    it "should always return empty string if used external tracker" do
      @project = ext_project
      title_for_issue(rand(100)).should eq ""
    end

    it "should always return empty string if project nil" do
      @project = nil

      title_for_issue(rand(100)).should eq ""
    end
  end

Andrew8xx8's avatar
Andrew8xx8 committed
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
  describe :url_for_project_issues do
    let(:project_url) { Gitlab.config.issues_tracker.redmine.project_url}
    let(:ext_expected) do
      project_url.gsub(':project_id', ext_project.id.to_s)
                 .gsub(':issues_tracker_id', ext_project.issues_tracker_id.to_s)
    end
    let(:int_expected) { polymorphic_path([project]) }

    it "should return internal path if used internal tracker" do
      @project = project
      url_for_project_issues.should match(int_expected)
    end

    it "should return path to external tracker" do
      @project = ext_project

      url_for_project_issues.should match(ext_expected)
    end

    it "should return empty string if project nil" do
      @project = nil

      url_for_project_issues.should eq ""
    end
  end

Andrew8xx8's avatar
Andrew8xx8 committed
52 53
  describe :url_for_issue do
    let(:issue_id) { 3 }
54
    let(:issues_url) { Gitlab.config.issues_tracker.redmine.issues_url}
Andrew8xx8's avatar
Andrew8xx8 committed
55 56 57 58 59 60 61 62 63
    let(:ext_expected) do
      issues_url.gsub(':id', issue_id.to_s)
        .gsub(':project_id', ext_project.id.to_s)
        .gsub(':issues_tracker_id', ext_project.issues_tracker_id.to_s)
    end
    let(:int_expected) { polymorphic_path([project, issue]) }

    it "should return internal path if used internal tracker" do
      @project = project
64
      url_for_issue(issue.iid).should match(int_expected)
Andrew8xx8's avatar
Andrew8xx8 committed
65 66 67 68 69 70 71 72 73 74 75
    end

    it "should return path to external tracker" do
      @project = ext_project

      url_for_issue(issue_id).should match(ext_expected)
    end

    it "should return empty string if project nil" do
      @project = nil

76
      url_for_issue(issue.iid).should eq ""
Andrew8xx8's avatar
Andrew8xx8 committed
77 78
    end
  end
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105

  describe :url_for_new_issue do
    let(:issues_url) { Gitlab.config.issues_tracker.redmine.new_issue_url}
    let(:ext_expected) do
      issues_url.gsub(':project_id', ext_project.id.to_s)
        .gsub(':issues_tracker_id', ext_project.issues_tracker_id.to_s)
    end
    let(:int_expected) { new_project_issue_path(project) }

    it "should return internal path if used internal tracker" do
      @project = project
      url_for_new_issue.should match(int_expected)
    end

    it "should return path to external tracker" do
      @project = ext_project

      url_for_new_issue.should match(ext_expected)
    end

    it "should return empty string if project nil" do
      @project = nil

      url_for_new_issue.should eq ""
    end
  end

Andrew8xx8's avatar
Andrew8xx8 committed
106
end