本文整理匯總了Golang中github.com/cloudfoundry/cli/cf/api/fakes.FakeServiceBrokerRepo.ListErr方法的典型用法代碼示例。如果您正苦於以下問題:Golang FakeServiceBrokerRepo.ListErr方法的具體用法?Golang FakeServiceBrokerRepo.ListErr怎麽用?Golang FakeServiceBrokerRepo.ListErr使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/cloudfoundry/cli/cf/api/fakes.FakeServiceBrokerRepo
的用法示例。
在下文中一共展示了FakeServiceBrokerRepo.ListErr方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1:
brokerRepo.FindByNameServiceBroker = serviceBroker1
broker, err := brokerBuilder.AttachSpecificBrokerToServices("my-service-broker", services)
Expect(err).NotTo(HaveOccurred())
Expect(broker.Name).To(Equal("my-service-broker"))
Expect(broker.Services[0].Label).To(Equal("my-public-service"))
Expect(len(broker.Services[0].Plans)).To(Equal(2))
Expect(broker.Services[1].Label).To(Equal("my-other-public-service"))
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.ListErr = true
_, err := brokerBuilder.GetAllServiceBrokers()
Expect(err).To(HaveOccurred())
})
It("returns an error if we cannot list the services for a broker", func() {
brokerRepo.ServiceBrokers = []models.ServiceBroker{serviceBroker1}
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.ServiceBrokers = []models.ServiceBroker{serviceBroker1}
示例2:
Expect(ui.Outputs).To(BeInDisplayOrder(
[]string{"Getting service brokers as", "my-user"},
[]string{"name", "url"},
[]string{"123-service-broker-to-list", "http://service-d-url.com"},
[]string{"a-service-broker-to-list", "http://service-c-url.com"},
[]string{"fun-service-broker-to-list", "http://service-b-url.com"},
[]string{"z-service-broker-to-list", "http://service-a-url.com"},
))
})
It("says when no service brokers were found", func() {
testcmd.RunCliCommand("service-brokers", []string{}, requirementsFactory, updateCommandDependency, false)
Expect(ui.Outputs).To(ContainSubstrings(
[]string{"Getting service brokers as", "my-user"},
[]string{"No service brokers found"},
))
})
It("reports errors when listing service brokers", func() {
repo.ListErr = true
testcmd.RunCliCommand("service-brokers", []string{}, requirementsFactory, updateCommandDependency, false)
Expect(ui.Outputs).To(ContainSubstrings(
[]string{"Getting service brokers as ", "my-user"},
))
Expect(strings.Join(ui.Outputs, "\n")).To(MatchRegexp(`FAILED\nError finding service brokers`))
})
})