forked from reactphp/http
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLengthLimitedStreamTest.php
More file actions
120 lines (92 loc) · 3.5 KB
/
LengthLimitedStreamTest.php
File metadata and controls
120 lines (92 loc) · 3.5 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<?php
namespace React\Tests\Http;
use React\Http\LengthLimitedStream;
use React\Stream\ReadableStream;
class LengthLimitedStreamTest extends TestCase
{
private $input;
private $stream;
public function setUp()
{
$this->input = new ReadableStream();
}
public function testSimpleChunk()
{
$stream = new LengthLimitedStream($this->input, 5);
$stream->on('data', $this->expectCallableOnceWith('hello'));
$stream->on('end', $this->expectCallableOnce());
$this->input->emit('data', array("hello world"));
}
public function testInputStreamKeepsEmitting()
{
$stream = new LengthLimitedStream($this->input, 5);
$stream->on('data', $this->expectCallableOnceWith('hello'));
$stream->on('end', $this->expectCallableOnce());
$this->input->emit('data', array("hello world"));
$this->input->emit('data', array("world"));
$this->input->emit('data', array("world"));
}
public function testZeroLengthInContentLengthWillIgnoreEmittedDataEvents()
{
$stream = new LengthLimitedStream($this->input, 0);
$stream->on('data', $this->expectCallableNever());
$stream->on('end', $this->expectCallableOnce());
$this->input->emit('data', array("hello world"));
}
public function testHandleError()
{
$stream = new LengthLimitedStream($this->input, 0);
$stream->on('error', $this->expectCallableOnce());
$stream->on('close', $this->expectCallableOnce());
$this->input->emit('error', array(new \RuntimeException()));
$this->assertFalse($stream->isReadable());
}
public function testPauseStream()
{
$input = $this->getMockBuilder('React\Stream\ReadableStreamInterface')->getMock();
$input->expects($this->once())->method('pause');
$stream = new LengthLimitedStream($input, 0);
$stream->pause();
}
public function testResumeStream()
{
$input = $this->getMockBuilder('React\Stream\ReadableStreamInterface')->getMock();
$input->expects($this->once())->method('pause');
$stream = new LengthLimitedStream($input, 0);
$stream->pause();
$stream->resume();
}
public function testPipeStream()
{
$stream = new LengthLimitedStream($this->input, 0);
$dest = $this->getMockBuilder('React\Stream\WritableStreamInterface')->getMock();
$ret = $stream->pipe($dest);
$this->assertSame($dest, $ret);
}
public function testHandleClose()
{
$stream = new LengthLimitedStream($this->input, 0);
$stream->on('close', $this->expectCallableOnce());
$this->input->close();
$this->input->emit('end', array());
$this->assertFalse($stream->isReadable());
}
public function testOutputStreamCanCloseInputStream()
{
$input = new ReadableStream();
$input->on('close', $this->expectCallableOnce());
$stream = new LengthLimitedStream($input, 0);
$stream->on('close', $this->expectCallableOnce());
$stream->close();
$this->assertFalse($input->isReadable());
}
public function testHandleUnexpectedEnd()
{
$stream = new LengthLimitedStream($this->input, 5);
$stream->on('data', $this->expectCallableNever());
$stream->on('close', $this->expectCallableOnce());
$stream->on('end', $this->expectCallableNever());
$stream->on('error', $this->expectCallableOnce());
$this->input->emit('end');
}
}