本文整理匯總了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)