本文整理汇总了Golang中github.com/cloudfoundry/cli/cf/api/fakes.FakeServicePlanRepo.ListPlansFromManyServicesError方法的典型用法代码示例。如果您正苦于以下问题:Golang FakeServicePlanRepo.ListPlansFromManyServicesError方法的具体用法?Golang FakeServicePlanRepo.ListPlansFromManyServicesError怎么用?Golang FakeServicePlanRepo.ListPlansFromManyServicesError使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/cloudfoundry/cli/cf/api/fakes.FakeServicePlanRepo
的用法示例。
在下文中一共展示了FakeServicePlanRepo.ListPlansFromManyServicesError方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1:
plan1, plan2,
}
serviceGuids := []string{"service-guid1", "service-guid2"}
plans, err := builder.GetPlansForManyServicesWithOrgs(serviceGuids)
Expect(err).ToNot(HaveOccurred())
Expect(orgRepo.GetManyOrgsByGuidCallCount()).To(Equal(1))
Expect(orgRepo.GetManyOrgsByGuidArgsForCall(0)).To(ConsistOf("org1-guid", "org2-guid"))
Expect(len(plans)).To(Equal(2))
Expect(plans[0].Name).To(Equal("service-plan1"))
Expect(plans[0].OrgNames).To(Equal([]string{"org1", "org2"}))
Expect(plans[1].Name).To(Equal("service-plan2"))
})
It("returns errors from the service plan repo", func() {
planRepo.ListPlansFromManyServicesError = errors.New("Error")
serviceGuids := []string{"service-guid1", "service-guid2"}
_, err := builder.GetPlansForManyServicesWithOrgs(serviceGuids)
Expect(err).To(HaveOccurred())
})
})
Describe(".GetPlansForService", func() {
It("returns all the plans for the service with the provided guid", func() {
plans, err := builder.GetPlansForService("service-guid1")
Expect(err).ToNot(HaveOccurred())
Expect(len(plans)).To(Equal(2))
Expect(plans[0].Name).To(Equal("service-plan1"))
Expect(plans[0].OrgNames).To(BeNil())
Expect(plans[1].Name).To(Equal("service-plan2"))