718af22dbb
- code.tvl.fyi/tvix/castore/protos -> code.tvl.fyi/tvix/castore-go - code.tvl.fyi/tvix/store/protos -> code.tvl.fyi/tvix/store-go See cl/9791, cl/9792 for context. Change-Id: I44614c6ed40b9f52d9dcdea8e61fe2c3c830ce78 Reviewed-on: https://cl.tvl.fyi/c/depot/+/9793 Reviewed-by: Connor Brewster <cbrewster@hey.com> Tested-by: BuildkiteCI Autosubmit: flokli <flokli@flokli.de>
34 lines
710 B
Go
34 lines
710 B
Go
package importer_test
|
|
|
|
import (
|
|
"io"
|
|
"testing"
|
|
|
|
castorev1pb "code.tvl.fyi/tvix/castore-go"
|
|
"github.com/google/go-cmp/cmp"
|
|
"google.golang.org/protobuf/testing/protocmp"
|
|
"lukechampine.com/blake3"
|
|
)
|
|
|
|
func requireProtoEq(t *testing.T, expected interface{}, actual interface{}) {
|
|
if diff := cmp.Diff(expected, actual, protocmp.Transform()); diff != "" {
|
|
t.Errorf("unexpected difference:\n%v", diff)
|
|
}
|
|
}
|
|
|
|
func mustDirectoryDigest(d *castorev1pb.Directory) []byte {
|
|
dgst, err := d.Digest()
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return dgst
|
|
}
|
|
|
|
func mustBlobDigest(r io.Reader) []byte {
|
|
hasher := blake3.New(32, nil)
|
|
_, err := io.Copy(hasher, r)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return hasher.Sum([]byte{})
|
|
}
|