本文整理汇总了Golang中github.com/cloudfoundry-incubator/bbs/models.Task.Action方法的典型用法代码示例。如果您正苦于以下问题:Golang Task.Action方法的具体用法?Golang Task.Action怎么用?Golang Task.Action使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/cloudfoundry-incubator/bbs/models.Task
的用法示例。
在下文中一共展示了Task.Action方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1:
It("calls the DB with a cell filter", func() {
Expect(fakeTaskDB.TasksCallCount()).To(Equal(1))
_, filter := fakeTaskDB.TasksArgsForCall(0)
Expect(filter.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"},
}
})
It("translates the cache dependencies into download actions", func() {
Expect(responseRecorder.Code).To(Equal(http.StatusOK))
示例2:
var protoDeserialization models.Task
err = proto.Unmarshal(protoSerialization, &protoDeserialization)
Expect(err).NotTo(HaveOccurred())
Expect(protoDeserialization).To(Equal(task))
})
})
Describe("VersionDownTo", func() {
Context("V1", func() {
BeforeEach(func() {
task.Action = models.WrapAction(models.Timeout(
&models.RunAction{
Path: "/the/path",
User: "the user",
},
10*time.Millisecond,
))
})
It("converts TimeoutMs to Timeout in Nanoseconds", func() {
task.VersionDownTo(format.V1)
Expect(task.GetAction().GetTimeoutAction().DeprecatedTimeoutNs).To(BeEquivalentTo(10 * time.Millisecond))
})
})
Context("V0", func() {
var (
downloadAction1, downloadAction2 *models.DownloadAction
)
示例3:
It("returns a not implemented error", func() {
Expect(migration.Down(logger)).To(HaveOccurred())
})
})
Describe("Up", func() {
var (
task *models.Task
migrationErr error
)
Describe("Task Migration", func() {
BeforeEach(func() {
task = model_helpers.NewValidTask("task-guid-1")
task.Action = models.WrapAction(&models.TimeoutAction{Action: model_helpers.NewValidAction(),
DeprecatedTimeoutNs: 5 * int64(time.Second),
})
})
JustBeforeEach(func() {
taskData, err := serializer.Marshal(logger, format.ENCRYPTED_PROTO, task)
Expect(err).NotTo(HaveOccurred())
_, err = storeClient.Set(etcddb.TaskSchemaPath(task), taskData, 0)
Expect(err).NotTo(HaveOccurred())
migration.SetStoreClient(storeClient)
migration.SetCryptor(cryptor)
migration.SetClock(fakeClock)
migrationErr = migration.Up(logger)
})