-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHttpBodyStreamTest.php
More file actions
193 lines (154 loc) · 4.52 KB
/
HttpBodyStreamTest.php
File metadata and controls
193 lines (154 loc) · 4.52 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
<?php
use Legionth\React\Http\HttpBodyStream;
use React\Stream\ReadableStream;
class HttpBodyStreamTest extends TestCase
{
private $input;
private $bodyStream;
public function setUp()
{
$loop = $this->getMockBuilder('\React\EventLoop\LoopInterface')
->getMock();
$this->input = new \React\Stream\ReadableResourceStream(
fopen('php://temp', 'r+'),
$loop
);
$this->bodyStream = new HttpBodyStream($this->input, null);
}
public function testDataEmit()
{
$this->bodyStream->on('data', $this->expectCallableOnce(array("hello")));
$this->input->emit('data', array("hello"));
}
public function testPauseStream()
{
$input = $this->getMockBuilder('React\Stream\ReadableStreamInterface')->getMock();
$input->expects($this->once())->method('pause');
$bodyStream = new HttpBodyStream($input, null);
$bodyStream->pause();
}
public function testResumeStream()
{
$input = $this->getMockBuilder('React\Stream\ReadableStreamInterface')->getMock();
$input->expects($this->once())->method('pause');
$bodyStream = new HttpBodyStream($input, null);
$bodyStream->pause();
$bodyStream->resume();
}
public function testPipeStream()
{
$dest = $this->getMockBuilder('React\Stream\WritableStreamInterface')->getMock();
$ret = $this->bodyStream->pipe($dest);
$this->assertSame($dest, $ret);
}
public function testHandleClose()
{
$this->bodyStream->on('close', $this->expectCallableOnce());
$this->input->close();
$this->input->emit('end', array());
$this->assertFalse($this->bodyStream->isReadable());
}
public function testStopDataEmittingAfterClose()
{
$bodyStream = new HttpBodyStream($this->input, null);
$bodyStream->on('close', $this->expectCallableOnce());
$this->bodyStream->on('data', $this->expectCallableOnce(array("hello")));
$this->input->emit('data', array("hello"));
$bodyStream->close();
$this->input->emit('data', array("world"));
}
public function testHandleError()
{
$this->bodyStream->on('error', $this->expectCallableOnce());
$this->bodyStream->on('close', $this->expectCallableOnce());
$this->input->emit('error', array(new \RuntimeException()));
$this->assertFalse($this->bodyStream->isReadable());
}
public function testToString()
{
$this->assertEquals('', $this->bodyStream->__toString());
}
public function testDetach()
{
$this->assertEquals(null, $this->bodyStream->detach());
}
public function testGetSizeDefault()
{
$this->assertEquals(null, $this->bodyStream->getSize());
}
public function testGetSizeCustom()
{
$stream = new HttpBodyStream($this->input, 5);
$this->assertEquals(5, $stream->getSize());
}
/**
* @expectedException BadMethodCallException
*/
public function testTell()
{
$this->bodyStream->tell();
}
/**
* @expectedException BadMethodCallException
*/
public function testEof()
{
$this->bodyStream->eof();
}
public function testIsSeekable()
{
$this->assertFalse($this->bodyStream->isSeekable());
}
/**
* @expectedException BadMethodCallException
*/
public function testWrite()
{
$this->bodyStream->write('');
}
/**
* @expectedException BadMethodCallException
*/
public function testRead()
{
$this->bodyStream->read('');
}
public function testGetContents()
{
$this->assertEquals('', $this->bodyStream->getContents());
}
public function testGetMetaData()
{
$this->assertEquals(null, $this->bodyStream->getMetadata());
}
public function testIsReadable()
{
$this->assertTrue($this->bodyStream->isReadable());
}
public function testPause()
{
$this->bodyStream->pause();
}
public function testResume()
{
$this->bodyStream->resume();
}
/**
* @expectedException BadMethodCallException
*/
public function testSeek()
{
$this->bodyStream->seek('');
}
/**
* @expectedException BadMethodCallException
*/
public function testRewind()
{
$this->bodyStream->rewind();
}
public function testIsWriteable()
{
$this->assertFalse($this->bodyStream->isWritable());
}
}