-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLineReaderTest.php
144 lines (116 loc) · 3.37 KB
/
LineReaderTest.php
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
<?php
use React\Stream\ReadableStream;
use Legionth\React\LineReader\LineReader;
class LineReaderTest extends TestCase
{
public function setUp()
{
$this->lineReader = new LineReader();
$this->input = new ReadableStream();
$this->input->pipe($this->lineReader);
}
public function testMethodIsCalled()
{
$this->lineReader->on('data', $this->expectCallableOnceWith('hello' . PHP_EOL));
$this->input->emit('data', array(
'hello' . PHP_EOL
));
}
public function testSeperatedData()
{
$this->lineReader->on('data', $this->expectCallableOnceWith('helloworld' . PHP_EOL));
$this->input->emit('data', array(
'hello'
));
$this->input->emit('data', array(
'world' . PHP_EOL
));
}
public function testWithLineBreak()
{
$this->lineReader->on('data', $this->expectCallableOnceWith('hello' . PHP_EOL));
$this->input->emit('data', array(
'hello' . PHP_EOL . 'world'
));
}
public function testDoubleLineBreak()
{
$expectedValues = array(
'hello' . PHP_EOL,
'world' . PHP_EOL
);
$this->lineReader->on('data', $this->expectCallableConsecutive(2, $expectedValues));
$this->input->emit('data', array(
'hello' . PHP_EOL . 'world' . PHP_EOL
));
}
public function testPauseStream()
{
$parser = new LineReader();
$parser->pause();
}
public function testResumeStream()
{
$parser = new LineReader();
$parser->pause();
$parser->resume();
}
public function testPipeStream()
{
$dest = $this->getMockBuilder('React\Stream\WritableStreamInterface')->getMock();
$ret = $this->lineReader->pipe($dest);
$this->assertSame($dest, $ret);
}
public function testEnd()
{
$lineReader = new LineReader();
$lineReader->end();
}
public function testClose()
{
$lineReader = new LineReader();
$lineReader->close();
}
public function testIsReadable()
{
$lineReader = new LineReader();
$actual = $lineReader->isReadable();
$this->assertTrue($actual);
}
public function testIsWritable()
{
$lineReader = new LineReader();
$actual = $lineReader->isWritable();
$this->assertTrue($actual);
}
public function testStreamIsAlreadyClosed()
{
$lineReader = new LineReader();
$lineReader->close();
$lineReader->close();
}
public function testDefinedEolWillSeperateStrings()
{
$lineReader = new LineReader('you');
$input = new ReadableStream();
$input->pipe($lineReader);
$expectedValues = array(
'hello you',
' world you'
);
$lineReader->on('data', $this->expectCallableConsecutive(2, $expectedValues));
$input->emit('data', array(
'hello you world you'
));
}
private function expectCallableConsecutive($numberOfCalls, array $with)
{
$mock = $this->createCallableMock();
for ($i = 0; $i < $numberOfCalls; $i ++) {
$mock->expects($this->at($i))
->method('__invoke')
->with($this->equalTo($with[$i]));
}
return $mock;
}
}