本文整理汇总了Golang中github.com/cloudfoundry/cli/cf/api/apifakes.FakeServiceBrokerRepository.ListServiceBrokersStub方法的典型用法代码示例。如果您正苦于以下问题:Golang FakeServiceBrokerRepository.ListServiceBrokersStub方法的具体用法?Golang FakeServiceBrokerRepository.ListServiceBrokersStub怎么用?Golang FakeServiceBrokerRepository.ListServiceBrokersStub使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/cloudfoundry/cli/cf/api/apifakes.FakeServiceBrokerRepository
的用法示例。
在下文中一共展示了FakeServiceBrokerRepository.ListServiceBrokersStub方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1:
Expect(len(broker.Services[0].Plans)).To(Equal(2))
Expect(len(broker.Services)).To(Equal(2))
})
})
Describe(".GetAllServiceBrokers", func() {
It("returns an error if we cannot list all brokers", func() {
brokerRepo.ListServiceBrokersReturns(errors.New("Error finding service brokers"))
_, err := brokerBuilder.GetAllServiceBrokers()
Expect(err).To(HaveOccurred())
})
It("returns an error if we cannot list the services for a broker", func() {
brokerRepo.ListServiceBrokersStub = func(callback func(models.ServiceBroker) bool) error {
callback(serviceBroker1)
return nil
}
serviceBuilder.GetServicesForManyBrokersReturns(nil, errors.New("Cannot find services"))
_, err := brokerBuilder.GetAllServiceBrokers()
Expect(err).To(HaveOccurred())
})
It("returns all service brokers populated with their services", func() {
brokerRepo.ListServiceBrokersStub = func(callback func(models.ServiceBroker) bool) error {
callback(serviceBroker1)
return nil
}
serviceBuilder.GetServicesForManyBrokersReturns(services, nil)
示例2:
})
It("lists service brokers", func() {
repo.ListServiceBrokersStub = func(callback func(models.ServiceBroker) bool) error {
sbs := []models.ServiceBroker{
{
Name: "service-broker-to-list-a",
GUID: "service-broker-to-list-guid-a",
URL: "http://service-a-url.com",
},
{
Name: "service-broker-to-list-b",
GUID: "service-broker-to-list-guid-b",
URL: "http://service-b-url.com",
},
{
Name: "service-broker-to-list-c",
GUID: "service-broker-to-list-guid-c",
URL: "http://service-c-url.com",
},
}
for _, sb := range sbs {
callback(sb)
}
return nil
}
testcmd.RunCLICommand("service-brokers", []string{}, requirementsFactory, updateCommandDependency, false)