本文整理汇总了Golang中code/cloudfoundry/org/bbs/models.Task.TaskDefinition方法的典型用法代码示例。如果您正苦于以下问题:Golang Task.TaskDefinition方法的具体用法?Golang Task.TaskDefinition怎么用?Golang Task.TaskDefinition使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类code/cloudfoundry/org/bbs/models.Task
的用法示例。
在下文中一共展示了Task.TaskDefinition方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1:
requestBody = &models.TasksRequest{
CellId: "cell-id",
}
})
It("calls the DB with a cell filter", func() {
Expect(controller.TasksCallCount()).To(Equal(1))
_, domain, cellID := controller.TasksArgsForCall(0)
Expect(domain).To(Equal(""))
Expect(cellID).To(Equal("cell-id"))
})
})
Context("and the returned tasks have cache dependencies", func() {
BeforeEach(func() {
task1.TaskDefinition = &models.TaskDefinition{}
task2.TaskDefinition = &models.TaskDefinition{}
task1.Action = &models.Action{
UploadAction: &models.UploadAction{
From: "web_location",
},
}
task1.CachedDependencies = []*models.CachedDependency{
{Name: "name-1", From: "from-1", To: "to-1", CacheKey: "cache-key-1", LogSource: "log-source-1"},
}
task2.CachedDependencies = []*models.CachedDependency{
{Name: "name-2", From: "from-2", To: "to-2", CacheKey: "cache-key-2", LogSource: "log-source-2"},
{Name: "name-3", From: "from-3", To: "to-3", CacheKey: "cache-key-3", LogSource: "log-source-3"},
示例2:
Expect(err).NotTo(HaveOccurred())
defer rows.Close()
tasks := []*models.Task{}
for rows.Next() {
var taskTest models.Task
var encryptedDefinition []byte
err := rows.Scan(&taskTest.TaskGuid, &taskTest.Domain,
&taskTest.UpdatedAt, &taskTest.CreatedAt, &taskTest.FirstCompletedAt,
&taskTest.State, &taskTest.CellId, &taskTest.Result,
&taskTest.Failed, &taskTest.FailureReason, &encryptedDefinition)
Expect(err).NotTo(HaveOccurred())
taskTest.TaskDefinition = &models.TaskDefinition{}
err = serializer.Unmarshal(logger, encryptedDefinition, taskTest.TaskDefinition)
Expect(err).NotTo(HaveOccurred())
tasks = append(tasks, &taskTest)
}
Expect(tasks).To(HaveLen(tasksToCreate))
Expect(tasks).To(ConsistOf(existingTasks))
})
})
})
Describe("Down", func() {
It("returns a not implemented error", func() {
Expect(migration.Down(logger)).To(HaveOccurred())