本文整理汇总了Golang中testhelpers/api.FakeOrgRepository.FindByNameOrganization方法的典型用法代码示例。如果您正苦于以下问题:Golang FakeOrgRepository.FindByNameOrganization方法的具体用法?Golang FakeOrgRepository.FindByNameOrganization怎么用?Golang FakeOrgRepository.FindByNameOrganization使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类testhelpers/api.FakeOrgRepository
的用法示例。
在下文中一共展示了FakeOrgRepository.FindByNameOrganization方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1:
It("passes requirements when targeting a space or org", func() {
callTarget([]string{"-s", "i-love-space"}, reqFactory, config, orgRepo, spaceRepo)
Expect(testcmd.CommandDidPassRequirements).To(BeTrue())
callTarget([]string{"-o", "orgs-are-delightful"}, reqFactory, config, orgRepo, spaceRepo)
Expect(testcmd.CommandDidPassRequirements).To(BeTrue())
})
It("TestTargetOrganizationWhenUserHasAccess", func() {
org := models.Organization{}
org.Name = "my-organization"
org.Guid = "my-organization-guid"
orgRepo.Organizations = []models.Organization{org}
orgRepo.FindByNameOrganization = org
ui := callTarget([]string{"-o", "my-organization"}, reqFactory, config, orgRepo, spaceRepo)
Expect(orgRepo.FindByNameName).To(Equal("my-organization"))
Expect(ui.ShowConfigurationCalled).To(BeTrue())
Expect(config.OrganizationFields().Guid).To(Equal("my-organization-guid"))
})
It("TestTargetOrganizationWhenUserDoesNotHaveAccess", func() {
orgs := []models.Organization{}
orgRepo.Organizations = orgs
orgRepo.FindByNameErr = true
ui := callTarget([]string{"-o", "my-organization"}, reqFactory, config, orgRepo, spaceRepo)
示例2:
"password": "password",
}))
Expect(orgRepo.FindByNameName).To(Equal("my-org"))
Expect(spaceRepo.FindByNameName).To(Equal("my-space"))
Expect(ui.ShowConfigurationCalled).To(BeTrue())
})
It("doesn't ask the user to select an org if they have one in their config", func() {
Config.SetOrganizationFields(org2.OrganizationFields)
Flags = []string{"-s", "my-space"}
ui.Inputs = []string{"http://api.example.com", "[email protected]", "password"}
orgRepo.FindByNameOrganization = models.Organization{}
l := NewLogin(ui, Config, authRepo, endpointRepo, orgRepo, spaceRepo)
testcmd.RunCommand(l, testcmd.NewContext("login", Flags), nil)
Expect(Config.ApiEndpoint()).To(Equal("http://api.example.com"))
Expect(Config.OrganizationFields().Guid).To(Equal("my-org-guid"))
Expect(Config.SpaceFields().Guid).To(Equal("my-space-guid"))
Expect(Config.AccessToken()).To(Equal("my_access_token"))
Expect(Config.RefreshToken()).To(Equal("my_refresh_token"))
Expect(endpointRepo.UpdateEndpointReceived).To(Equal("http://api.example.com"))
Expect(authRepo.AuthenticateArgs.Credentials).To(Equal(map[string]string{
"username": "[email protected]",
"password": "password",
}))