-
-
Notifications
You must be signed in to change notification settings - Fork 166
Expand file tree
/
Copy pathHttpBodyStreamTest.php
More file actions
170 lines (135 loc) · 4.19 KB
/
Copy pathHttpBodyStreamTest.php
File metadata and controls
170 lines (135 loc) · 4.19 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
<?php
namespace React\Tests\Http\Io;
use React\Http\Io\HttpBodyStream;
use React\Stream\ReadableStreamInterface;
use React\Stream\ThroughStream;
use React\Stream\WritableStreamInterface;
use React\Tests\Http\TestCase;
class HttpBodyStreamTest extends TestCase
{
private $input;
private $bodyStream;
/**
* @before
*/
public function setUpBodyStream()
{
$this->input = new ThroughStream();
$this->bodyStream = new HttpBodyStream($this->input, null);
}
public function testDataEmit()
{
$this->bodyStream->on('data', $this->expectCallableOnce(["hello"]));
$this->input->emit('data', ["hello"]);
}
public function testPauseStream()
{
$input = $this->createMock(ReadableStreamInterface::class);
$input->expects($this->once())->method('pause');
$bodyStream = new HttpBodyStream($input, null);
$bodyStream->pause();
}
public function testResumeStream()
{
$input = $this->createMock(ReadableStreamInterface::class);
$input->expects($this->once())->method('resume');
$bodyStream = new HttpBodyStream($input, null);
$bodyStream->resume();
}
public function testPipeStream()
{
$dest = $this->createMock(WritableStreamInterface::class);
$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', []);
$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(["hello"]));
$this->input->emit('data', ["hello"]);
$bodyStream->close();
$this->input->emit('data', ["world"]);
}
public function testHandleError()
{
$this->bodyStream->on('error', $this->expectCallableOnce());
$this->bodyStream->on('close', $this->expectCallableOnce());
$this->input->emit('error', [new \RuntimeException()]);
$this->assertFalse($this->bodyStream->isReadable());
}
public function testToString()
{
$this->assertEquals('', $this->bodyStream->__toString());
}
public function testDetach()
{
$this->assertNull($this->bodyStream->detach());
}
public function testGetSizeDefault()
{
$this->assertNull($this->bodyStream->getSize());
}
public function testGetSizeCustom()
{
$stream = new HttpBodyStream($this->input, 5);
$this->assertEquals(5, $stream->getSize());
}
public function testTell()
{
$this->expectException(\BadMethodCallException::class);
$this->bodyStream->tell();
}
public function testEof()
{
$this->expectException(\BadMethodCallException::class);
$this->bodyStream->eof();
}
public function testIsSeekable()
{
$this->assertFalse($this->bodyStream->isSeekable());
}
public function testWrite()
{
$this->expectException(\BadMethodCallException::class);
$this->bodyStream->write('');
}
public function testRead()
{
$this->expectException(\BadMethodCallException::class);
$this->bodyStream->read('');
}
public function testGetContents()
{
$this->assertEquals('', $this->bodyStream->getContents());
}
public function testGetMetaData()
{
$this->assertNull($this->bodyStream->getMetadata());
}
public function testIsReadable()
{
$this->assertTrue($this->bodyStream->isReadable());
}
public function testSeek()
{
$this->expectException(\BadMethodCallException::class);
$this->bodyStream->seek('');
}
public function testRewind()
{
$this->expectException(\BadMethodCallException::class);
$this->bodyStream->rewind();
}
public function testIsWriteable()
{
$this->assertFalse($this->bodyStream->isWritable());
}
}