forked from laravel/framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPipelineTest.php
More file actions
83 lines (67 loc) · 2.25 KB
/
PipelineTest.php
File metadata and controls
83 lines (67 loc) · 2.25 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<?php
use Illuminate\Pipeline\Pipeline;
class PipelineTest extends PHPUnit_Framework_TestCase
{
public function testPipelineBasicUsage()
{
$pipeTwo = function ($piped, $next) {
$_SERVER['__test.pipe.two'] = $piped;
return $next($piped);
};
$result = (new Pipeline(new Illuminate\Container\Container))
->send('foo')
->through(['PipelineTestPipeOne', $pipeTwo])
->then(function ($piped) {
return $piped;
});
$this->assertEquals('foo', $result);
$this->assertEquals('foo', $_SERVER['__test.pipe.one']);
$this->assertEquals('foo', $_SERVER['__test.pipe.two']);
unset($_SERVER['__test.pipe.one']);
unset($_SERVER['__test.pipe.two']);
}
public function testPipelineUsageWithParameters()
{
$parameters = ['one', 'two'];
$result = (new Pipeline(new Illuminate\Container\Container))
->send('foo')
->through('PipelineTestParameterPipe:'.implode(',', $parameters))
->then(function ($piped) {
return $piped;
});
$this->assertEquals('foo', $result);
$this->assertEquals($parameters, $_SERVER['__test.pipe.parameters']);
unset($_SERVER['__test.pipe.parameters']);
}
public function testPipelineViaChangesTheMethodBeingCalledOnThePipes()
{
$pipelineInstance = new Pipeline(new Illuminate\Container\Container);
$result = $pipelineInstance->send('data')
->through('PipelineTestPipeOne')
->via('differentMethod')
->then(function ($piped) {
return $piped;
});
$this->assertEquals('data', $result);
}
}
class PipelineTestPipeOne
{
public function handle($piped, $next)
{
$_SERVER['__test.pipe.one'] = $piped;
return $next($piped);
}
public function differentMethod($piped, $next)
{
return $next($piped);
}
}
class PipelineTestParameterPipe
{
public function handle($piped, $next, $parameter1 = null, $parameter2 = null)
{
$_SERVER['__test.pipe.parameters'] = [$parameter1, $parameter2];
return $next($piped);
}
}