本文整理匯總了Golang中camlistore/org/pkg/test.Blob類的典型用法代碼示例。如果您正苦於以下問題:Golang Blob類的具體用法?Golang Blob怎麽用?Golang Blob使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
在下文中一共展示了Blob類的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: TestHandlerRightRef
func TestHandlerRightRef(t *testing.T) {
b := test.Blob{Contents: "Foo"}
storage := new(test.Fetcher)
ref, err := schema.WriteFileFromReader(storage, "", b.Reader())
if err != nil {
t.Fatal(err)
}
if err != nil {
t.Fatal(err)
}
ts := httptest.NewServer(createVideothumbnailHandler(ref, storage))
defer ts.Close()
resp, err := http.Get(ts.URL + "/" + ref.String())
if err != nil {
t.Fatal(err)
}
if resp.StatusCode != 200 {
t.Fatalf("expected 200 status: %v", resp)
}
content, err := ioutil.ReadAll(resp.Body)
if err != nil {
t.Fatal(err)
}
if string(content) != b.Contents {
t.Errorf("excepted handler to serve data")
}
}
示例2: mustReceive
func mustReceive(t *testing.T, dst blobserver.Storage, tb *test.Blob) blob.SizedRef {
tbRef := tb.BlobRef()
sb, err := blobserver.Receive(dst, tbRef, tb.Reader())
if err != nil {
t.Fatalf("Receive: %v", err)
}
if int(sb.Size) != len(tb.Contents) {
t.Fatalf("size = %d; want %d", sb.Size, len(tb.Contents))
}
if sb.Ref != tbRef {
t.Fatal("wrong blob received")
}
return sb
}
示例3: checkShard
// checkShard iterates through shards and find the blob. error if it is not found in expectShard, found somewhere else, or not found at all
func (sto testStorage) checkShard(b *test.Blob, expectShard int) {
for shardN, shard := range sto.shards {
_, _, err := shard.Fetch(b.BlobRef())
if err != nil && shardN == expectShard {
sto.t.Errorf("expected ref %v in shard %d, but didn't find it there", b.BlobRef(), expectShard)
continue
}
if err != nil {
// node wasn't found here, as expected
continue
}
if shardN != expectShard {
sto.t.Errorf("found ref %v in shard %d, expected in shard %d", b.BlobRef(), shardN, expectShard)
}
// node was found, and we expected it
}
}
示例4: all
func all(blob *test.Blob) *BytesPart {
return part(blob, 0, uint64(blob.Size()))
}
示例5: part
func part(blob *test.Blob, offset, size uint64) *BytesPart {
return &BytesPart{BlobRef: blob.BlobRef(), Size: size, Offset: offset}
}