BigW Consortium Gitlab

issues_helper_spec.rb 4.46 KB
Newer Older
Andrew8xx8 committed
1 2 3
require "spec_helper"

describe IssuesHelper do
Andrew8xx8 committed
4 5 6
  let(:project) { create :project }
  let(:issue) { create :issue, project: project }
  let(:ext_project) { create :redmine_project }
Andrew8xx8 committed
7

8
  describe "url_for_issue" do
9
    let(:issues_url) { ext_project.external_issue_tracker.issues_url}
10
    let(:ext_expected) { issues_url.gsub(':id', issue.iid.to_s).gsub(':project_id', ext_project.id.to_s) }
Vinnie Okada committed
11
    let(:int_expected) { polymorphic_path([@project.namespace, project, issue]) }
Andrew8xx8 committed
12

13
    it "returns internal path if used internal tracker" do
Andrew8xx8 committed
14
      @project = project
15

16
      expect(url_for_issue(issue.iid)).to match(int_expected)
Andrew8xx8 committed
17 18
    end

19
    it "returns path to external tracker" do
Andrew8xx8 committed
20 21
      @project = ext_project

22
      expect(url_for_issue(issue.iid)).to match(ext_expected)
Andrew8xx8 committed
23 24
    end

25
    it "returns empty string if project nil" do
Andrew8xx8 committed
26 27
      @project = nil

28
      expect(url_for_issue(issue.iid)).to eq ""
Andrew8xx8 committed
29
    end
30

31 32 33 34 35 36 37 38 39 40 41 42
    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

43 44 45
    describe "when external tracker was enabled and then config removed" do
      before do
        @project = ext_project
46
        allow(Gitlab.config).to receive(:issues_tracker).and_return(nil)
47 48
      end

49
      it "returns external path" do
50
        expect(url_for_issue(issue.iid)).to match(ext_expected)
51 52
      end
    end
Andrew8xx8 committed
53
  end
54

55
  describe "merge_requests_sentence" do
56 57 58 59 60 61 62 63 64
    subject { merge_requests_sentence(merge_requests)}
    let(:merge_requests) do
      [ build(:merge_request, iid: 1), build(:merge_request, iid: 2),
        build(:merge_request, iid: 3)]
    end

    it { is_expected.to eq("!1, !2, or !3") }
  end

65
  describe '#award_user_list' do
66 67 68
    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))
69

70 71
      expect(award_user_list(awards, nil, limit: 3))
        .to eq('Joe, Joe, and Joe')
72 73
    end

74
    it "displays the current user's name as 'You'" do
75 76
      user = build_stubbed(:user, name: 'Joe')
      award = build_stubbed(:award_emoji, user: user)
77

78 79
      expect(award_user_list([award], user)).to eq('You')
      expect(award_user_list([award], nil)).to eq 'Joe'
80 81
    end

82 83 84 85 86 87
    it "truncates lists" do
      user = build_stubbed(:user, name: 'Jane')
      awards = Array.new(5, build_stubbed(:award_emoji, user: user))

      expect(award_user_list(awards, nil, limit: 3))
        .to eq('Jane, Jane, Jane, and 2 more.')
88 89
    end

90 91 92 93 94 95 96 97
    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)

      expect(award_user_list(awards, current_user, limit: 2)).
        to eq("You, Jane, and 4 more.")
98 99 100
    end
  end

101 102
  describe '#award_active_class' do
    let!(:upvote) { create(:award_emoji) }
Valery Sizov committed
103 104

    it "returns empty string for unauthenticated user" do
105
      expect(award_active_class(AwardEmoji.all, nil)).to eq("")
Valery Sizov committed
106 107 108
    end

    it "returns active string for author" do
109
      expect(award_active_class(AwardEmoji.all, upvote.user)).to eq("active")
Valery Sizov committed
110 111
    end
  end
Valery Sizov committed
112

113
  describe "awards_sort" do
Valery Sizov committed
114
    it "sorts a hash so thumbsup and thumbsdown are always on top" do
Valery Sizov committed
115
      data = { "thumbsdown" => "some value", "lifter" => "some value", "thumbsup" => "some value" }
Valery Sizov committed
116 117 118
      expect(awards_sort(data).keys).to eq(["thumbsup", "thumbsdown", "lifter"])
    end
  end
119

120
  describe "milestone_options" do
121
    it "gets closed milestone from current issue" do
122 123 124 125 126
      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)

127
      options = milestone_options(issue)
128

129 130 131 132 133
      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
Andrew8xx8 committed
134
end