當前位置: 首頁>>代碼示例>>Golang>>正文


Golang DropletRunner.RemoveDroplet方法代碼示例

本文整理匯總了Golang中github.com/cloudfoundry-incubator/lattice/ltc/droplet_runner.DropletRunner.RemoveDroplet方法的典型用法代碼示例。如果您正苦於以下問題:Golang DropletRunner.RemoveDroplet方法的具體用法?Golang DropletRunner.RemoveDroplet怎麽用?Golang DropletRunner.RemoveDroplet使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在github.com/cloudfoundry-incubator/lattice/ltc/droplet_runner.DropletRunner的用法示例。


在下文中一共展示了DropletRunner.RemoveDroplet方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。

示例1:

					Annotation: "",
				},
				{
					Annotation: "junk",
				},
				{
					Annotation: `{
						"droplet_source": {
							"droplet_name": "other-drippy"
						}
					}`,
				},
			}
			fakeAppExaminer.ListAppsReturns(appInfos, nil)

			Expect(dropletRunner.RemoveDroplet("drippy")).To(Succeed())

			Expect(fakeBlobStore.ListCallCount()).To(Equal(1))

			Expect(fakeBlobStore.DeleteCallCount()).To(Equal(3))
			Expect(fakeBlobStore.DeleteArgsForCall(0)).To(Equal("drippy/bits.zip"))
			Expect(fakeBlobStore.DeleteArgsForCall(1)).To(Equal("drippy/droplet.tgz"))
			Expect(fakeBlobStore.DeleteArgsForCall(2)).To(Equal("drippy/result.json"))

		})

		It("returns an error when querying the blob store fails", func() {
			fakeBlobStore.ListReturns(nil, errors.New("some error"))

			err := dropletRunner.RemoveDroplet("drippy")
			Expect(err).To(MatchError("some error"))
開發者ID:datachand,項目名稱:lattice,代碼行數:31,代碼來源:droplet_runner_test.go

示例2:

					}`,
				},
				{
					Annotation: `{
						"droplet_source": {
							"host": "blob-host",
							"port": 7474,
							"bucket_name": "bucket-name",
							"droplet_name": "other-drippy"
						}
					}`,
				},
			}
			fakeAppExaminer.ListAppsReturns(appInfos, nil)

			err := dropletRunner.RemoveDroplet("drippy")
			Expect(err).ToNot(HaveOccurred())

			Expect(fakeBlobBucket.ListCallCount()).To(Equal(1))
			prefix, _, _, _ := fakeBlobBucket.ListArgsForCall(0)
			Expect(prefix).To(Equal("drippy/"))

			Expect(fakeBlobBucket.DelCallCount()).To(Equal(3))
		})

		It("returns an error when querying the blob store fails", func() {
			config.SetBlobTarget("blob-host", 7474, "access-key", "secret-key", "bucket-name")
			config.Save()

			fakeBlobBucket.ListReturns(nil, errors.New("boom"))
開發者ID:thomasdarimont,項目名稱:lattice,代碼行數:30,代碼來源:droplet_runner_test.go


注:本文中的github.com/cloudfoundry-incubator/lattice/ltc/droplet_runner.DropletRunner.RemoveDroplet方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。