commit_spec.rb 3.5 KB
Newer Older
R
Robert Speicher 已提交
1 2 3
require 'spec_helper'

describe Commit do
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
  let(:project) { create(:project) }
  let(:commit)  { project.commit }

  describe 'modules' do
    subject { described_class }

    it { is_expected.to include_module(Mentionable) }
    it { is_expected.to include_module(Participable) }
    it { is_expected.to include_module(Referable) }
    it { is_expected.to include_module(StaticModel) }
  end

  describe '#to_reference' do
    it 'returns a String reference to the object' do
      expect(commit.to_reference).to eq commit.id
    end

    it 'supports a cross-project reference' do
      cross = double('project')
      expect(commit.to_reference(cross)).to eq "#{project.to_reference}@#{commit.id}"
    end
  end
R
Robert Speicher 已提交
26

27 28
  describe '#title' do
    it "returns no_commit_message when safe_message is blank" do
29 30
      allow(commit).to receive(:safe_message).and_return('')
      expect(commit.title).to eq("--no commit message")
31
    end
R
Robert Speicher 已提交
32

33
    it "truncates a message without a newline at 80 characters" do
D
Dmitriy Zaporozhets 已提交
34
      message = 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec sodales id felis id blandit. Vivamus egestas lacinia lacus, sed rutrum mauris.'
R
Robert Speicher 已提交
35

36
      allow(commit).to receive(:safe_message).and_return(message)
37
      expect(commit.title).to eq("#{message[0..79]}…")
38
    end
R
Robert Speicher 已提交
39

40 41
    it "truncates a message with a newline before 80 characters at the newline" do
      message = commit.safe_message.split(" ").first
R
Robert Speicher 已提交
42

43 44
      allow(commit).to receive(:safe_message).and_return(message + "\n" + message)
      expect(commit.title).to eq(message)
45
    end
R
Robert Speicher 已提交
46

D
Dmitriy Zaporozhets 已提交
47 48 49 50 51
    it "does not truncates a message with a newline after 80 but less 100 characters" do
      message =<<eos
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec sodales id felis id blandit.
Vivamus egestas lacinia lacus, sed rutrum mauris.
eos
R
Robert Speicher 已提交
52

53 54
      allow(commit).to receive(:safe_message).and_return(message)
      expect(commit.title).to eq(message.split("\n").first)
R
Robert Speicher 已提交
55 56
    end
  end
57 58 59 60

  describe "delegation" do
    subject { commit }

61 62 63 64 65 66 67 68 69 70 71
    it { is_expected.to respond_to(:message) }
    it { is_expected.to respond_to(:authored_date) }
    it { is_expected.to respond_to(:committed_date) }
    it { is_expected.to respond_to(:committer_email) }
    it { is_expected.to respond_to(:author_email) }
    it { is_expected.to respond_to(:parents) }
    it { is_expected.to respond_to(:date) }
    it { is_expected.to respond_to(:diffs) }
    it { is_expected.to respond_to(:tree) }
    it { is_expected.to respond_to(:id) }
    it { is_expected.to respond_to(:to_patch) }
72
  end
73 74 75

  describe '#closes_issues' do
    let(:issue) { create :issue, project: project }
76 77
    let(:other_project) { create :project, :public }
    let(:other_issue) { create :issue, project: other_project }
78 79

    it 'detects issues that this commit is marked as closing' do
80
      allow(commit).to receive(:safe_message).and_return("Fixes ##{issue.iid}")
81
      expect(commit.closes_issues).to eq([issue])
82
    end
83 84 85

    it 'does not detect issues from other projects' do
      ext_ref = "#{other_project.path_with_namespace}##{other_issue.iid}"
86
      allow(commit).to receive(:safe_message).and_return("Fixes #{ext_ref}")
87
      expect(commit.closes_issues).to be_empty
88
    end
89 90 91
  end

  it_behaves_like 'a mentionable' do
D
Douwe Maan 已提交
92
    subject { create(:project).commit }
93

D
Douwe Maan 已提交
94
    let(:author) { create(:user, email: subject.author_email) }
95
    let(:backref_text) { "commit #{subject.id}" }
96 97 98
    let(:set_mentionable_text) do
      ->(txt) { allow(subject).to receive(:safe_message).and_return(txt) }
    end
99 100 101 102

    # Include the subject in the repository stub.
    let(:extra_commits) { [subject] }
  end
R
Robert Speicher 已提交
103
end