Skip to content

Commit 058bfc3

Browse files
committedDec 17, 2016
Testutil to gen random CidV0
License: MIT Signed-off-by: Zander Mackie <zmackie@gmail.com>
1 parent 695c22a commit 058bfc3

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed
 

‎thirdparty/testutil/gen.go

+9
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import (
99
"testing"
1010

1111
u "gx/ipfs/Qmb912gdngC1UWwTkhuW8knyRbcWeu5kqkxBpveLmW8bSr/go-ipfs-util"
12+
cid "gx/ipfs/QmcTcsTvfaeEBRFo1TkFgT8sRmgi1n1LTZpecfVP8fzpGD/go-cid"
1213
peer "gx/ipfs/QmfMmLGoKzCHDN7cGgk64PJr4iipzidDRME8HABSJqvmhC/go-libp2p-peer"
1314
ci "gx/ipfs/QmfWDLQjGjVe4fr5CoztYW2DYYjRysMJrFe1RCsXLPTf46/go-libp2p-crypto"
1415

@@ -50,6 +51,14 @@ func RandPeerID() (peer.ID, error) {
5051
return peer.ID(h), nil
5152
}
5253

54+
func RandCidV0() (*cid.Cid, error) {
55+
buf := make([]byte, 16)
56+
if _, err := io.ReadFull(u.NewTimeSeededRand(), buf); err != nil {
57+
return &cid.Cid{}, err
58+
}
59+
return cid.NewCidV0(buf), nil
60+
}
61+
5362
func RandPeerIDFatal(t testing.TB) peer.ID {
5463
p, err := RandPeerID()
5564
if err != nil {

0 commit comments

Comments
 (0)
Please sign in to comment.