1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60:
<?php
namespace Guzzle\Tests\Service\Command;
use Guzzle\Http\Message\Response;
use Guzzle\Service\Client;
use Guzzle\Service\Command\DefaultResponseParser;
use Guzzle\Service\Command\OperationCommand;
use Guzzle\Service\Description\Operation;
class DefaultResponseParserTest extends \Guzzle\Tests\GuzzleTestCase
{
public function testParsesXmlResponses()
{
$op = new OperationCommand(array(), new Operation());
$op->setClient(new Client());
$request = $op->prepare();
$request->setResponse(new Response(200, array(
'Content-Type' => 'application/xml'
), '<Foo><Baz>Bar</Baz></Foo>'), true);
$this->assertInstanceOf('SimpleXMLElement', $op->execute());
}
public function testParsesJsonResponses()
{
$op = new OperationCommand(array(), new Operation());
$op->setClient(new Client());
$request = $op->prepare();
$request->setResponse(new Response(200, array(
'Content-Type' => 'application/json'
), '{"Baz":"Bar"}'), true);
$this->assertEquals(array('Baz' => 'Bar'), $op->execute());
}
public function testThrowsExceptionWhenParsingJsonFails()
{
$op = new OperationCommand(array(), new Operation());
$op->setClient(new Client());
$request = $op->prepare();
$request->setResponse(new Response(200, array('Content-Type' => 'application/json'), '{"Baz":ddw}'), true);
$op->execute();
}
public function testAddsContentTypeWhenExpectsIsSetOnCommand()
{
$op = new OperationCommand(array(), new Operation());
$op['command.expects'] = 'application/json';
$op->setClient(new Client());
$request = $op->prepare();
$request->setResponse(new Response(200, null, '{"Baz":"Bar"}'), true);
$this->assertEquals(array('Baz' => 'Bar'), $op->execute());
}
}