当前位置: 首页>>代码示例>>PHP>>正文


PHP LitleOnlineRequest::authorizationRequest方法代码示例

本文整理汇总了PHP中litle\sdk\LitleOnlineRequest::authorizationRequest方法的典型用法代码示例。如果您正苦于以下问题:PHP LitleOnlineRequest::authorizationRequest方法的具体用法?PHP LitleOnlineRequest::authorizationRequest怎么用?PHP LitleOnlineRequest::authorizationRequest使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在litle\sdk\LitleOnlineRequest的用法示例。


在下文中一共展示了LitleOnlineRequest::authorizationRequest方法的14个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: test_13

 public function test_13()
 {
     $auth_hash = array('orderId' => '13', 'amount' => '15000', 'orderSource' => 'ecommerce', 'card' => array('number' => '6011010140000004', 'expDate' => '0812', 'type' => 'DI'), 'allowPartialAuth' => 'true');
     $initilaize = new LitleOnlineRequest();
     $authorizationResponse = $initilaize->authorizationRequest($auth_hash);
     $this->assertEquals('010', XmlParser::getNode($authorizationResponse, 'response'));
     $this->assertEquals('Partially Approved', XmlParser::getNode($authorizationResponse, 'message'));
     $this->assertEquals('12000', XmlParser::getNode($authorizationResponse, 'approvedAmount'));
 }
开发者ID:CartworksPlatform,项目名称:cartworksplatform,代码行数:9,代码来源:CertBetaTest.php

示例2: test_pos_missing_field

 public function test_pos_missing_field()
 {
     $hash_in = array('reportGroup' => 'Planets', 'orderId' => '12344', 'amount' => '106', 'orderSource' => 'ecommerce', 'pos' => array('entryMode' => '123'), 'card' => array('type' => 'VI', 'number' => '4100000000000000', 'expDate' => '1210'));
     $litleTest = new LitleOnlineRequest();
     $this->setExpectedException('InvalidArgumentException', 'Missing Required Field: /capability/');
     $retOb = $litleTest->authorizationRequest($hash_in);
 }
开发者ID:CartworksPlatform,项目名称:cartworksplatform,代码行数:7,代码来源:AuthFunctionalTest.php

示例3: test_auth

 public function test_auth()
 {
     $hash_in = array('card' => array('type' => 'VI', 'number' => '4100000000000000', 'expDate' => '1213', 'cardValidationNum' => '1213'), 'id' => '1211', 'orderId' => '2111', 'reportGroup' => 'Planets', 'orderSource' => 'ecommerce', 'amount' => '123');
     $litle = new LitleOnlineRequest($treeResponse = true);
     $response = $litle->authorizationRequest($hash_in);
     $this->assertEquals('000', $response->authorizationResponse->response);
 }
开发者ID:siscodev93,项目名称:litle-sdk-for-php,代码行数:7,代码来源:TreeResponseFunctionalTest.php

示例4: test_pos

 public function test_pos()
 {
     $hash_in = array('merchantId' => '101', 'version' => '8.8', 'reportGroup' => 'Planets', 'orderId' => '12344', 'amount' => '106', 'orderSource' => 'ecommerce', 'pos' => array('capability' => 'notused', 'entryMode' => 'track1', 'cardholderId' => 'pin'), 'card' => array('type' => 'VI', 'number' => '4100000000000000', 'expDate' => '1210'));
     $initilaize = new LitleOnlineRequest();
     $authorizationResponse = $initilaize->authorizationRequest($hash_in);
     $message = XmlParser::getAttribute($authorizationResponse, 'litleOnlineResponse', 'message');
     $this->assertEquals("Valid Format", $message);
 }
开发者ID:CartworksPlatform,项目名称:cartworksplatform,代码行数:8,代码来源:XmlFieldsFunctionalTest.php

示例5: test_set_merchant_sdk_default

 public function test_set_merchant_sdk_default()
 {
     $hash_in = array('orderId' => '2111', 'id' => '654', 'orderSource' => 'ecommerce', 'amount' => '123');
     $mock = $this->getMock('litle\\sdk\\LitleXmlMapper');
     $mock->expects($this->once())->method('request')->with($this->matchesRegularExpression('/.*merchantSdk="PHP;10.1".*/'));
     $litleTest = new LitleOnlineRequest();
     $litleTest->newXML = $mock;
     $litleTest->authorizationRequest($hash_in);
 }
开发者ID:siscodev93,项目名称:litle-sdk-for-php,代码行数:9,代码来源:LitleOnlineRequestUnitTest.php

示例6: test_VoidSettledTransaction

 public function test_VoidSettledTransaction()
 {
     $auth_hash = array('orderId' => '1', 'amount' => '10010', 'orderSource' => 'ecommerce', 'card' => array('number' => '375001010000003', 'expDate' => '0112', 'cardValidationNum' => '1313', 'type' => 'AX'));
     $initilaize = new LitleOnlineRequest();
     $authorizationResponse = $initilaize->authorizationRequest($auth_hash);
     $this->assertEquals('000', XmlParser::getNode($authorizationResponse, 'response'));
     $capture_hash = array('litleTxnId' => XmlParser::getNode($authorizationResponse, 'litleTxnId'));
     $captureResponse = $initilaize->captureRequest($capture_hash);
     //echo $captureResponse;
     $this->assertEquals('000', XmlParser::getNode($captureResponse, 'response'));
     $void_hash1 = array('litleTxnId' => 362);
     $voidResponse1 = $initilaize->voidRequest($void_hash1);
     $this->assertEquals('362', XmlParser::getNode($voidResponse1, 'response'));
     $credit_hash = array('litleTxnId' => XmlParser::getNode($captureResponse, 'litleTxnId'));
     $creditResponse = $initilaize->creditRequest($credit_hash);
     $this->assertEquals('000', XmlParser::getNode($creditResponse, 'response'));
     $void_hash2 = array('litleTxnId' => XmlParser::getNode($creditResponse, 'litleTxnId'));
     $voidResponse2 = $initilaize->voidRequest($void_hash2);
     $this->assertEquals('000', XmlParser::getNode($voidResponse2, 'response'));
 }
开发者ID:CartworksPlatform,项目名称:cartworksplatform,代码行数:20,代码来源:VoidSettledTransactionTest.php

示例7: array

 function test_5_avs()
 {
     $auth_hash = array('id' => '1211', 'orderId' => '5', 'amount' => '0', 'orderSource' => 'ecommerce', 'card' => array('number' => '4457010200000007', 'expDate' => '0512', 'cardValidationNum' => '463', 'type' => 'VI'), 'cardholderAuthentication' => array('authenticationValue' => 'BwABBJQ1AgAAAAAgJDUCAAAAAAA='));
     $initilaize = new LitleOnlineRequest();
     $authorizationResponse = $initilaize->authorizationRequest($auth_hash);
     $this->assertEquals('000', XmlParser::getNode($authorizationResponse, 'response'));
     $this->assertEquals('Approved', XmlParser::getNode($authorizationResponse, 'message'));
     $this->assertEquals('55555 ', XmlParser::getNode($authorizationResponse, 'authCode'));
     $this->assertEquals('32', XmlParser::getNode($authorizationResponse, 'avsResult'));
     $this->assertEquals('N', XmlParser::getNode($authorizationResponse, 'cardValidationResult'));
 }
开发者ID:siscodev93,项目名称:litle-sdk-for-php,代码行数:11,代码来源:CertAlphaTest.php

示例8: test_60

 public function test_60()
 {
     $token_hash = array('id' => 'id', 'orderId' => '60', 'amount' => '15000', 'orderSource' => 'ecommerce', 'token' => array('litleToken' => '1712999999999999', 'expDate' => '1112'));
     $initilaize = new LitleOnlineRequest();
     $authorizationResponse = $initilaize->authorizationRequest($token_hash);
     $this->assertEquals('823', XMLParser::getNode($authorizationResponse, 'response'));
     $this->assertEquals('Token was invalid', XMLParser::getNode($authorizationResponse, 'message'));
 }
开发者ID:siscodev93,项目名称:litle-sdk-for-php,代码行数:8,代码来源:CertTokenTest.php

示例9: authorizationRequest

 /**
  * Make an authorization API request.
  *
  * This method wraps the LitleOnlineRequest.
  *
  * @param array $hash_in
  *   Request data.
  *
  * @return DOMDocument|SimpleXMLElement
  *   The response.
  */
 public function authorizationRequest($hash_in)
 {
     return $this->request->authorizationRequest($hash_in);
 }
开发者ID:JacksonRiver,项目名称:springboard_modules,代码行数:15,代码来源:LitleSDK.php

示例10: test_auth_with_card_and_secondary_amount

 public function test_auth_with_card_and_secondary_amount()
 {
     $hash_in = array('card' => array('type' => 'VI', 'number' => '4100000000000001', 'expDate' => '1213', 'cardValidationNum' => '1213'), 'secondaryAmount' => '2000', 'orderId' => '2111', 'orderSource' => 'ecommerce', 'id' => '654', 'amount' => '123');
     $mock = $this->getMock('litle\\sdk\\LitleXmlMapper');
     $mock->expects($this->once())->method('request')->with($this->matchesRegularExpression('/.*<card><type>VI.*<number>4100000000000001.*<expDate>1213.*<cardValidationNum>1213.*/'));
     $litleTest = new LitleOnlineRequest();
     $litleTest->newXML = $mock;
     $litleTest->authorizationRequest($hash_in);
 }
开发者ID:shootandshare,项目名称:litle-sdk-for-php,代码行数:9,代码来源:AuthUnitTest.php

示例11: test_auth_with_applepay_approved

 public function test_auth_with_applepay_approved()
 {
     $hash_in = array('applepay' => array('data' => 'string data here', 'header' => array('applicationData' => '454657413164', 'ephemeralPublicKey' => '1', 'publicKeyHash' => '1234', 'transactionId' => '12345'), 'signature' => 'signature', 'version' => 'version 1'), 'orderId' => '2111', 'orderSource' => 'ecommerce', 'id' => '654', 'amount' => '12312');
     $initilaize = new LitleOnlineRequest();
     $authorizationResponse = $initilaize->authorizationRequest($hash_in);
     $response = XmlParser::getNode($authorizationResponse, 'response');
     $this->assertEquals('000', $response);
 }
开发者ID:shootandshare,项目名称:litle-sdk-for-php,代码行数:8,代码来源:AuthFunctionalTest.php

示例12: test_36

 public function test_36()
 {
     $auth_hash = array('id' => '1211', 'orderId' => '36', 'amount' => '20500', 'orderSource' => 'ecommerce', 'card' => array('number' => '375000026600004', 'expDate' => '0512', 'type' => 'AX'));
     $initilaize = new LitleOnlineRequest();
     $authorizationResponse = $initilaize->authorizationRequest($auth_hash);
     $this->assertEquals('000', XmlParser::getNode($authorizationResponse, 'response'));
     $this->assertEquals('Approved', XmlParser::getNode($authorizationResponse, 'message'));
     //test 33A
     $authReversal_hash = array('id' => '1211', 'litleTxnId' => XmlParser::getNode($authorizationResponse, 'litleTxnId'), 'reportGroup' => 'planets', 'amount' => '10000');
     $initilaize = new LitleOnlineRequest();
     $authReversalResponse = $initilaize->authReversalRequest($authReversal_hash);
     $this->assertEquals('001', XmlParser::getNode($authReversalResponse, 'response'));
     $this->assertEquals('Transaction Received', XmlParser::getNode($authReversalResponse, 'message'));
 }
开发者ID:siscodev93,项目名称:litle-sdk-for-php,代码行数:14,代码来源:CertAuthReversal.php

示例13: test_advancedFraudChecks_withoutThreatMetrixSessionId

 public function test_advancedFraudChecks_withoutThreatMetrixSessionId()
 {
     //In 8.23, threatMetrixSessionId is optional, but really should be required.
     //It will be required in 8.24, so I'm making it required here in the schema.
     //There is no good reason to send an advancedFraudChecks element without a threatMetrixSessionId.
     $hash_in = array('card' => array('type' => 'VI', 'number' => '4100000000000001', 'expDate' => '1213'), 'orderId' => '12344', 'amount' => '2', 'orderSource' => 'ecommerce', 'debtRepayment' => 'true', 'advancedFraudChecks' => array());
     $litleTest = new LitleOnlineRequest();
     $this->setExpectedException('InvalidArgumentException', 'Missing Required Field: /threatMetrixSessionId/');
     $retOb = $litleTest->authorizationRequest($hash_in);
 }
开发者ID:CartworksPlatform,项目名称:cartworksplatform,代码行数:10,代码来源:AuthUnitTest.php

示例14: test_31

 public function test_31()
 {
     $auth_hash = array('orderId' => '31', 'amount' => '25000', 'orderSource' => 'ecommerce', 'card' => array('number' => '4024720001231239', 'expDate' => '1212', 'type' => 'VI'), 'allowPartialAuth' => 'true', 'healthcareIIAS' => array('healthcareAmounts' => array('totalHealthcareAmount' => '18699', 'RxAmount' => '1000', 'visionAmount' => '15099'), 'IIASFlag' => 'Y'));
     $initilaize = new LitleOnlineRequest();
     $authorizationResponse = $initilaize->authorizationRequest($auth_hash);
     $this->assertEquals('010', XmlParser::getNode($authorizationResponse, 'response'));
     $this->assertEquals('Partially Approved', XmlParser::getNode($authorizationResponse, 'message'));
     $this->assertEquals('18699', XmlParser::getNode($authorizationResponse, 'approvedAmount'));
 }
开发者ID:CartworksPlatform,项目名称:cartworksplatform,代码行数:9,代码来源:CertAuthenhancedTest.php


注:本文中的litle\sdk\LitleOnlineRequest::authorizationRequest方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。