debian-mirror-gitlab/spec/lib/gitlab/git/blame_spec.rb

80 lines
2.1 KiB
Ruby
Raw Normal View History

2017-08-17 22:00:37 +05:30
# coding: utf-8
require "spec_helper"
describe Gitlab::Git::Blame, seed_helper: true do
2018-03-17 18:26:18 +05:30
let(:repository) { Gitlab::Git::Repository.new('default', TEST_REPO_PATH, '') }
2017-08-17 22:00:37 +05:30
let(:blame) do
Gitlab::Git::Blame.new(repository, SeedRepo::Commit::ID, "CONTRIBUTING.md")
end
2017-09-10 17:25:29 +05:30
shared_examples 'blaming a file' do
context "each count" do
it do
data = []
blame.each do |commit, line|
data << {
commit: commit,
line: line
}
end
2017-08-17 22:00:37 +05:30
2017-09-10 17:25:29 +05:30
expect(data.size).to eq(95)
expect(data.first[:commit]).to be_kind_of(Gitlab::Git::Commit)
expect(data.first[:line]).to eq("# Contribute to GitLab")
expect(data.first[:line]).to be_utf8
end
2017-08-17 22:00:37 +05:30
end
2017-09-10 17:25:29 +05:30
context "ISO-8859 encoding" do
let(:blame) do
Gitlab::Git::Blame.new(repository, SeedRepo::EncodingCommit::ID, "encoding/iso8859.txt")
2017-08-17 22:00:37 +05:30
end
2017-09-10 17:25:29 +05:30
it 'converts to UTF-8' do
data = []
blame.each do |commit, line|
data << {
commit: commit,
line: line
}
end
2017-08-17 22:00:37 +05:30
2017-09-10 17:25:29 +05:30
expect(data.size).to eq(1)
expect(data.first[:commit]).to be_kind_of(Gitlab::Git::Commit)
expect(data.first[:line]).to eq("Ä ü")
expect(data.first[:line]).to be_utf8
end
2017-08-17 22:00:37 +05:30
end
2017-09-10 17:25:29 +05:30
context "unknown encoding" do
let(:blame) do
Gitlab::Git::Blame.new(repository, SeedRepo::EncodingCommit::ID, "encoding/iso8859.txt")
end
it 'converts to UTF-8' do
expect(CharlockHolmes::EncodingDetector).to receive(:detect).and_return(nil)
data = []
blame.each do |commit, line|
data << {
2017-08-17 22:00:37 +05:30
commit: commit,
line: line
2017-09-10 17:25:29 +05:30
}
end
2017-08-17 22:00:37 +05:30
2017-09-10 17:25:29 +05:30
expect(data.size).to eq(1)
expect(data.first[:commit]).to be_kind_of(Gitlab::Git::Commit)
expect(data.first[:line]).to eq(" ")
expect(data.first[:line]).to be_utf8
end
2017-08-17 22:00:37 +05:30
end
end
2017-09-10 17:25:29 +05:30
context 'when Gitaly blame feature is enabled' do
it_behaves_like 'blaming a file'
end
2018-03-17 18:26:18 +05:30
context 'when Gitaly blame feature is disabled', :skip_gitaly_mock do
2017-09-10 17:25:29 +05:30
it_behaves_like 'blaming a file'
end
2017-08-17 22:00:37 +05:30
end