Commit 30da54df authored by Sean McGivern's avatar Sean McGivern

Merge branch 'osw-ignore-diff-header-when-persisting-diff-hunk' into 'master'

Adjust insufficient diff hunks being persisted on NoteDiffFile

See merge request gitlab-org/gitlab-ce!19399
parents fb3f95bc f4673919
---
title: Adjust insufficient diff hunks being persisted on NoteDiffFile
merge_request:
author:
type: fixed
...@@ -78,9 +78,12 @@ module Gitlab ...@@ -78,9 +78,12 @@ module Gitlab
# Returns the raw diff content up to the given line index # Returns the raw diff content up to the given line index
def diff_hunk(diff_line) def diff_hunk(diff_line)
# Adding 2 because of the @@ diff header and Enum#take should consider diff_line_index = diff_line.index
# an extra line, because we're passing an index. # @@ (match) header is not kept if it's found in the top of the file,
raw_diff.each_line.take(diff_line.index + 2).join # therefore we should keep an extra line on this scenario.
diff_line_index += 1 unless diff_lines.first.match?
diff_lines.select { |line| line.index <= diff_line_index }.map(&:text).join("\n")
end end
def old_sha def old_sha
......
...@@ -53,6 +53,10 @@ module Gitlab ...@@ -53,6 +53,10 @@ module Gitlab
%w[match new-nonewline old-nonewline].include?(type) %w[match new-nonewline old-nonewline].include?(type)
end end
def match?
type == :match
end
def discussable? def discussable?
!meta? !meta?
end end
......
...@@ -470,56 +470,69 @@ describe Gitlab::Diff::File do ...@@ -470,56 +470,69 @@ describe Gitlab::Diff::File do
end end
describe '#diff_hunk' do describe '#diff_hunk' do
let(:raw_diff) do context 'when first line is a match' do
<<EOS let(:raw_diff) do
@@ -6,12 +6,18 @@ module Popen <<~EOS
--- a/files/ruby/popen.rb
def popen(cmd, path=nil) +++ b/files/ruby/popen.rb
unless cmd.is_a?(Array) @@ -6,12 +6,18 @@ module Popen
- raise "System commands must be given as an array of strings"
+ raise RuntimeError, "System commands must be given as an array of strings" def popen(cmd, path=nil)
end unless cmd.is_a?(Array)
- raise "System commands must be given as an array of strings"
path ||= Dir.pwd + raise RuntimeError, "System commands must be given as an array of strings"
- vars = { "PWD" => path } end
- options = { chdir: path } EOS
+ end
+ vars = {
+ "PWD" => path it 'returns raw diff up to given line index' do
+ } allow(diff_file).to receive(:raw_diff) { raw_diff }
+ diff_line = instance_double(Gitlab::Diff::Line, index: 4)
+ options = {
+ chdir: path diff_hunk = <<~EOS
+ } @@ -6,12 +6,18 @@ module Popen
unless File.directory?(path) def popen(cmd, path=nil)
FileUtils.mkdir_p(path) unless cmd.is_a?(Array)
@@ -19,6 +25,7 @@ module Popen - raise "System commands must be given as an array of strings"
+ raise RuntimeError, "System commands must be given as an array of strings"
@cmd_output = "" EOS
@cmd_status = 0
+ expect(diff_file.diff_hunk(diff_line)).to eq(diff_hunk.strip)
Open3.popen3(vars, *cmd, options) do |stdin, stdout, stderr, wait_thr| end
@cmd_output << stdout.read end
@cmd_output << stderr.read
EOS context 'when first line is not a match' do
end let(:raw_diff) do
<<~EOS
it 'returns raw diff up to given line index' do @@ -1,4 +1,4 @@
allow(diff_file).to receive(:raw_diff) { raw_diff } -Copyright (c) 2011-2017 GitLab B.V.
diff_line = instance_double(Gitlab::Diff::Line, index: 5) +Copyright (c) 2011-2019 GitLab B.V.
diff_hunk = <<EOS With regard to the GitLab Software:
@@ -6,12 +6,18 @@ module Popen
@@ -9,17 +9,21 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
def popen(cmd, path=nil) copies of the Software, and to permit persons to whom the Software is
unless cmd.is_a?(Array) furnished to do so, subject to the following conditions:
- raise "System commands must be given as an array of strings" EOS
+ raise RuntimeError, "System commands must be given as an array of strings" end
end
EOS it 'returns raw diff up to given line index' do
allow(diff_file).to receive(:raw_diff) { raw_diff }
expect(diff_file.diff_hunk(diff_line)).to eq(diff_hunk) diff_line = instance_double(Gitlab::Diff::Line, index: 5)
diff_hunk = <<~EOS
-Copyright (c) 2011-2017 GitLab B.V.
+Copyright (c) 2011-2019 GitLab B.V.
With regard to the GitLab Software:
@@ -9,17 +9,21 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
EOS
expect(diff_file.diff_hunk(diff_line)).to eq(diff_hunk.strip)
end
end end
end end
end end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment