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

describe Commit do
D
Dmitriy Zaporozhets 已提交
4
  let(:project) { create :project }
5
  let(:commit) { project.repository.commit }
R
Robert Speicher 已提交
6

7 8 9 10 11
  describe '#title' do
    it "returns no_commit_message when safe_message is blank" do
      commit.stub(:safe_message).and_return('')
      commit.title.should == "--no commit message"
    end
R
Robert Speicher 已提交
12

13
    it "truncates a message without a newline at 80 characters" do
14
      message = commit.safe_message * 10
R
Robert Speicher 已提交
15

16
      commit.stub(:safe_message).and_return(message)
17
      commit.title.should == "#{message[0..79]}…"
18
    end
R
Robert Speicher 已提交
19

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

23 24 25
      commit.stub(:safe_message).and_return(message + "\n" + message)
      commit.title.should == message
    end
R
Robert Speicher 已提交
26

27 28
    it "truncates a message with a newline after 80 characters at 70 characters" do
      message = (commit.safe_message * 10) + "\n"
R
Robert Speicher 已提交
29

30
      commit.stub(:safe_message).and_return(message)
31
      commit.title.should == "#{message[0..79]}…"
R
Robert Speicher 已提交
32 33
    end
  end
34 35 36 37 38 39 40

  describe "delegation" do
    subject { commit }

    it { should respond_to(:message) }
    it { should respond_to(:authored_date) }
    it { should respond_to(:committed_date) }
41 42
    it { should respond_to(:committer_email) }
    it { should respond_to(:author_email) }
43 44 45 46 47 48 49
    it { should respond_to(:parents) }
    it { should respond_to(:date) }
    it { should respond_to(:diffs) }
    it { should respond_to(:tree) }
    it { should respond_to(:id) }
    it { should respond_to(:to_patch) }
  end
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68

  describe '#closes_issues' do
    let(:issue) { create :issue, project: project }

    it 'detects issues that this commit is marked as closing' do
      commit.stub(issue_closing_regex: /^([Cc]loses|[Ff]ixes) #\d+/, safe_message: "Fixes ##{issue.iid}")
      commit.closes_issues(project).should == [issue]
    end
  end

  it_behaves_like 'a mentionable' do
    let(:subject) { commit }
    let(:mauthor) { create :user, email: commit.author_email }
    let(:backref_text) { "commit #{subject.sha[0..5]}" }
    let(:set_mentionable_text) { ->(txt){ subject.stub(safe_message: txt) } }

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