本文整理匯總了Golang中testhelpers/api.FakeRouteRepository.FindByHostAndDomainRoute方法的典型用法代碼示例。如果您正苦於以下問題:Golang FakeRouteRepository.FindByHostAndDomainRoute方法的具體用法?Golang FakeRouteRepository.FindByHostAndDomainRoute怎麽用?Golang FakeRouteRepository.FindByHostAndDomainRoute使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類testhelpers/api.FakeRouteRepository
的用法示例。
在下文中一共展示了FakeRouteRepository.FindByHostAndDomainRoute方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1:
})
testassert.SliceDoesNotContain(ui.Outputs, testassert.Lines{
{"FAILED"},
})
})
Context("when the default route for the app already exists", func() {
BeforeEach(func() {
routeRepo.FindByHostAndDomainErr = false
route := models.Route{}
route.Guid = "my-route-guid"
route.Host = "my-new-app"
route.Domain = domainRepo.ListDomainsForOrgDomains[0]
routeRepo.FindByHostAndDomainRoute = route
})
It("binds to existing routes", func() {
callPush("my-new-app")
Expect(routeRepo.CreatedHost).To(BeEmpty())
Expect(routeRepo.CreatedDomainGuid).To(BeEmpty())
Expect(routeRepo.FindByHostAndDomainHost).To(Equal("my-new-app"))
Expect(routeRepo.BoundAppGuid).To(Equal("my-new-app-guid"))
Expect(routeRepo.BoundRouteGuid).To(Equal("my-route-guid"))
testassert.SliceContains(ui.Outputs, testassert.Lines{
{"Using", "my-new-app.foo.cf-app.com"},
{"Binding", "my-new-app.foo.cf-app.com"},
{"OK"},
示例2:
testassert.SliceContains(ui.Outputs, testassert.Lines{
{"Creating", "tims-1st-crazy-app.foo.cf-app.com"},
{"Binding", "tims-1st-crazy-app.foo.cf-app.com"},
})
testassert.SliceDoesNotContain(ui.Outputs, testassert.Lines{
{"FAILED"},
})
})
It("binds to existing routes when pushing an app", func() {
route := models.Route{}
route.Guid = "my-route-guid"
route.Host = "my-new-app"
route.Domain = domainRepo.ListSharedDomainsDomains[0]
routeRepo.FindByHostAndDomainRoute = route
appRepo.ReadNotFound = true
callPush("my-new-app")
Expect(routeRepo.CreatedHost).To(BeEmpty())
Expect(routeRepo.CreatedDomainGuid).To(BeEmpty())
Expect(routeRepo.FindByHostAndDomainHost).To(Equal("my-new-app"))
Expect(routeRepo.BoundAppGuid).To(Equal("my-new-app-guid"))
Expect(routeRepo.BoundRouteGuid).To(Equal("my-route-guid"))
testassert.SliceContains(ui.Outputs, testassert.Lines{
{"Using", "my-new-app.foo.cf-app.com"},
{"Binding", "my-new-app.foo.cf-app.com"},
{"OK"},
})
示例3:
It("does not fail with usage when provided a hostname", func() {
ui = callDeleteRoute("y", []string{"-n", "my-host", "example.com"}, reqFactory, routeRepo)
Expect(ui.FailedWithUsage).To(BeFalse())
})
It("TestDeleteRouteWithConfirmation", func() {
domain := models.DomainFields{}
domain.Guid = "domain-guid"
domain.Name = "example.com"
route := models.Route{}
route.Guid = "route-guid"
route.Host = "my-host"
route.Domain = domain
routeRepo.FindByHostAndDomainRoute = route
ui := callDeleteRoute("y", []string{"-n", "my-host", "example.com"}, reqFactory, routeRepo)
testassert.SliceContains(ui.Prompts, testassert.Lines{
{"Really delete", "my-host"},
})
testassert.SliceContains(ui.Outputs, testassert.Lines{
{"Deleting route", "my-host.example.com"},
{"OK"},
})
Expect(routeRepo.DeleteRouteGuid).To(Equal("route-guid"))
})
It("TestDeleteRouteWithForce", func() {