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: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78: 79: 80: 81: 82: 83: 84: 85: 86: 87: 88: 89: 90: 91: 92: 93: 94: 95: 96: 97: 98: 99: 100: 101: 102: 103: 104: 105: 106: 107: 108: 109: 110: 111: 112: 113: 114: 115: 116: 117: 118: 119: 120: 121: 122: 123:
<?php
namespace Guzzle\Tests\Service\Command;
use Guzzle\Service\Command\DefaultRequestSerializer;
use Guzzle\Http\Message\EntityEnclosingRequest;
use Guzzle\Service\Client;
use Guzzle\Service\Description\ServiceDescription;
use Guzzle\Service\Description\Operation;
use Guzzle\Service\Description\Parameter;
use Guzzle\Service\Command\LocationVisitor\Request\HeaderVisitor;
use Guzzle\Service\Command\LocationVisitor\VisitorFlyweight;
class DefaultRequestSerializerTest extends \Guzzle\Tests\GuzzleTestCase
{
protected $request;
protected $command;
protected $client;
protected $serializer;
protected $operation;
public function setUp()
{
$this->serializer = DefaultRequestSerializer::getInstance();
$this->client = new Client('http://foo.com/baz');
$this->operation = new Operation(array('httpMethod' => 'POST'));
$this->command = $this->getMockBuilder('Guzzle\Service\Command\AbstractCommand')
->setConstructorArgs(array(array(), $this->operation))
->getMockForAbstractClass();
$this->command->setClient($this->client);
}
public function testAllowsCustomVisitor()
{
$this->serializer->addVisitor('custom', new HeaderVisitor());
$this->command['test'] = '123';
$this->operation->addParam(new Parameter(array('name' => 'test', 'location' => 'custom')));
$request = $this->serializer->prepare($this->command);
$this->assertEquals('123', (string) $request->getHeader('test'));
}
public function testUsesRelativePath()
{
$this->operation->setUri('bar');
$request = $this->serializer->prepare($this->command);
$this->assertEquals('http://foo.com/baz/bar', (string) $request->getUrl());
}
public function testUsesRelativePathWithUriLocations()
{
$this->command['test'] = '123';
$this->operation->setUri('bar/{test}');
$this->operation->addParam(new Parameter(array('name' => 'test', 'location' => 'uri')));
$request = $this->serializer->prepare($this->command);
$this->assertEquals('http://foo.com/baz/bar/123', (string) $request->getUrl());
}
public function testAllowsCustomFactory()
{
$f = new VisitorFlyweight();
$serializer = new DefaultRequestSerializer($f);
$this->assertSame($f, $this->readAttribute($serializer, 'factory'));
}
public function testMixedParams()
{
$this->operation->setUri('bar{?limit,fields}');
$this->operation->addParam(new Parameter(array(
'name' => 'limit',
'location' => 'uri',
'required' => false,
)));
$this->operation->addParam(new Parameter(array(
'name' => 'fields',
'location' => 'uri',
'required' => true,
)));
$this->command['fields'] = array('id', 'name');
$request = $this->serializer->prepare($this->command);
$this->assertEquals('http://foo.com/baz/bar?fields='.urlencode('id,name'), (string) $request->getUrl());
}
public function testValidatesAdditionalParameters()
{
$description = ServiceDescription::factory(array(
'operations' => array(
'foo' => array(
'httpMethod' => 'PUT',
'parameters' => array(
'bar' => array('location' => 'header')
),
'additionalParameters' => array(
'location' => 'json'
)
)
)
));
$client = new Client();
$client->setDescription($description);
$command = $client->getCommand('foo');
$command['bar'] = 'test';
$command['hello'] = 'abc';
$request = $command->prepare();
$this->assertEquals('test', (string) $request->getHeader('bar'));
$this->assertEquals('{"hello":"abc"}', (string) $request->getBody());
}
}