Esempio n. 1
0
 /**
  * @param array $source
  * @return mixed
  */
 public function initFromArray(array $source)
 {
     $this->taskToken = $source[static::INDEX_TASK_TOKEN];
     $this->startedEventId = $source[static::INDEX_STARTED_EVENT_ID];
     $this->workflowExecution = new WorkflowExecution();
     $this->workflowExecution->initFromArray($source);
 }
Esempio n. 2
0
 public function pollForDecisionTaskDataProvider()
 {
     $request = json_decode($this->loadFixture(static::FIXTURE_DECISION_POLL_REQUEST), true);
     $response = json_decode($this->loadFixture(static::FIXTURE_DECISION_POLL_RESPONSE), true);
     $taskList = new TaskList();
     $taskList->setName('taskListName');
     $input = new DecisionPollRequest();
     $input->setTaskList($taskList);
     $input->setIdentity('identityValue');
     $input->setDomain('domainName');
     $input->setMaximumPageSize(5);
     $input->setNextPageToken('nextTokenValue');
     $input->setReverseOrder(false);
     $workflowType = new WorkflowType();
     $workflowType->setName('customerOrderWorkflow');
     $workflowType->setVersion('1.0');
     $workflowType->setIsEmpty(false);
     $workflowExecution = new WorkflowExecution();
     $workflowExecution->setRunId('06b8f87a-24b3-40b6-9ceb-9676f28e9493');
     $workflowExecution->setWorkflowId('20110927-T-1');
     $workflowExecution->setIsEmpty(false);
     $events = array();
     foreach ($response[Event::INDEX_EVENTS] as $evt) {
         $event = new Event();
         $event->initFromArray($evt);
         $events[] = $event;
     }
     $expectation = new DecisionTask();
     $expectation->setTaskToken('taskTokenValue');
     $expectation->setNextPageToken('nextPageTokenValue');
     $expectation->setPreviousStartedEventId(0);
     $expectation->setWorkflowType($workflowType);
     $expectation->setWorkflowExecution($workflowExecution);
     $expectation->setStartedEventId(3);
     $expectation->setEvents($events);
     return array(array('success' => array(static::INDEX_INPUT => $input, static::INDEX_SWF_CLIENT_REQUEST_MOCK => $request, static::INDEX_SWF_CLIENT_RESPONSE_MOCK => $response, static::INDEX_EXPECTATION => $expectation)));
 }