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