Пример #1
0
 /**
  * {@inheritDoc}
  */
 public function execute($request)
 {
     /** @var $request CheckAgreement */
     RequestNotSupportedException::assertSupports($this, $request);
     $model = ArrayObject::ensureArrayObject($request->getModel());
     $model->validateNotEmpty(array('agreementRef'));
     $result = $this->api->check((array) $model);
     $model->replace($result);
 }
Пример #2
0
 /**
  * @test
  */
 public function shouldUseSoapClientOnCheckAgreementAndConvertItsResponse()
 {
     $response = new \stdClass();
     $response->CheckResult = '<foo>fooValue</foo>';
     $soapClientMock = $this->getMock('SoapClient', array('Check'), array(), '', false);
     $soapClientMock->expects($this->once())->method('Check')->with($this->isType('array'))->will($this->returnValue($response));
     $clientFactoryMock = $this->getMock('Payum\\Payex\\Api\\SoapClientFactory', array('createWsdlClient'));
     $clientFactoryMock->expects($this->atLeastOnce())->method('createWsdlClient')->will($this->returnValue($soapClientMock));
     $agreementApi = new AgreementApi($clientFactoryMock, array('encryptionKey' => 'aKey', 'accountNumber' => 'aNumber', 'sandbox' => true));
     $result = $agreementApi->check(array());
     $this->assertEquals(array('fooValue'), $result);
 }