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