Fix binary encoding error on MR diffs

This commit is contained in:
James Lopez 2017-06-06 16:40:07 +00:00 committed by Rémy Coutable
parent b9fcc48aef
commit 6b53add3f9
3 changed files with 16 additions and 1 deletions

View File

@ -0,0 +1,4 @@
---
title: Fix binary encoding error on MR diffs
merge_request: 11929
author:

View File

@ -38,7 +38,7 @@ module Gitlab
def encode_utf8(message)
detect = CharlockHolmes::EncodingDetector.detect(message)
if detect
if detect && detect[:encoding]
begin
CharlockHolmes::Converter.convert(message, detect[:encoding], 'UTF-8')
rescue ArgumentError => e

View File

@ -139,4 +139,15 @@ describe MergeRequestDiff, models: true do
expect(subject.commits_count).to eq 2
end
end
describe '#utf8_st_diffs' do
it 'does not raise error when a hash value is in binary' do
subject.st_diffs = [
{ diff: "\0" },
{ diff: "\x05\x00\x68\x65\x6c\x6c\x6f" }
]
expect { subject.utf8_st_diffs }.not_to raise_error
end
end
end