aboutsummaryrefslogtreecommitdiffstats
path: root/plumbing/protocol
diff options
context:
space:
mode:
authorArjun Singh <ajsinghyadav00@gmail.com>2023-10-01 14:53:58 +0530
committerArjun Singh <ajsinghyadav00@gmail.com>2023-10-02 07:22:29 +0530
commitc135ec2f6a34116f63ebbdfde25001b21d560f24 (patch)
treeac426727bc440f94b270fdd6a3c3bd706a413457 /plumbing/protocol
parent85f63b17e011872817117a38f92f08a1e01297bb (diff)
downloadgo-git-c135ec2f6a34116f63ebbdfde25001b21d560f24.tar.gz
fuzzing : fuzz testing support for oss-fuzz integration
Signed-off-by: Arjun Singh <ajsinghyadav00@gmail.com>
Diffstat (limited to 'plumbing/protocol')
-rw-r--r--plumbing/protocol/packp/uppackresp_test.go12
1 files changed, 12 insertions, 0 deletions
diff --git a/plumbing/protocol/packp/uppackresp_test.go b/plumbing/protocol/packp/uppackresp_test.go
index 8fbf924..ec56507 100644
--- a/plumbing/protocol/packp/uppackresp_test.go
+++ b/plumbing/protocol/packp/uppackresp_test.go
@@ -3,6 +3,7 @@ package packp
import (
"bytes"
"io"
+ "testing"
"github.com/go-git/go-git/v5/plumbing"
"github.com/go-git/go-git/v5/plumbing/protocol/packp/capability"
@@ -128,3 +129,14 @@ func (s *UploadPackResponseSuite) TestEncodeMultiACK(c *C) {
b := bytes.NewBuffer(nil)
c.Assert(res.Encode(b), NotNil)
}
+
+func FuzzDecoder(f *testing.F) {
+
+ f.Fuzz(func(t *testing.T, input []byte) {
+ req := NewUploadPackRequest()
+ res := NewUploadPackResponse(req)
+ defer res.Close()
+
+ res.Decode(io.NopCloser(bytes.NewReader(input)))
+ })
+}