Skip to content

Commit 0a4e55f

Browse files
authored
Return preamble when a patch has no files (#46)
While empty patches with only a header were parsable, the parser discarded the preamble content. This meant callers had to handle this case specially. Now, if we reach the end of the input without finding a file, Parse() returns the full content of the patch as the preamble.
1 parent a00d2cc commit 0a4e55f

File tree

4 files changed

+28
-6
lines changed

4 files changed

+28
-6
lines changed

gitdiff/file_header.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ func (p *parser) ParseNextFileHeader() (*File, string, error) {
5757
return nil, "", err
5858
}
5959
}
60-
return nil, "", nil
60+
return nil, preamble.String(), nil
6161
}
6262

6363
func (p *parser) ParseGitFileHeader() (*File, error) {

gitdiff/parser.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@ func Parse(r io.Reader) ([]*File, string, error) {
3333
if err != nil {
3434
return files, preamble, err
3535
}
36+
if len(files) == 0 {
37+
preamble = pre
38+
}
3639
if file == nil {
3740
break
3841
}
@@ -50,9 +53,6 @@ func Parse(r io.Reader) ([]*File, string, error) {
5053
}
5154
}
5255

53-
if len(files) == 0 {
54-
preamble = pre
55-
}
5656
files = append(files, file)
5757
}
5858

gitdiff/parser_test.go

+16-2
Original file line numberDiff line numberDiff line change
@@ -281,15 +281,24 @@ this is another line
281281
--- could this be a header?
282282
nope, it's just some dashes
283283
`,
284-
Output: nil,
285-
Preamble: "",
284+
Output: nil,
285+
Preamble: `
286+
this is a line
287+
this is another line
288+
--- could this be a header?
289+
nope, it's just some dashes
290+
`,
286291
},
287292
"detatchedFragmentLike": {
288293
Input: `
289294
a wild fragment appears?
290295
@@ -1,3 +1,4 ~1,5 @@
291296
`,
292297
Output: nil,
298+
Preamble: `
299+
a wild fragment appears?
300+
@@ -1,3 +1,4 ~1,5 @@
301+
`,
293302
},
294303
"detatchedFragment": {
295304
Input: `
@@ -426,6 +435,11 @@ Date: Tue Apr 2 22:55:40 2019 -0700
426435
},
427436
Preamble: textPreamble,
428437
},
438+
"noFiles": {
439+
InputFile: "testdata/no_files.patch",
440+
Output: nil,
441+
Preamble: textPreamble,
442+
},
429443
"newBinaryFile": {
430444
InputFile: "testdata/new_binary_file.patch",
431445
Output: []*File{

gitdiff/testdata/no_files.patch

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
commit 5d9790fec7d95aa223f3d20936340bf55ff3dcbe
2+
Author: Morton Haypenny <[email protected]>
3+
Date: Tue Apr 2 22:55:40 2019 -0700
4+
5+
A file with multiple fragments.
6+
7+
The content is arbitrary.
8+

0 commit comments

Comments
 (0)