/**
  * @dataProvider caseProvider
  *
  * @param         $about
  * @param Service $service
  * @param         $name
  * @param array   $args
  * @param         $serialized
  */
 public function testPassesComplianceTest($about, Service $service, $name, array $args, $serialized)
 {
     $endpoint = 'https://api-staging.sellercenter.net';
     $client = new SdkClient(['api' => $service, 'credentials' => new NullCredentials(), 'client' => new Client(), 'signature' => $this->getMock('SellerCenter\\SDK\\Commom\\Signature\\SignatureInterface'), 'store' => 'mobly', 'environment' => 'staging', 'endpoint' => $endpoint, 'error_parser' => Service::createErrorParser($service->getProtocol()), 'serializer' => Service::createSerializer($service, $endpoint), 'version' => 'latest']);
     $factory = new ClientFactory();
     /* @var \SellerCenter\SDK\Common\ClientFactory $reflectionClass */
     /* @var \ReflectionClass $reflectionClass */
     $reflectionClass = new \ReflectionClass($factory);
     $reflectionMethod = $reflectionClass->getMethod('applyParser');
     $reflectionMethod->setAccessible(true);
     $reflectionMethod->invoke($factory, $client, 'http://foo.com');
     $command = $client->getCommand($name, $args);
     $transaction = new CommandTransaction($client, $command);
     /** @var callable $serializer */
     $serializer = $this->readAttribute($client, 'serializer');
     $request = $serializer($transaction);
     $this->assertEquals($serialized['uri'], $request->getResource());
     $body = (string) $request->getBody();
     if (!empty($body) && $service->getMetadata('type') == 'rest-xml') {
         $this->assertXmlStringEqualsXmlString($serialized['body'], $body);
     }
     if (isset($serialized['headers'])) {
         foreach ($serialized['headers'] as $key => $value) {
             $this->assertSame($value, $request->getHeader($key));
         }
     }
 }
예제 #2
0
 /**
  * @dataProvider errorParserProvider
  */
 public function testCreatesRelevantErrorParsers($p, $cl)
 {
     $this->assertInstanceOf($cl, Service::createErrorParser($p));
 }
 /**
  * Creates and attaches parsers given client based on the protocol of the
  * description.
  *
  * @param SdkClientInterface $client SDK client to update
  *
  * @throws \UnexpectedValueException if the protocol doesn't exist
  */
 protected function applyParser(SdkClientInterface $client)
 {
     $api = $client->getApi();
     $parser = Service::createParser($api);
     $errorParser = Service::createErrorParser($api->getProtocol());
     $client->getEmitter()->on('process', function (ProcessEvent $e) use($errorParser) {
         // Ensure a response exists in order to parse.
         $response = $e->getResponse();
         if (!$response) {
             throw new \RuntimeException('No response was received.');
         }
         /* @var \SellerCenter\SDK\Common\Api\ErrorParser\XmlErrorParser $errorParser */
         $result = $errorParser($response, $e);
         if ($result instanceof Api\Response\Error\ErrorResponse) {
             $e->setResult($result);
             $e->stopPropagation();
         }
     });
     $client->getEmitter()->on('process', function (ProcessEvent $e) use($parser, $api) {
         // Guard against exceptions and injected results.
         if ($e->getException() || $e->getResult()) {
             return;
         }
         // Ensure a response exists in order to parse.
         $response = $e->getResponse();
         if (!$response) {
             throw new \RuntimeException('No response was received.');
         }
         $operation = $api->getOperation($e->getCommand()->getName());
         $result = $parser($response, $operation['deserialize']);
         $e->setResult($result);
     });
 }