本文整理汇总了Golang中github.com/cloudfoundry-incubator/bbs/models.Task.State方法的典型用法代码示例。如果您正苦于以下问题:Golang Task.State方法的具体用法?Golang Task.State怎么用?Golang Task.State使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/cloudfoundry-incubator/bbs/models.Task
的用法示例。
在下文中一共展示了Task.State方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1:
Context("when reading the task from the BBS fails", func() {
BeforeEach(func() {
fakeClient.TaskByGuidReturns(nil, errors.New("Something went wrong"))
})
It("responds with an error", func() {
Expect(responseRecorder.Code).To(Equal(http.StatusInternalServerError))
})
})
Context("when the task is successfully found in the BBS", func() {
var task *models.Task
BeforeEach(func() {
task = model_helpers.NewValidTask("the-task-guid")
task.State = models.Task_Running
fakeClient.TaskByGuidReturns(task, nil)
})
It("retrieves the task by the given guid", func() {
guid := fakeClient.TaskByGuidArgsForCall(0)
Expect(guid).To(Equal(task.TaskGuid))
})
It("gets the task", func() {
Expect(responseRecorder.Code).To(Equal(http.StatusOK))
var actualTask receptor.TaskResponse
err := json.Unmarshal(responseRecorder.Body.Bytes(), &actualTask)
Expect(err).NotTo(HaveOccurred())
示例2: demoteToCompleted
func demoteToCompleted(task *models.Task) *models.Task {
task.State = models.Task_Completed
return task
}
示例3:
},
},
}
})
It("serializes the state", func() {
EXPECTED_STATE_MAP := map[models.Task_State]string{
models.Task_Invalid: "INVALID",
models.Task_Pending: "PENDING",
models.Task_Running: "RUNNING",
models.Task_Completed: "COMPLETED",
models.Task_Resolving: "RESOLVING",
}
for modelState, jsonState := range EXPECTED_STATE_MAP {
task.State = modelState
Expect(serialization.TaskToResponse(task).State).To(Equal(jsonState))
}
})
It("serializes the task's fields", func() {
actualResponse := serialization.TaskToResponse(task)
expectedResponse := receptor.TaskResponse{
TaskGuid: "the-task-guid",
Domain: "the-domain",
CellID: "the-cell-id",
CreatedAt: 1234,
FailureReason: "the-failure-reason",
Failed: true,
Result: "the-result",