diff options
author | Rémy Coutable <remy@rymai.me> | 2016-09-21 10:15:00 +0000 |
---|---|---|
committer | Rémy Coutable <remy@rymai.me> | 2016-09-21 10:15:00 +0000 |
commit | a25ac8a89b839653e469693d77b931b158731cca (patch) | |
tree | b1f5354d021a7c70b39164194028eeab10e87a47 /spec | |
parent | dd12ffc006b6ad07d1c17b223ae9eea07912d2e1 (diff) | |
parent | 02d69091bc1d2ea4d14731b103efd5a5e2c9f040 (diff) | |
download | gitlab-ce-a25ac8a89b839653e469693d77b931b158731cca.tar.gz |
Merge branch 'add_spec_for_committer_hash' into 'master'
Add spec covering 'committer_hash'
Adds a missing spec from changes added in !5822
See merge request !6433
Diffstat (limited to 'spec')
-rw-r--r-- | spec/lib/gitlab/git_spec.rb | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/spec/lib/gitlab/git_spec.rb b/spec/lib/gitlab/git_spec.rb new file mode 100644 index 00000000000..219198eff60 --- /dev/null +++ b/spec/lib/gitlab/git_spec.rb @@ -0,0 +1,45 @@ +require 'spec_helper' + +describe Gitlab::Git, lib: true do + let(:committer_email) { FFaker::Internet.email } + + # I have to remove periods from the end of the name + # This happened when the user's name had a suffix (i.e. "Sr.") + # This seems to be what git does under the hood. For example, this commit: + # + # $ git commit --author='Foo Sr. <foo@example.com>' -m 'Where's my trailing period?' + # + # results in this: + # + # $ git show --pretty + # ... + # Author: Foo Sr <foo@example.com> + # ... + let(:committer_name) { FFaker::Name.name.chomp("\.") } + + describe 'committer_hash' do + it "returns a hash containing the given email and name" do + committer_hash = Gitlab::Git::committer_hash(email: committer_email, name: committer_name) + + expect(committer_hash[:email]).to eq(committer_email) + expect(committer_hash[:name]).to eq(committer_name) + expect(committer_hash[:time]).to be_a(Time) + end + + context 'when email is nil' do + it "returns nil" do + committer_hash = Gitlab::Git::committer_hash(email: nil, name: committer_name) + + expect(committer_hash).to be_nil + end + end + + context 'when name is nil' do + it "returns nil" do + committer_hash = Gitlab::Git::committer_hash(email: committer_email, name: nil) + + expect(committer_hash).to be_nil + end + end + end +end |