public function test_simple_forceCapture_with_token()
 {
     $hash_in = array('merchantId' => '101', 'version' => '8.8', 'reportGroup' => 'Planets', 'litleTxnId' => '123456', 'orderId' => '12344', 'amount' => '106', 'orderSource' => 'ecommerce', 'token' => array('litleToken' => '123456789101112', 'expDate' => '1210', 'cardValidationNum' => '555', 'type' => 'VI'));
     $initilaize = new LitleOnlineRequest();
     $forceCaptureResponse = $initilaize->forceCaptureRequest($hash_in);
     $message = XmlParser::getAttribute($forceCaptureResponse, 'litleOnlineResponse', 'message');
     $this->assertEquals('Valid Format', $message);
 }
 public function test_simple_forceCapture_with_secondary_amount()
 {
     $hash_in = array('merchantId' => '101', 'version' => '8.8', 'reportGroup' => 'Planets', 'litleTxnId' => '123456', 'orderId' => '12344', 'amount' => '106', 'secondaryAmount' => '2000', 'orderSource' => 'ecommerce', 'card' => array('type' => 'VI', 'number' => '4100000000000000', 'expDate' => '1210'));
     $initilaize = new LitleOnlineRequest();
     $forceCaptureResponse = $initilaize->forceCaptureRequest($hash_in);
     $response = XmlParser::getAttribute($forceCaptureResponse, 'litleOnlineResponse', 'response');
     $this->assertEquals('000', $response);
 }
 public function test_simple_forceCapture_secondary_amount()
 {
     $hash_in = array('orderId' => '123', 'litleTxnId' => '123456', 'amount' => '106', 'secondaryAmount' => '2000', 'orderSource' => 'ecommerce', 'token' => array('litleToken' => '123456789101112', 'expDate' => '1210', 'cardValidationNum' => '555', 'type' => 'VI'));
     $mock = $this->getMock('litle\\sdk\\LitleXmlMapper');
     $mock->expects($this->once())->method('request')->with($this->matchesRegularExpression('/.*<token><litleToken>123456789101112.*<expDate>1210.*/'));
     $litleTest = new LitleOnlineRequest();
     $litleTest->newXML = $mock;
     $litleTest->forceCaptureRequest($hash_in);
 }
 public function test_debtRepayment_optional()
 {
     $hash_in = array('amount' => '2', 'orderSource' => 'ecommerce', 'orderId' => '3', 'merchantData' => array('campaign' => 'foo'));
     $mock = $this->getMock('litle\\sdk\\LitleXmlMapper');
     $mock->expects($this->once())->method('request')->with($this->matchesRegularExpression('/.*<\\/merchantData><\\/forceCapture>.*/'));
     $litleTest = new LitleOnlineRequest();
     $litleTest->newXML = $mock;
     $litleTest->forceCaptureRequest($hash_in);
 }
 /**
  * Make a forceCapture API request.
  *
  * This method wraps the LitleOnlineRequest.
  *
  * @param array $hash_in
  *   The request data.
  *
  * @return DOMDocument|SimpleXMLElement
  *   The response.
  */
 public function forceCaptureRequest($hash_in)
 {
     return $this->request->forceCaptureRequest($hash_in);
 }
 public function test_forceCapture()
 {
     $hash_in = array('id' => '1211', 'merchantId' => '101', 'version' => '8.8', 'reportGroup' => 'Planets', 'litleTxnId' => '123456', 'orderId' => '12344', 'amount' => '106', 'orderSource' => 'ecommerce', 'card' => array('type' => 'VI', 'number' => '4100000000000000', 'expDate' => '1210'));
     $litle = new LitleOnlineRequest($treeResponse = true);
     $response = $litle->forceCaptureRequest($hash_in);
     $this->assertEquals('001', $response->forceCaptureResponse->response);
 }