本文整理汇总了Golang中github.com/cloudfoundry/cli/cf/api/space_quotas/fakes.FakeSpaceQuotaRepository.FindByNameArgsForCall方法的典型用法代码示例。如果您正苦于以下问题:Golang FakeSpaceQuotaRepository.FindByNameArgsForCall方法的具体用法?Golang FakeSpaceQuotaRepository.FindByNameArgsForCall怎么用?Golang FakeSpaceQuotaRepository.FindByNameArgsForCall使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/cloudfoundry/cli/cf/api/space_quotas/fakes.FakeSpaceQuotaRepository
的用法示例。
在下文中一共展示了FakeSpaceQuotaRepository.FindByNameArgsForCall方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1:
))
Expect(spaceRepo.CreateSpaceName).To(Equal(""))
})
})
Context("when the -q flag is provided", func() {
It("assigns the space-quota specified to the space", func() {
spaceQuota := models.SpaceQuota{
Name: "my-space-quota",
Guid: "my-space-quota-guid",
}
spaceQuotaRepo.FindByNameReturns(spaceQuota, nil)
runCommand("-q", "my-space-quota", "my-space")
Expect(spaceQuotaRepo.FindByNameArgsForCall(0)).To(Equal(spaceQuota.Name))
Expect(spaceRepo.CreateSpaceSpaceQuotaGuid).To(Equal(spaceQuota.Guid))
})
Context("when the space-quota provided does not exist", func() {
It("fails", func() {
spaceQuotaRepo.FindByNameReturns(models.SpaceQuota{}, errors.New("Error"))
runCommand("-q", "my-space-quota", "my-space")
Expect(ui.Outputs).To(ContainSubstrings(
[]string{"FAILED"},
[]string{"Error"},
))
})
})
示例2:
requirementsFactory.TargetedOrgSuccess = true
})
It("unassigns a quota from a space", func() {
space := models.Space{
SpaceFields: models.SpaceFields{
Name: "my-space",
Guid: "my-space-guid",
},
}
quota := models.SpaceQuota{Name: "my-quota", Guid: "my-quota-guid"}
quotaRepo.FindByNameReturns(quota, nil)
spaceRepo.FindByNameReturns(space, nil)
runCommand("my-space", "my-quota")
Expect(ui.Outputs).To(ContainSubstrings(
[]string{"Unassigning space quota", "my-quota", "my-space", "my-user"},
[]string{"OK"},
))
Expect(quotaRepo.FindByNameArgsForCall(0)).To(Equal("my-quota"))
spaceGuid, quotaGuid := quotaRepo.UnassignQuotaFromSpaceArgsForCall(0)
Expect(spaceGuid).To(Equal("my-space-guid"))
Expect(quotaGuid).To(Equal("my-quota-guid"))
})
})
})
示例3:
Context("when quotas exist", func() {
BeforeEach(func() {
quotaRepo.FindByNameReturns(
models.SpaceQuota{
Name: "quota-name",
MemoryLimit: 1024,
InstanceMemoryLimit: -1,
RoutesLimit: 111,
ServicesLimit: 222,
NonBasicServicesAllowed: true,
OrgGuid: "my-org-guid",
}, nil)
})
It("lists the specific quota info", func() {
Expect(quotaRepo.FindByNameArgsForCall(0)).To(Equal("quota-name"))
Expect(ui.Outputs).To(ContainSubstrings(
[]string{"Getting space quota quota-name info as", "my-user"},
[]string{"OK"},
[]string{"total memory limit", "1G"},
[]string{"instance memory limit", "unlimited"},
[]string{"routes", "111"},
[]string{"service", "222"},
[]string{"non basic services", "allowed"},
))
})
Context("when the services are unlimited", func() {
BeforeEach(func() {
quotaRepo.FindByNameReturns(
models.SpaceQuota{