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:
<?php
namespace Guzzle\Tests\Plugin\Redirect;
use Guzzle\Http\Client;
use Guzzle\Http\StaticClient;
use Guzzle\Plugin\Mock\MockPlugin;
use Guzzle\Http\Message\Response;
use Guzzle\Stream\Stream;
class StaticClientTest extends \Guzzle\Tests\GuzzleTestCase
{
public function testMountsClient()
{
$client = new Client();
StaticClient::mount('FooBazBar', $client);
$this->assertTrue(class_exists('FooBazBar'));
$this->assertSame($client, $this->readAttribute('Guzzle\Http\StaticClient', 'client'));
}
public function requestProvider()
{
return array_map(
function ($m) { return array($m); },
array('GET', 'POST', 'PUT', 'DELETE', 'PATCH', 'HEAD', 'OPTIONS')
);
}
public function testSendsRequests($method)
{
$mock = new MockPlugin(array(new Response(200)));
call_user_func('Guzzle\Http\StaticClient::' . $method, 'http://foo.com', array(
'plugins' => array($mock)
));
$requests = $mock->getReceivedRequests();
$this->assertCount(1, $requests);
$this->assertEquals($method, $requests[0]->getMethod());
}
public function testCanCreateStreamsUsingDefaultFactory()
{
$this->getServer()->enqueue(array("HTTP/1.1 200 OK\r\nContent-Length: 4\r\n\r\ntest"));
$stream = StaticClient::get($this->getServer()->getUrl(), array('stream' => true));
$this->assertInstanceOf('Guzzle\Stream\StreamInterface', $stream);
$this->assertEquals('test', (string) $stream);
}
public function testCanCreateStreamsUsingCustomFactory()
{
$stream = $this->getMockBuilder('Guzzle\Stream\StreamRequestFactoryInterface')
->setMethods(array('fromRequest'))
->getMockForAbstractClass();
$resource = new Stream(fopen('php://temp', 'r+'));
$stream->expects($this->once())
->method('fromRequest')
->will($this->returnValue($resource));
$this->getServer()->enqueue(array("HTTP/1.1 200 OK\r\nContent-Length: 4\r\n\r\ntest"));
$result = StaticClient::get($this->getServer()->getUrl(), array('stream' => $stream));
$this->assertSame($resource, $result);
}
}