本文整理汇总了Golang中github.com/cloudfoundry/bosh-agent/agent/task/fakes.FakeService.StartedTasks方法的典型用法代码示例。如果您正苦于以下问题:Golang FakeService.StartedTasks方法的具体用法?Golang FakeService.StartedTasks怎么用?Golang FakeService.StartedTasks使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/cloudfoundry/bosh-agent/agent/task/fakes.FakeService
的用法示例。
在下文中一共展示了FakeService.StartedTasks方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1:
State: boshtask.StateFailed,
Error: errors.New("fake-task-error"),
}
taskValue, err := action.Run("fake-task-id")
Expect(err).To(HaveOccurred())
Expect(err.Error()).To(Equal("Task fake-task-id result: fake-task-error"))
Expect(taskValue).To(BeNil())
})
It("returns a successful task", func() {
taskService.StartedTasks["fake-task-id"] = boshtask.Task{
ID: "fake-task-id",
State: boshtask.StateDone,
Value: "some-task-value",
}
taskValue, err := action.Run("fake-task-id")
Expect(err).ToNot(HaveOccurred())
Expect(taskValue).To(Equal("some-task-value"))
})
It("returns error when task is not found", func() {
taskService.StartedTasks = map[string]boshtask.Task{}
_, err := action.Run("fake-task-id")
Expect(err).To(HaveOccurred())
Expect(err.Error()).To(Equal("Task with id fake-task-id could not be found"))
})
})