本文整理匯總了Golang中github.com/nttlabs/cli/testhelpers/requirements.FakeReqFactory.Domain方法的典型用法代碼示例。如果您正苦於以下問題:Golang FakeReqFactory.Domain方法的具體用法?Golang FakeReqFactory.Domain怎麽用?Golang FakeReqFactory.Domain使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/nttlabs/cli/testhelpers/requirements.FakeReqFactory
的用法示例。
在下文中一共展示了FakeReqFactory.Domain方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1:
Context("when the user does not provide two args", func() {
It("fails with usage", func() {
runCommand()
Expect(ui.FailedWithUsage).To(BeTrue())
})
})
Context("when the user provides an app and a domain", func() {
BeforeEach(func() {
requirementsFactory.Application = models.Application{ApplicationFields: models.ApplicationFields{
Guid: "my-app-guid",
Name: "my-app",
}}
requirementsFactory.Domain = models.DomainFields{
Guid: "my-domain-guid",
Name: "example.com",
}
routeRepo.FindByHostAndDomainReturns.Route = models.Route{
Domain: requirementsFactory.Domain,
Guid: "my-route-guid",
Host: "foo",
}
runCommand("-n", "my-host", "my-app", "my-domain.com")
})
It("passes requirements", func() {
Expect(testcmd.CommandDidPassRequirements).To(BeTrue())
})
It("reads the app and domain from its requirements", func() {
示例2:
Expect(testcmd.CommandDidPassRequirements).To(BeFalse())
})
})
Context("when the user is logged in", func() {
BeforeEach(func() {
domain := models.DomainFields{Guid: "my-domain-guid", Name: "example.com"}
route := models.Route{Guid: "my-route-guid", Host: "foo", Domain: domain}
app := models.Application{}
app.Guid = "my-app-guid"
app.Name = "my-app"
requirementsFactory.LoginSuccess = true
requirementsFactory.Application = app
requirementsFactory.Domain = domain
routeCreator.ReservedRoute = route
})
It("maps a route, obviously", func() {
runCommand("-n", "my-host", "my-app", "my-domain.com")
Expect(ui.Outputs).To(ContainSubstrings(
[]string{"Adding route", "foo.example.com", "my-app", "my-org", "my-space", "my-user"},
[]string{"OK"},
))
Expect(routeRepo.BoundRouteGuid).To(Equal("my-route-guid"))
Expect(routeRepo.BoundAppGuid).To(Equal("my-app-guid"))
Expect(testcmd.CommandDidPassRequirements).To(BeTrue())
Expect(requirementsFactory.ApplicationName).To(Equal("my-app"))