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