本文整理匯總了Golang中github.com/cloudfoundry/cli/cf/api/fakes.FakeUserRepository.SetSpaceRoleByUsernameReturns方法的典型用法代碼示例。如果您正苦於以下問題:Golang FakeUserRepository.SetSpaceRoleByUsernameReturns方法的具體用法?Golang FakeUserRepository.SetSpaceRoleByUsernameReturns怎麽用?Golang FakeUserRepository.SetSpaceRoleByUsernameReturns使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/cloudfoundry/cli/cf/api/fakes.FakeUserRepository
的用法示例。
在下文中一共展示了FakeUserRepository.SetSpaceRoleByUsernameReturns方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1:
Expect(spaceGUID).To(Equal("the-space-guid"))
Expect(orgGUID).To(Equal("the-org-guid"))
Expect(role).To(Equal("SpaceManager"))
})
It("tells the user it assigned the role", func() {
cmd.Execute(flagContext)
Expect(ui.Outputs).To(ContainSubstrings(
[]string{"Assigning role", "SpaceManager", "the-username", "the-org", "the-username"},
[]string{"OK"},
))
})
Context("when the call to CC fails", func() {
BeforeEach(func() {
userRepo.SetSpaceRoleByUsernameReturns(errors.New("user-repo-error"))
})
It("panics and prints a failure message", func() {
Expect(func() { cmd.Execute(flagContext) }).To(Panic())
Expect(ui.Outputs).To(BeInDisplayOrder(
[]string{"FAILED"},
[]string{"user-repo-error"},
))
})
})
})
})
})
})
示例2:
BeforeEach(func() {
flagRepo.FindByNameReturns(models.FeatureFlag{Enabled: true}, nil)
})
Context("when setting role succeed", func() {
It("uses the new endpoint to set space role by name", func() {
runCommand("my-user", "some-org", "some-space", "SpaceManager")
Expect(userRepo.SetSpaceRoleByGuidCallCount()).To(BeZero())
Expect(userRepo.SetSpaceRoleByUsernameCallCount()).To(Equal(1))
})
})
Context("when setting role fails", func() {
It("returns the error to user", func() {
userRepo.SetSpaceRoleByUsernameReturns(errors.New("oh no, it is broken"))
runCommand("my-user", "some-org", "some-space", "SpaceManager")
Expect(ui.Outputs).To(ContainSubstrings(
[]string{"FAILED"},
[]string{"it is broken"},
))
})
})
})
Context("when feature flag 'set_roles_by_username' is disabled", func() {
BeforeEach(func() {
flagRepo.FindByNameReturns(models.FeatureFlag{Enabled: false}, nil)