本文整理匯總了Golang中github.com/concourse/s3-resource/fakes.FakeS3Client.UploadFileReturns方法的典型用法代碼示例。如果您正苦於以下問題:Golang FakeS3Client.UploadFileReturns方法的具體用法?Golang FakeS3Client.UploadFileReturns怎麽用?Golang FakeS3Client.UploadFileReturns使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/concourse/s3-resource/fakes.FakeS3Client
的用法示例。
在下文中一共展示了FakeS3Client.UploadFileReturns方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1:
Ω(s3client.UploadFileCallCount()).Should(Equal(1))
bucketName, remotePath, localPath := s3client.UploadFileArgsForCall(0)
Ω(bucketName).Should(Equal("bucket-name"))
Ω(remotePath).Should(Equal("folder-123/file.tgz"))
Ω(localPath).Should(Equal(filepath.Join(sourceDir, "a/file-123.tgz")))
Ω(response.Version.Path).Should(Equal("folder-123/file.tgz"))
Ω(response.Metadata[0].Name).Should(Equal("filename"))
Ω(response.Metadata[0].Value).Should(Equal("file.tgz"))
})
Context("when using versioned buckets", func() {
BeforeEach(func() {
s3client.UploadFileReturns("123", nil)
})
It("renames the local file to match the name of the versioned file", func() {
localFileName := "not-the-same-name-as-versioned-file.tgz"
remoteFileName := "versioned-file.tgz"
request.Params.From = localFileName
request.Source.VersionedFile = remoteFileName
createFile(localFileName)
response, err := command.Run(sourceDir, request)
Ω(err).ShouldNot(HaveOccurred())
Ω(s3client.UploadFileCallCount()).Should(Equal(1))