本文整理汇总了Golang中github.com/cloudfoundry/cli/cf/api/fakes.FakeAuthTokenRepo.FindByLabelAndProviderServiceAuthTokenFields方法的典型用法代码示例。如果您正苦于以下问题:Golang FakeAuthTokenRepo.FindByLabelAndProviderServiceAuthTokenFields方法的具体用法?Golang FakeAuthTokenRepo.FindByLabelAndProviderServiceAuthTokenFields怎么用?Golang FakeAuthTokenRepo.FindByLabelAndProviderServiceAuthTokenFields使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/cloudfoundry/cli/cf/api/fakes.FakeAuthTokenRepo
的用法示例。
在下文中一共展示了FakeAuthTokenRepo.FindByLabelAndProviderServiceAuthTokenFields方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1:
})
It("fails when not logged in", func() {
runCommand("label", "provider", "token")
Expect(testcmd.CommandDidPassRequirements).To(BeFalse())
})
})
Context("when logged in and the service auth token exists", func() {
BeforeEach(func() {
requirementsFactory.LoginSuccess = true
foundAuthToken := models.ServiceAuthTokenFields{}
foundAuthToken.Guid = "found-auth-token-guid"
foundAuthToken.Label = "found label"
foundAuthToken.Provider = "found provider"
authTokenRepo.FindByLabelAndProviderServiceAuthTokenFields = foundAuthToken
})
It("updates the service auth token with the provided args", func() {
runCommand("a label", "a provider", "a value")
expectedAuthToken := models.ServiceAuthTokenFields{}
expectedAuthToken.Guid = "found-auth-token-guid"
expectedAuthToken.Label = "found label"
expectedAuthToken.Provider = "found provider"
expectedAuthToken.Token = "a value"
Expect(ui.Outputs).To(ContainSubstrings(
[]string{"Updating service auth token as", "my-user"},
[]string{"OK"},
))
示例2:
Expect(ui.Outputs).To(ContainSubstrings(
[]string{"Incorrect Usage", "Requires", "arguments"},
))
})
It("fails when not logged in", func() {
requirementsFactory.LoginSuccess = false
Expect(runCommand()).To(BeFalse())
})
})
Context("when the service auth token exists", func() {
BeforeEach(func() {
authTokenRepo.FindByLabelAndProviderServiceAuthTokenFields = models.ServiceAuthTokenFields{
Guid: "the-guid",
Label: "a label",
Provider: "a provider",
}
})
It("deletes the service auth token", func() {
runCommand("a label", "a provider")
Expect(ui.Outputs).To(ContainSubstrings(
[]string{"Deleting service auth token as", "my-user"},
[]string{"OK"},
))
Expect(authTokenRepo.FindByLabelAndProviderLabel).To(Equal("a label"))
Expect(authTokenRepo.FindByLabelAndProviderProvider).To(Equal("a provider"))
Expect(authTokenRepo.DeletedServiceAuthTokenFields.Guid).To(Equal("the-guid"))
})