shithub: furgit

ref: 18c460be20d78813afafd04077e9970f1d22f364
dir: /object/blob_serialize_test.go/

View raw version
package object_test

import (
	"testing"

	"codeberg.org/lindenii/furgit/internal/testgit"
	"codeberg.org/lindenii/furgit/object"
	"codeberg.org/lindenii/furgit/oid"
)

func TestBlobSerialize(t *testing.T) {
	testgit.ForEachAlgorithm(t, func(t *testing.T, algo oid.Algorithm) {
		repo := testgit.NewBareRepo(t, algo)
		body := []byte("hello\nblob\n")
		wantID := repo.HashObject(t, "blob", body)

		blob := &object.Blob{Data: body}
		rawObj, err := blob.Serialize()
		if err != nil {
			t.Fatalf("Serialize: %v", err)
		}
		gotID := algo.Sum(rawObj)
		if gotID != wantID {
			t.Fatalf("object id mismatch: got %s want %s", gotID, wantID)
		}
	})
}