12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <?php
- namespace GuzzleHttp\Test\Handler;
- use GuzzleHttp\Handler\MockHandler;
- use GuzzleHttp\Handler\Proxy;
- use GuzzleHttp\Psr7\Request;
- use GuzzleHttp\RequestOptions;
- use PHPUnit\Framework\TestCase;
- /**
- * @covers \GuzzleHttp\Handler\Proxy
- */
- class ProxyTest extends TestCase
- {
- 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'), []);
- $this->assertNotNull($a);
- $this->assertNull($b);
- }
- 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'), [RequestOptions::SYNCHRONOUS => 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);
- }
- }
|