本文整理匯總了Golang中github.com/cloudfoundry/cli/cf/api/quotas/fakes.FakeQuotaRepository.FindByNameArgsForCall方法的典型用法代碼示例。如果您正苦於以下問題:Golang FakeQuotaRepository.FindByNameArgsForCall方法的具體用法?Golang FakeQuotaRepository.FindByNameArgsForCall怎麽用?Golang FakeQuotaRepository.FindByNameArgsForCall使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/cloudfoundry/cli/cf/api/quotas/fakes.FakeQuotaRepository
的用法示例。
在下文中一共展示了FakeQuotaRepository.FindByNameArgsForCall方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1:
It("passes requirements when provided two args", func() {
passed := runCommand("my-org", "my-quota")
Expect(passed).To(BeTrue())
Expect(requirementsFactory.OrganizationName).To(Equal("my-org"))
})
It("assigns a quota to an org", func() {
org := models.Organization{}
org.Name = "my-org"
org.Guid = "my-org-guid"
quota := models.QuotaFields{Name: "my-quota", Guid: "my-quota-guid"}
quotaRepo.FindByNameReturns(quota, nil)
requirementsFactory.Organization = org
runCommand("my-org", "my-quota")
Expect(ui.Outputs).To(ContainSubstrings(
[]string{"Setting quota", "my-quota", "my-org", "my-user"},
[]string{"OK"},
))
Expect(quotaRepo.FindByNameArgsForCall(0)).To(Equal("my-quota"))
orgGuid, quotaGuid := quotaRepo.AssignQuotaToOrgArgsForCall(0)
Expect(orgGuid).To(Equal("my-org-guid"))
Expect(quotaGuid).To(Equal("my-quota-guid"))
})
})
})
示例2:
var (
quota models.QuotaFields
)
BeforeEach(func() {
quota = models.QuotaFields{
Name: "non-default-quota",
Guid: "non-default-quota-guid",
}
})
It("creates an org with a non-default quota", func() {
quotaRepo.FindByNameReturns(quota, nil)
runCommand("-q", "non-default-quota", "my-org")
Expect(quotaRepo.FindByNameArgsForCall(0)).To(Equal("non-default-quota"))
Expect(orgRepo.CreateArgsForCall(0).QuotaDefinition.Guid).To(Equal("non-default-quota-guid"))
Expect(ui.Outputs).To(ContainSubstrings(
[]string{"Creating org", "my-org"},
[]string{"OK"},
))
})
It("fails and warns the user when the quota cannot be found", func() {
quotaRepo.FindByNameReturns(models.QuotaFields{}, errors.New("Could not find quota"))
runCommand("-q", "non-default-quota", "my-org")
Expect(ui.Outputs).To(ContainSubstrings(
[]string{"Creating org", "my-org"},
[]string{"Could not find quota"},
))