本文整理匯總了Golang中github.com/cloudfoundry/bosh-utils/system/fakes.FakeFileSystem.MkdirAllError方法的典型用法代碼示例。如果您正苦於以下問題:Golang FakeFileSystem.MkdirAllError方法的具體用法?Golang FakeFileSystem.MkdirAllError怎麽用?Golang FakeFileSystem.MkdirAllError使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/cloudfoundry/bosh-utils/system/fakes.FakeFileSystem
的用法示例。
在下文中一共展示了FakeFileSystem.MkdirAllError方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1:
BeforeEach(func() {
fs.MkdirAll(targetDir, os.ModePerm)
})
It("decompresses the blob into the target dir", func() {
Expect(fs.FileExists(targetDir)).To(BeTrue())
Expect(compressor.DecompressFileToDirTarballPaths).ToNot(ContainElement(fileName))
err := extractor.Extract(blobID, blobSHA1, targetDir)
Expect(err).ToNot(HaveOccurred())
Expect(fs.FileExists(targetDir)).To(BeTrue())
Expect(compressor.DecompressFileToDirTarballPaths).To(ContainElement(fileName))
})
It("does not re-create the target package dir", func() {
fs.MkdirAllError = fakeError
err := extractor.Extract(blobID, blobSHA1, targetDir)
Expect(err).ToNot(HaveOccurred())
})
Context("and decompressing the blob fails", func() {
It("returns an error and doesn't remove the target dir", func() {
compressor.DecompressFileToDirErr = fakeError
Expect(fs.FileExists(targetDir)).To(BeTrue())
err := extractor.Extract(blobID, blobSHA1, targetDir)
Expect(err).To(HaveOccurred())
Expect(err.Error()).To(Equal("Decompressing compiled package: BlobID: 'fake-blob-id', BlobSHA1: 'fake-sha1': Initial error"))
Expect(fs.FileExists(targetDir)).To(BeTrue())
})
})
})
示例2:
Expect(err).To(HaveOccurred())
Expect(httpClient.GetInputs).To(HaveLen(3))
})
It("removes the downloaded file", func() {
_, err := provider.Get(source, fakeStage)
Expect(err).To(HaveOccurred())
Expect(fs.FileExists(tempDownloadFilePath)).To(BeFalse())
})
})
Context("when saving to cache fails", func() {
BeforeEach(func() {
// Creating cache base directory fails
fs.MkdirAllError = errors.New("fake-mkdir-error")
})
It("returns an error", func() {
_, err := provider.Get(source, fakeStage)
Expect(err).To(HaveOccurred())
Expect(err.Error()).To(ContainSubstring("fake-mkdir-error"))
})
It("removes the downloaded file", func() {
_, err := provider.Get(source, fakeStage)
Expect(err).To(HaveOccurred())
Expect(fs.FileExists(tempDownloadFilePath)).To(BeFalse())
})
})
})
示例3:
- fake-package-1
`,
)
})
It("returns errors for each invalid job", func() {
_, err := reader.Read()
Expect(err).To(HaveOccurred())
Expect(err.Error()).To(ContainSubstring("Reading job 'fake-job' from archive"))
Expect(err.Error()).To(ContainSubstring("Reading job 'fake-job-2' from archive"))
})
})
Context("when an extracted job path cannot be created", func() {
BeforeEach(func() {
fakeFs.MkdirAllError = errors.New("")
})
It("returns err", func() {
_, err := reader.Read()
Expect(err).To(HaveOccurred())
Expect(err.Error()).To(ContainSubstring("Creating extracted job path"))
})
})
})
Context("when the CPI release manifest is invalid", func() {
BeforeEach(func() {
fakeFs.WriteFileString("/extracted/release/release.MF", "{")
})