/**
  * Sets up the fixture, for example, opens a network connection.
  * This method is called before a test is executed.
  */
 protected function setUp()
 {
     ini_set('magic_quotes_gpc', 0);
     WirecardCEE_Stdlib_Fingerprint::setHashAlgorithm(WirecardCEE_Stdlib_Fingerprint::HASH_ALGORITHM_MD5);
     $this->object = new WirecardCEE_QPay_Return_Success($this->_returnData, $this->_secret);
 }
 /**
  * @dataProvider fingerprintProvider
  */
 public function testGenerate($values, $fingerprintOrder, $hash)
 {
     WirecardCEE_Stdlib_Fingerprint::setHashAlgorithm(WirecardCEE_Stdlib_Fingerprint::HASH_ALGORITHM_HMAC_SHA512);
     $this->assertEquals($hash, WirecardCEE_Stdlib_Fingerprint::generate($values, new WirecardCEE_Stdlib_FingerprintOrder($fingerprintOrder)));
 }
Esempio n. 3
0
 /**
  * Hash algorithm setter
  * @param string $hashAlgorithm
  * @return WirecardCEE_Stdlib_Validate_FingerprintValidator
  */
 public function setHashAlgorithm($hashAlgorithm)
 {
     $this->hashAlgorithm = (string) $hashAlgorithm;
     WirecardCEE_Stdlib_Fingerprint::setHashAlgorithm($hashAlgorithm);
     return $this;
 }
 /**
  * Constructor
  *
  * @param mixed $aConfig
  *
  * @throws WirecardCEE_QPay_Exception_InvalidParamLengthException
  * @throws WirecardCEE_QPay_Exception_InvalidArgumentException
  * @formatter:off
  */
 public function __construct($aConfig = null)
 {
     $this->_fingerprintOrder = new WirecardCEE_Stdlib_FingerprintOrder();
     //if no config was sent fallback to default config file
     if (is_null($aConfig)) {
         $aConfig = WirecardCEE_QPay_Module::getConfig();
     }
     if (isset($aConfig['WirecardCEEQPayConfig'])) {
         //we only need the WirecardCEEQPayConfig here
         $aConfig = $aConfig['WirecardCEEQPayConfig'];
     }
     //let's store configuration details in internal objects
     $this->oUserConfig = new WirecardCEE_Stdlib_Config($aConfig);
     $this->oClientConfig = new WirecardCEE_Stdlib_Config(WirecardCEE_QPay_Module::getClientConfig());
     //now let's check if the CUSTOMER_ID, SHOP_ID, LANGUAGE and SECRET exist in $this->oUserConfig object that we created from config array
     $sCustomerId = isset($this->oUserConfig->CUSTOMER_ID) ? trim($this->oUserConfig->CUSTOMER_ID) : null;
     $sShopId = isset($this->oUserConfig->SHOP_ID) ? trim($this->oUserConfig->SHOP_ID) : null;
     $sLanguage = isset($this->oUserConfig->LANGUAGE) ? trim($this->oUserConfig->LANGUAGE) : null;
     $sSecret = isset($this->oUserConfig->SECRET) ? trim($this->oUserConfig->SECRET) : null;
     //If not throw the InvalidArgumentException exception!
     if (empty($sCustomerId) || is_null($sCustomerId)) {
         throw new WirecardCEE_QPay_Exception_InvalidArgumentException(sprintf('CUSTOMER_ID passed to %s is invalid.', __METHOD__));
     }
     if (empty($sLanguage) || is_null($sLanguage)) {
         throw new WirecardCEE_QPay_Exception_InvalidArgumentException(sprintf('LANGUAGE passed to %s is invalid.', __METHOD__));
     }
     if (empty($sSecret) || is_null($sSecret)) {
         throw new WirecardCEE_QPay_Exception_InvalidArgumentException(sprintf('SECRET passed to %s is invalid.', __METHOD__));
     }
     // we're using hmac sha512 for hash-ing
     WirecardCEE_Stdlib_Fingerprint::setHashAlgorithm(WirecardCEE_Stdlib_Fingerprint::HASH_ALGORITHM_HMAC_SHA512);
     //everything ok! let's set the fields
     $this->_setField(self::CUSTOMER_ID, $sCustomerId);
     $this->_setField(self::SHOP_ID, $sShopId);
     $this->_setField(self::LANGUAGE, $sLanguage);
     $this->_setSecret($sSecret);
 }