本文整理汇总了Golang中github.com/cloudfoundry-incubator/bbs/models.Task.CompletionCallbackUrl方法的典型用法代码示例。如果您正苦于以下问题:Golang Task.CompletionCallbackUrl方法的具体用法?Golang Task.CompletionCallbackUrl怎么用?Golang Task.CompletionCallbackUrl使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/cloudfoundry-incubator/bbs/models.Task
的用法示例。
在下文中一共展示了Task.CompletionCallbackUrl方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1:
reqCount = make(chan struct{})
fakeServer.RouteToHandler("POST", "/the-callback/url", func(w http.ResponseWriter, req *http.Request) {
w.WriteHeader(<-statusCodes)
})
callbackURL = fakeServer.URL() + "/the-callback/url"
taskDB = new(dbfakes.FakeTaskDB)
taskDB.ResolvingTaskReturns(nil)
taskDB.DeleteTaskReturns(nil)
})
simulateTaskCompleting := func(signals <-chan os.Signal, ready chan<- struct{}) error {
close(ready)
task = model_helpers.NewValidTask("the-task-guid")
task.CompletionCallbackUrl = callbackURL
taskworkpool.HandleCompletedTask(logger, httpClient, taskDB, task)
return nil
}
var process ifrit.Process
JustBeforeEach(func() {
process = ifrit.Invoke(ifrit.RunFunc(simulateTaskCompleting))
})
AfterEach(func() {
ginkgomon.Kill(process)
})
Context("when the task has a completion callback URL", func() {
BeforeEach(func() {
示例2:
EgressRules: []*models.SecurityGroupRule{
{
Protocol: "tcp",
Destinations: []string{"0.0.0.0/0"},
Ports: []uint32{80, 443},
Log: true,
},
},
}
Expect(actualResponse).To(Equal(expectedResponse))
})
Context("when the task has a CompletionCallbackURL", func() {
BeforeEach(func() {
task.CompletionCallbackUrl = "http://example.com/the-path"
})
It("serializes the completion callback URL", func() {
Expect(serialization.TaskToResponse(task).CompletionCallbackURL).To(Equal("http://example.com/the-path"))
})
})
Context("when the task doesn't have a CompletionCallbackURL", func() {
It("leaves the completion callback URL blank", func() {
Expect(serialization.TaskToResponse(task).CompletionCallbackURL).To(Equal(""))
})
})
})
Describe("TaskFromRequest", func() {