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:
<?php
namespace Guzzle\Tests\Service\Command\LocationVisitor\Request;
use Guzzle\Service\Client;
use Guzzle\Service\Description\ServiceDescription;
use Guzzle\Http\Message\PostFile;
use Guzzle\Service\Command\LocationVisitor\Request\PostFileVisitor as Visitor;
class PostFileVisitorTest extends AbstractVisitorTestCase
{
public function testVisitsLocation()
{
$visitor = new Visitor();
$param = $this->getNestedCommand('postFile')->getParam('foo');
$visitor->visit($this->command, $this->request, $param->setSentAs('test_3'), __FILE__);
$this->assertInternalType('array', $this->request->getPostFile('test_3'));
$visitor->visit($this->command, $this->request, $param->setSentAs(null), new PostFile('baz', __FILE__));
$this->assertInternalType('array', $this->request->getPostFile('baz'));
}
public function testVisitsLocationWithMultipleFiles()
{
$description = ServiceDescription::factory(array(
'operations' => array(
'DoPost' => array(
'httpMethod' => 'POST',
'parameters' => array(
'foo' => array(
'location' => 'postFile',
'type' => array('string', 'array')
)
)
)
)
));
$this->getServer()->flush();
$this->getServer()->enqueue(array("HTTP/1.1 200 OK\r\nContent-Length:0\r\n\r\n"));
$client = new Client($this->getServer()->getUrl());
$client->setDescription($description);
$command = $client->getCommand('DoPost', array('foo' => array(__FILE__, __FILE__)));
$command->execute();
$received = $this->getServer()->getReceivedRequests();
$this->assertContains('name="foo[0]";', $received[0]);
$this->assertContains('name="foo[1]";', $received[0]);
}
}