public function test_token_echeck_missing_required()
 {
     $hash_in = array('merchantId' => '101', 'version' => '8.8', 'reportGroup' => 'Planets', 'orderId' => '12344', 'echeckForToken' => array('routingNum' => '132344565'));
     $litleTest = new LitleOnlineRequest();
     $this->setExpectedException('InvalidArgumentException', 'Missing Required Field: /accNum/');
     $retOb = $litleTest->registerTokenRequest($hash_in);
 }
 public function test_simple_token_applepay()
 {
     $hash_in = array('merchantId' => '101', 'version' => '8.8', 'reportGroup' => 'Planets', 'orderId' => '12344', 'applepay' => array('data' => 'string data here', 'header' => array('applicationData' => '454657413164', 'ephemeralPublicKey' => '1', 'publicKeyHash' => '1234', 'transactionId' => '12345'), 'signature' => 'signature', 'version' => 'version 1'));
     $initilaize = new LitleOnlineRequest();
     $registerTokenResponse = $initilaize->registerTokenRequest($hash_in);
     $message = XmlParser::getAttribute($registerTokenResponse, 'litleOnlineResponse', 'message');
     $this->assertEquals('Valid Format', $message);
 }
 public function test_54()
 {
     $token_hash = array('id' => 'id', 'orderId' => '54', 'echeckForToken' => array('accNum' => '1022222102', 'routingNum' => '1145_7895'));
     $initilaize = new LitleOnlineRequest();
     $registerTokenResponse = $initilaize->registerTokenRequest($token_hash);
     $this->assertEquals('900', XMLParser::getNode($registerTokenResponse, 'response'));
     $this->assertEquals('Invalid bank routing number', XMLParser::getNode($registerTokenResponse, 'message'));
 }
 public function test_loggedInUser()
 {
     $hash_in = array('loggedInUser' => 'gdake', 'merchantSdk' => 'PHP;8.14.0', 'orderId' => '1', 'accountNumber' => '123456789101112');
     $mock = $this->getMock('litle\\sdk\\LitleXmlMapper');
     $mock->expects($this->once())->method('request')->with($this->matchesRegularExpression('/.*merchantSdk="PHP;8.14.0".*loggedInUser="******" xmlns=.*>.*/'));
     $litleTest = new LitleOnlineRequest();
     $litleTest->newXML = $mock;
     $litleTest->registerTokenRequest($hash_in);
 }
 public function test_token_applepay()
 {
     $hash_in = array('orderId' => '1', 'id' => 'id', 'applepay' => array('data' => 'string data here', 'header' => 'header stuff here', 'signature' => 'signature', 'version' => 'version 1'));
     $mock = $this->getMock('litle\\sdk\\LitleXmlMapper');
     $mock->expects($this->once())->method('request')->with($this->matchesRegularExpression('/.*<applepay><data>string data here.*<header>header stuff here.*<signature>signature.*<version>version 1.*/'));
     $litleTest = new LitleOnlineRequest();
     $litleTest->newXML = $mock;
     $litleTest->registerTokenRequest($hash_in);
 }
 /**
  * Make a registerToken API request.
  *
  * This method wraps the LitleOnlineRequest.
  *
  * @param array $hash_in
  *   The request data.
  *
  * @return DOMDocument|SimpleXMLElement
  *   The response.
  */
 public function registerTokenRequest($hash_in)
 {
     return $this->request->registerTokenRequest($hash_in);
 }