本文整理匯總了Golang中github.com/nttlabs/cli/cf/api/fakes.FakeSpaceRepository.FindByNameErr方法的典型用法代碼示例。如果您正苦於以下問題:Golang FakeSpaceRepository.FindByNameErr方法的具體用法?Golang FakeSpaceRepository.FindByNameErr怎麽用?Golang FakeSpaceRepository.FindByNameErr使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/nttlabs/cli/cf/api/fakes.FakeSpaceRepository
的用法示例。
在下文中一共展示了FakeSpaceRepository.FindByNameErr方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1:
})
It("warns the user that the operation was not performed", func() {
Expect(quotaRepo.UpdateCallCount()).To(Equal(0))
Expect(ui.Outputs).To(ContainSubstrings(
[]string{"Assigning space quota", "to space", "my-user"},
[]string{"FAILED"},
[]string{"This space already has an assigned space quota."},
))
})
})
})
Context("when an error occurs fetching the space", func() {
BeforeEach(func() {
spaceRepo.FindByNameErr = true
})
It("prints an error", func() {
Expect(ui.Outputs).To(ContainSubstrings(
[]string{"Assigning space quota", "to space", "my-user"},
[]string{"FAILED"},
[]string{"Error finding space by name"},
))
})
})
Context("when an error occurs fetching the quota", func() {
BeforeEach(func() {
spaceRepo.Spaces = []models.Space{
models.Space{
示例2:
runCommand("-s", "space-name", "source-app", "target-app")
targetAppName, spaceGuid := appRepo.ReadFromSpaceArgsForCall(0)
Expect(targetAppName).To(Equal("target-app"))
Expect(spaceGuid).To(Equal("model-space-guid"))
Expect(ui.Outputs).To(ContainSubstrings(
[]string{"Copying source from app", "source-app", "to target app", "target-app", "in org my-org / space space-name as my-user..."},
[]string{"Note: this may take some time"},
[]string{"OK"},
))
})
Context("Failures", func() {
It("when we cannot find the provided space", func() {
spaceRepo.FindByNameErr = true
runCommand("-s", "space-name", "source-app", "target-app")
Expect(ui.Outputs).To(ContainSubstrings(
[]string{"FAILED"},
[]string{"Error finding space by name."},
))
})
})
})
Describe("when an org and space name are passed as parameters", func() {
It("send the correct target application for the space and org", func() {
orgRepo.FindByNameReturns(models.Organization{
Spaces: []models.SpaceFields{
{