本文整理匯總了Golang中github.com/cloudfoundry/bosh-init/internal/github.com/cloudfoundry/bosh-utils/blobstore/fakes.FakeBlobstore.GetFileName方法的典型用法代碼示例。如果您正苦於以下問題:Golang FakeBlobstore.GetFileName方法的具體用法?Golang FakeBlobstore.GetFileName怎麽用?Golang FakeBlobstore.GetFileName使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/cloudfoundry/bosh-init/internal/github.com/cloudfoundry/bosh-utils/blobstore/fakes.FakeBlobstore
的用法示例。
在下文中一共展示了FakeBlobstore.GetFileName方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1:
var (
innerBlobstore *fakeblob.FakeBlobstore
logger boshlog.Logger
retryableBlobstore boshblob.Blobstore
)
BeforeEach(func() {
innerBlobstore = &fakeblob.FakeBlobstore{}
logger = boshlog.NewLogger(boshlog.LevelNone)
retryableBlobstore = boshblob.NewRetryableBlobstore(innerBlobstore, 3, logger)
})
Describe("Get", func() {
Context("when inner blobstore succeeds before maximum number of get tries (first time)", func() {
It("returns path without an error", func() {
innerBlobstore.GetFileName = "fake-path"
path, err := retryableBlobstore.Get("fake-blob-id", "fake-fingerprint")
Expect(err).ToNot(HaveOccurred())
Expect(path).To(Equal("fake-path"))
Expect(innerBlobstore.GetBlobIDs).To(Equal([]string{"fake-blob-id"}))
Expect(innerBlobstore.GetFingerprints).To(Equal([]string{"fake-fingerprint"}))
})
})
Context("when inner blobstore succeed exactly at maximum number of get tries", func() {
It("returns path without an error", func() {
innerBlobstore.GetFileNames = []string{"", "", "fake-last-path"}
innerBlobstore.GetErrs = []error{
errors.New("fake-get-err-1"),
示例2:
fixtureSHA1 = "da39a3ee5e6b4b0d3255bfef95601890afd80709"
)
var (
innerBlobstore *fakeblob.FakeBlobstore
sha1VerifiableBlobstore boshblob.Blobstore
)
BeforeEach(func() {
innerBlobstore = &fakeblob.FakeBlobstore{}
sha1VerifiableBlobstore = boshblob.NewSHA1VerifiableBlobstore(innerBlobstore)
})
Describe("Get", func() {
It("returns without an error if sha1 matches", func() {
innerBlobstore.GetFileName = fixturePath
fileName, err := sha1VerifiableBlobstore.Get("fake-blob-id", fixtureSHA1)
Expect(err).ToNot(HaveOccurred())
Expect(innerBlobstore.GetBlobIDs).To(Equal([]string{"fake-blob-id"}))
Expect(fileName).To(Equal(fixturePath))
})
It("returns error if sha1 does not match", func() {
innerBlobstore.GetFileName = fixturePath
incorrectSha1 := "some-incorrect-sha1"
_, err := sha1VerifiableBlobstore.Get("fake-blob-id", incorrectSha1)
Expect(err).To(HaveOccurred())
Expect(err.Error()).To(ContainSubstring("SHA1 mismatch"))
示例3:
blobID string
blobSHA1 string
fileName string
fakeError error
)
BeforeEach(func() {
blobstore = fakeblobstore.NewFakeBlobstore()
targetDir = "fake-target-dir"
compressor = fakecmd.NewFakeCompressor()
logger = boshlog.NewLogger(boshlog.LevelNone)
fs = fakesys.NewFakeFileSystem()
blobID = "fake-blob-id"
blobSHA1 = "fake-sha1"
fileName = "tarball.tgz"
blobstore.GetFileName = fileName
fakeError = errors.New("Initial error")
extractor = NewExtractor(fs, compressor, blobstore, logger)
})
Describe("Cleanup", func() {
BeforeEach(func() {
err := extractor.Extract(blobID, blobSHA1, targetDir)
Expect(err).ToNot(HaveOccurred())
})
It("deletes the extracted temp file", func() {
Expect(fs.FileExists(targetDir)).To(BeTrue())
err := extractor.Cleanup(blobID, targetDir)
Expect(err).ToNot(HaveOccurred())