mirror of
https://github.com/guzzle/guzzle.git
synced 2025-02-24 01:53:58 +01:00
56 lines
1.8 KiB
PHP
56 lines
1.8 KiB
PHP
<?php
|
|
namespace GuzzleHttp\Test\Handler;
|
|
use GuzzleHttp\Handler\MockHandler;
|
|
use GuzzleHttp\Handler\Proxy;
|
|
use GuzzleHttp\Psr7\Request;
|
|
|
|
/**
|
|
* @covers \GuzzleHttp\Handler\Proxy
|
|
*/
|
|
class ProxyTest extends \PHPUnit_Framework_TestCase
|
|
{
|
|
public function testSendsToSync()
|
|
{
|
|
$a = $b = null;
|
|
$m1 = new MockHandler([function ($v) use (&$a) { $a = $v; }]);
|
|
$m2 = new MockHandler([function ($v) use (&$b) { $b = $v; }]);
|
|
$h = Proxy::wrapSync($m1, $m2);
|
|
$h(new Request('GET', 'http://foo.com'), []);
|
|
$this->assertNotNull($a);
|
|
$this->assertNull($b);
|
|
}
|
|
|
|
public function testSendsToNonSync()
|
|
{
|
|
$a = $b = null;
|
|
$m1 = new MockHandler([function ($v) use (&$a) { $a = $v; }]);
|
|
$m2 = new MockHandler([function ($v) use (&$b) { $b = $v; }]);
|
|
$h = Proxy::wrapSync($m1, $m2);
|
|
$h(new Request('GET', 'http://foo.com'), ['sync' => true]);
|
|
$this->assertNull($a);
|
|
$this->assertNotNull($b);
|
|
}
|
|
|
|
public function testSendsToStreaming()
|
|
{
|
|
$a = $b = null;
|
|
$m1 = new MockHandler([function ($v) use (&$a) { $a = $v; }]);
|
|
$m2 = new MockHandler([function ($v) use (&$b) { $b = $v; }]);
|
|
$h = Proxy::wrapStreaming($m1, $m2);
|
|
$h(new Request('GET', 'http://foo.com'), []);
|
|
$this->assertNotNull($a);
|
|
$this->assertNull($b);
|
|
}
|
|
|
|
public function testSendsToNonStreaming()
|
|
{
|
|
$a = $b = null;
|
|
$m1 = new MockHandler([function ($v) use (&$a) { $a = $v; }]);
|
|
$m2 = new MockHandler([function ($v) use (&$b) { $b = $v; }]);
|
|
$h = Proxy::wrapStreaming($m1, $m2);
|
|
$h(new Request('GET', 'http://foo.com'), ['stream' => true]);
|
|
$this->assertNull($a);
|
|
$this->assertNotNull($b);
|
|
}
|
|
}
|