本文整理汇总了Golang中github.com/cloudfoundry-incubator/lattice/ltc/task_examiner/fake_task_examiner.FakeTaskExaminer.TaskStatusReturns方法的典型用法代码示例。如果您正苦于以下问题:Golang FakeTaskExaminer.TaskStatusReturns方法的具体用法?Golang FakeTaskExaminer.TaskStatusReturns怎么用?Golang FakeTaskExaminer.TaskStatusReturns使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/cloudfoundry-incubator/lattice/ltc/task_examiner/fake_task_examiner.FakeTaskExaminer
的用法示例。
在下文中一共展示了FakeTaskExaminer.TaskStatusReturns方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1:
})
Describe("DeleteTaskCommand", func() {
var deleteTaskCommand cli.Command
BeforeEach(func() {
commandFactory := command_factory.NewTaskRunnerCommandFactory(fakeTaskRunner, terminalUI, fakeExitHandler)
deleteTaskCommand = commandFactory.MakeDeleteTaskCommand()
})
It("Deletes the given task", func() {
taskInfo := task_examiner.TaskInfo{
TaskGuid: "task-guid-1",
State: "COMPLETED",
}
fakeTaskExaminer.TaskStatusReturns(taskInfo, nil)
fakeTaskRunner.DeleteTaskReturns(nil)
test_helpers.ExecuteCommandWithArgs(deleteTaskCommand, []string{"task-guid-1"})
Expect(outputBuffer).To(test_helpers.Say(colors.Green("OK")))
})
It("returns error when fail to delete the task", func() {
taskInfo := task_examiner.TaskInfo{
TaskGuid: "task-guid-1",
State: "COMPLETED",
}
fakeTaskExaminer.TaskStatusReturns(taskInfo, nil)
fakeTaskRunner.DeleteTaskReturns(errors.New("task in unknown state"))
test_helpers.ExecuteCommandWithArgs(deleteTaskCommand, []string{"task-guid-1"})
示例2:
It("prints the error from build droplet", func() {
fakeDropletRunner.BuildDropletReturns(errors.New("failed"))
test_helpers.ExecuteCommandWithArgs(buildDropletCommand, []string{"droplet-name", "http://some.url/for/buildpack"})
Expect(outputBuffer).To(test_helpers.SayLine("Error submitting build of droplet-name: failed"))
Expect(fakeDropletRunner.UploadBitsCallCount()).To(Equal(1))
Expect(fakeDropletRunner.BuildDropletCallCount()).To(Equal(1))
Expect(fakeExitHandler.ExitCalledWith).To(Equal([]int{exit_codes.CommandFailed}))
})
})
Describe("waiting for the build to finish", func() {
It("polls for the build to complete, outputting logs while the build runs", func() {
fakeTaskExaminer.TaskStatusReturns(task_examiner.TaskInfo{State: "PENDING"}, nil)
args := []string{
"droplet-name",
"http://some.url/for/buildpack",
}
doneChan := test_helpers.AsyncExecuteCommandWithArgs(buildDropletCommand, args)
Eventually(outputBuffer).Should(test_helpers.SayLine("Submitted build of droplet-name"))
Eventually(fakeTailedLogsOutputter.OutputTailedLogsCallCount).Should(Equal(1))
Expect(fakeTailedLogsOutputter.OutputTailedLogsArgsForCall(0)).To(Equal("build-droplet-droplet-name"))
Eventually(fakeTaskExaminer.TaskStatusCallCount).Should(Equal(1))
Expect(fakeTaskExaminer.TaskStatusArgsForCall(0)).To(Equal("build-droplet-droplet-name"))
示例3:
Eventually(fakeTailedLogsOutputter.OutputTailedLogsCallCount).Should(Equal(1))
Expect(fakeTailedLogsOutputter.OutputTailedLogsArgsForCall(0)).To(Equal("my-app-guid"))
Consistently(doneChan).ShouldNot(BeClosed())
})
It("handles invalid appguids", func() {
test_helpers.ExecuteCommandWithArgs(logsCommand, []string{})
Expect(outputBuffer).To(test_helpers.SayIncorrectUsage())
Expect(fakeExitHandler.ExitCalledWith).To(Equal([]int{exit_codes.InvalidSyntax}))
})
It("handles non existent application", func() {
appExaminer.AppExistsReturns(false, nil)
taskExaminer.TaskStatusReturns(task_examiner.TaskInfo{}, errors.New("task not found"))
doneChan := test_helpers.AsyncExecuteCommandWithArgs(logsCommand, []string{"non_existent_app"})
Eventually(fakeTailedLogsOutputter.OutputTailedLogsCallCount).Should(Equal(1))
Expect(fakeTailedLogsOutputter.OutputTailedLogsArgsForCall(0)).To(Equal("non_existent_app"))
Expect(outputBuffer).To(test_helpers.Say("Application or task non_existent_app not found."))
Expect(outputBuffer).To(test_helpers.Say("Tailing logs and waiting for non_existent_app to appear..."))
Consistently(doneChan).ShouldNot(BeClosed())
})
It("handles tasks", func() {
appExaminer.AppExistsReturns(false, nil)
taskExaminer.TaskStatusReturns(task_examiner.TaskInfo{}, nil)
示例4:
Expect(fakeReceptorClient.CreateTaskCallCount()).To(Equal(1))
})
})
})
Describe("Delete Task", func() {
getTaskStatus := func(state string) task_examiner.TaskInfo {
return task_examiner.TaskInfo{
TaskGuid: "task-guid-1",
State: state,
}
}
It("delete task when task in COMPLETED state", func() {
fakeTaskExaminer.TaskStatusReturns(getTaskStatus(receptor.TaskStateCompleted), nil)
err := taskRunner.DeleteTask("task-guid-1")
Expect(err).ToNot(HaveOccurred())
})
It("return error when task is not in COMPLETED state", func() {
fakeTaskExaminer.TaskStatusReturns(getTaskStatus(receptor.TaskStatePending), nil)
err := taskRunner.DeleteTask("task-guid-1")
Expect(err).To(MatchError("task-guid-1 is not in COMPLETED state"))
})
Context("when the receptor returns errors", func() {
It("bubbles up the error from task_examiner.TaskStatus", func() {
fakeTaskExaminer.TaskStatusReturns(task_examiner.TaskInfo{}, errors.New("Task not found"))
示例5:
BeforeEach(func() {
commandFactory := command_factory.NewTaskExaminerCommandFactory(fakeTaskExaminer, terminalUI, fakeExitHandler)
taskCommand = commandFactory.MakeTaskCommand()
})
It("displays info for a pending task", func() {
taskInfo := task_examiner.TaskInfo{
TaskGuid: "boop",
State: "PENDING",
CellID: "cell-01",
Failed: false,
FailureReason: "",
Result: "",
}
fakeTaskExaminer.TaskStatusReturns(taskInfo, nil)
test_helpers.ExecuteCommandWithArgs(taskCommand, []string{"boop"})
Expect(outputBuffer).To(test_helpers.Say("Task Name"))
Expect(outputBuffer).To(test_helpers.Say("boop"))
Expect(outputBuffer).To(test_helpers.Say("Cell ID"))
Expect(outputBuffer).To(test_helpers.Say("cell-01"))
Expect(outputBuffer).To(test_helpers.Say("Status"))
Expect(outputBuffer).To(test_helpers.Say(colors.Yellow("PENDING")))
Expect(outputBuffer).NotTo(test_helpers.Say("Result"))
Expect(outputBuffer).NotTo(test_helpers.Say("Failure Reason"))
Expect(fakeTaskExaminer.TaskStatusCallCount()).To(Equal(1))
Expect(fakeTaskExaminer.TaskStatusArgsForCall(0)).To(Equal("boop"))
})