blob: a47bb30bab4e9b3f88b3da1ebfa0e3f200bb431c (
plain)
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
|
<?php
namespace GuzzleHttp\Tests\Ring\Client;
use GuzzleHttp\Ring\Client\Middleware;
use GuzzleHttp\Ring\Future\CompletedFutureArray;
class MiddlewareTest extends \PHPUnit_Framework_TestCase
{
public function testFutureCallsDefaultHandler()
{
$future = new CompletedFutureArray(['status' => 200]);
$calledA = false;
$a = function (array $req) use (&$calledA, $future) {
$calledA = true;
return $future;
};
$calledB = false;
$b = function (array $req) use (&$calledB) { $calledB = true; };
$s = Middleware::wrapFuture($a, $b);
$s([]);
$this->assertTrue($calledA);
$this->assertFalse($calledB);
}
public function testFutureCallsStreamingHandler()
{
$future = new CompletedFutureArray(['status' => 200]);
$calledA = false;
$a = function (array $req) use (&$calledA) { $calledA = true; };
$calledB = false;
$b = function (array $req) use (&$calledB, $future) {
$calledB = true;
return $future;
};
$s = Middleware::wrapFuture($a, $b);
$result = $s(['client' => ['future' => true]]);
$this->assertFalse($calledA);
$this->assertTrue($calledB);
$this->assertSame($future, $result);
}
public function testStreamingCallsDefaultHandler()
{
$calledA = false;
$a = function (array $req) use (&$calledA) { $calledA = true; };
$calledB = false;
$b = function (array $req) use (&$calledB) { $calledB = true; };
$s = Middleware::wrapStreaming($a, $b);
$s([]);
$this->assertTrue($calledA);
$this->assertFalse($calledB);
}
public function testStreamingCallsStreamingHandler()
{
$calledA = false;
$a = function (array $req) use (&$calledA) { $calledA = true; };
$calledB = false;
$b = function (array $req) use (&$calledB) { $calledB = true; };
$s = Middleware::wrapStreaming($a, $b);
$s(['client' => ['stream' => true]]);
$this->assertFalse($calledA);
$this->assertTrue($calledB);
}
}
|