本文整理汇总了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() {