本文整理汇总了Golang中github.com/cloudfoundry/cli/cf/actors/fakes.FakeServicePlanActor.UpdatePlanAndOrgForServiceReturns方法的典型用法代码示例。如果您正苦于以下问题:Golang FakeServicePlanActor.UpdatePlanAndOrgForServiceReturns方法的具体用法?Golang FakeServicePlanActor.UpdatePlanAndOrgForServiceReturns怎么用?Golang FakeServicePlanActor.UpdatePlanAndOrgForServiceReturns使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/cloudfoundry/cli/cf/actors/fakes.FakeServicePlanActor
的用法示例。
在下文中一共展示了FakeServicePlanActor.UpdatePlanAndOrgForServiceReturns方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1:
It("tells the user if the service's plans are all public", func() {
actor.FindServiceAccessReturns(actors.AllPlansArePublic, nil)
actor.UpdateOrgForServiceReturns(true, nil)
Expect(runCommand([]string{"-o", "my-org", "service"})).To(BeTrue())
Expect(ui.Outputs).To(ContainSubstrings(
[]string{"No action taken. You must disable access to all plans of service service for all orgs and then grant access for all orgs except the my-org org."},
[]string{"OK"},
))
})
})
Context("the user provides a plan and org", func() {
It("fails if the org does not exist", func() {
actor.UpdatePlanAndOrgForServiceReturns(actors.All, errors.New("could not find org"))
Expect(runCommand([]string{"-p", "service-plan", "-o", "not-findable-org", "service"})).To(BeTrue())
Expect(ui.Outputs).To(ContainSubstrings(
[]string{"could not find org"},
))
})
It("tells the user if the plan is already private", func() {
actor.UpdatePlanAndOrgForServiceReturns(actors.None, nil)
Expect(runCommand([]string{"-p", "private-service-plan", "-o", "my-org", "service"})).To(BeTrue())
Expect(ui.Outputs).To(ContainSubstrings(
[]string{"The plan is already inaccessible for this org"},
[]string{"OK"},
))