本文整理汇总了Golang中github.com/cloudfoundry-incubator/lattice/ltc/config/target_verifier/fake_target_verifier.FakeTargetVerifier.VerifyBlobTargetReturns方法的典型用法代码示例。如果您正苦于以下问题:Golang FakeTargetVerifier.VerifyBlobTargetReturns方法的具体用法?Golang FakeTargetVerifier.VerifyBlobTargetReturns怎么用?Golang FakeTargetVerifier.VerifyBlobTargetReturns使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/cloudfoundry-incubator/lattice/ltc/config/target_verifier/fake_target_verifier.FakeTargetVerifier
的用法示例。
在下文中一共展示了FakeTargetVerifier.VerifyBlobTargetReturns方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1:
Expect(outputBuffer).To(test_helpers.Say("Bucket Name:\tbucket"))
})
It("alerts the user if no target is set", func() {
config.SetBlobTarget("", 0, "", "", "")
config.Save()
test_helpers.ExecuteCommandWithArgs(targetBlobCommand, []string{})
Expect(outputBuffer).To(test_helpers.SayLine("Blob target not set"))
})
})
Context("setting the blob target", func() {
It("sets the blob target and credentials", func() {
fakeTargetVerifier.VerifyBlobTargetReturns(true, nil)
commandFinishChan := test_helpers.AsyncExecuteCommandWithArgs(targetBlobCommand, []string{"192.168.11.11:8980"})
Eventually(outputBuffer).Should(test_helpers.Say("Access Key: "))
stdinWriter.Write([]byte("yaykey\n"))
Eventually(outputBuffer).Should(test_helpers.Say("Secret Key: "))
stdinWriter.Write([]byte("superserial\n"))
Eventually(outputBuffer).Should(test_helpers.Say("Bucket Name [condenser-bucket]: "))
stdinWriter.Write([]byte("bhuket\n"))
Eventually(commandFinishChan).Should(BeClosed())
Expect(fakeTargetVerifier.VerifyBlobTargetCallCount()).To(Equal(1))
host, port, accessKey, secretKey, bucketName := fakeTargetVerifier.VerifyBlobTargetArgsForCall(0)
Expect(host).To(Equal("192.168.11.11"))
示例2:
Describe("UploadBits", func() {
Context("when the archive path is a file and exists", func() {
var (
tmpFile *os.File
err error
)
BeforeEach(func() {
tmpDir := os.TempDir()
tmpFile, err = ioutil.TempFile(tmpDir, "tmp_file")
Expect(err).NotTo(HaveOccurred())
err = ioutil.WriteFile(tmpFile.Name(), []byte(`{"Value":"test value"}`), 0700)
Expect(err).NotTo(HaveOccurred())
fakeTargetVerifier.VerifyBlobTargetReturns(true, nil)
})
AfterEach(func() {
Expect(os.Remove(tmpFile.Name())).To(Succeed())
})
It("uploads the file to the bucket", func() {
err = dropletRunner.UploadBits("droplet-name", tmpFile.Name())
Expect(err).NotTo(HaveOccurred())
Expect(fakeTargetVerifier.VerifyBlobTargetCallCount()).To(Equal(1))
Expect(fakeBlobBucket.PutReaderCallCount()).To(Equal(1))
path, reader, length, contType, perm, options := fakeBlobBucket.PutReaderArgsForCall(0)