From 7847657e0820af98120031f719b8ede635ad8c07 Mon Sep 17 00:00:00 2001 From: Runxi Yu Date: Wed, 25 Mar 2026 14:49:17 +0000 Subject: object: Split each object type into its own package --- object/blob/parse_test.go | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 object/blob/parse_test.go (limited to 'object/blob/parse_test.go') diff --git a/object/blob/parse_test.go b/object/blob/parse_test.go new file mode 100644 index 00000000..09d5d5d0 --- /dev/null +++ b/object/blob/parse_test.go @@ -0,0 +1,30 @@ +package blob_test + +import ( + "bytes" + "testing" + + "codeberg.org/lindenii/furgit/internal/testgit" + "codeberg.org/lindenii/furgit/object/blob" + objectid "codeberg.org/lindenii/furgit/object/id" +) + +func TestBlobParseFromGit(t *testing.T) { + t.Parallel() + testgit.ForEachAlgorithm(t, func(t *testing.T, algo objectid.Algorithm) { //nolint:thelper + testRepo := testgit.NewRepo(t, testgit.RepoOptions{ObjectFormat: algo, Bare: true}) + body := []byte("hello\nblob\n") + blobID := testRepo.HashObject(t, "blob", body) + + rawBody := testRepo.CatFile(t, "blob", blobID) + + parsed, err := blob.Parse(rawBody) + if err != nil { + t.Fatalf("ParseBlob: %v", err) + } + + if !bytes.Equal(parsed.Data, body) { + t.Fatalf("blob body mismatch") + } + }) +} -- cgit v1.3.1-10-gc9f91