當前位置: 首頁>>代碼示例>>Golang>>正文


Golang Task.State方法代碼示例

本文整理匯總了Golang中github.com/cloudfoundry-incubator/bbs/models.Task.State方法的典型用法代碼示例。如果您正苦於以下問題:Golang Task.State方法的具體用法?Golang Task.State怎麽用?Golang Task.State使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在github.com/cloudfoundry-incubator/bbs/models.Task的用法示例。


在下文中一共展示了Task.State方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。

示例1:

		Context("when reading the task from the BBS fails", func() {
			BeforeEach(func() {
				fakeClient.TaskByGuidReturns(nil, errors.New("Something went wrong"))
			})

			It("responds with an error", func() {
				Expect(responseRecorder.Code).To(Equal(http.StatusInternalServerError))
			})
		})

		Context("when the task is successfully found in the BBS", func() {
			var task *models.Task

			BeforeEach(func() {
				task = model_helpers.NewValidTask("the-task-guid")
				task.State = models.Task_Running
				fakeClient.TaskByGuidReturns(task, nil)
			})

			It("retrieves the task by the given guid", func() {
				guid := fakeClient.TaskByGuidArgsForCall(0)
				Expect(guid).To(Equal(task.TaskGuid))
			})

			It("gets the task", func() {
				Expect(responseRecorder.Code).To(Equal(http.StatusOK))

				var actualTask receptor.TaskResponse
				err := json.Unmarshal(responseRecorder.Body.Bytes(), &actualTask)
				Expect(err).NotTo(HaveOccurred())
開發者ID:davidwadden,項目名稱:lattice-release,代碼行數:30,代碼來源:task_handlers_test.go

示例2: demoteToCompleted

func demoteToCompleted(task *models.Task) *models.Task {
	task.State = models.Task_Completed
	return task
}
開發者ID:emc-xchallenge,項目名稱:bbs,代碼行數:4,代碼來源:task_convergence.go

示例3:

					},
				},
			}
		})

		It("serializes the state", func() {
			EXPECTED_STATE_MAP := map[models.Task_State]string{
				models.Task_Invalid:   "INVALID",
				models.Task_Pending:   "PENDING",
				models.Task_Running:   "RUNNING",
				models.Task_Completed: "COMPLETED",
				models.Task_Resolving: "RESOLVING",
			}

			for modelState, jsonState := range EXPECTED_STATE_MAP {
				task.State = modelState
				Expect(serialization.TaskToResponse(task).State).To(Equal(jsonState))
			}
		})

		It("serializes the task's fields", func() {
			actualResponse := serialization.TaskToResponse(task)

			expectedResponse := receptor.TaskResponse{
				TaskGuid:      "the-task-guid",
				Domain:        "the-domain",
				CellID:        "the-cell-id",
				CreatedAt:     1234,
				FailureReason: "the-failure-reason",
				Failed:        true,
				Result:        "the-result",
開發者ID:davidwadden,項目名稱:lattice-release,代碼行數:31,代碼來源:tasks_test.go


注:本文中的github.com/cloudfoundry-incubator/bbs/models.Task.State方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。