forked from clue/reactphp-connection-manager-extra
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConnectionManagerSelectiveTest.php
More file actions
212 lines (169 loc) · 6.58 KB
/
ConnectionManagerSelectiveTest.php
File metadata and controls
212 lines (169 loc) · 6.58 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
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
<?php
namespace ConnectionManager\Tests\Extra\Multiple;
use ConnectionManager\Extra\Multiple\ConnectionManagerSelective;
use ConnectionManager\Extra\ConnectionManagerReject;
use ConnectionManager\Tests\Extra\TestCase;
class ConnectionManagerSelectiveTest extends TestCase
{
public function testEmptyWillAlwaysReject()
{
$cm = new ConnectionManagerSelective(array());
$promise = $cm->connect('www.google.com:80');
$this->assertPromiseReject($promise);
}
public function testInvalidUriWillAlwaysReject()
{
$cm = new ConnectionManagerSelective(array());
$promise = $cm->connect('////');
$this->assertPromiseReject($promise);
}
public function testInvalidConnectorThrowsException()
{
$this->setExpectedException("InvalidArgumentException");
new ConnectionManagerSelective(array(
'example.com' => false
));
}
public function provideInvalidMatcher()
{
return array(
'empty' => array(
''
),
'no port' => array(
'*:'
),
'no host' => array(
':80'
),
'no nothing' => array(
':'
),
'wildcard port' => array(
'example.com:*'
),
'not a port' => array(
'example.com:nope'
),
'port min bigger max' => array(
'example.com:100-10'
),
'port invalid range no max' => array(
'example.com:100-'
),
'port invalid range no min' => array(
'example.com:-1000'
),
'port invalid range no min max' => array(
'example.com:-'
)
);
}
/**
* @dataProvider provideInvalidMatcher
*
* @param string $matcher
*/
public function testInvalidMatcherThrowsException($matcher)
{
$connector = $this->getMockBuilder('React\Socket\ConnectorInterface')->getMock();
$this->setExpectedException("InvalidArgumentException");
new ConnectionManagerSelective(array(
$matcher => $connector
));
}
public function testExactDomainMatchForwardsToConnector()
{
$promise = $this->getMockBuilder('React\Promise\PromiseInterface')->getMock();
$connector = $this->getMockBuilder('React\Socket\ConnectorInterface')->getMock();
$connector->expects($this->once())->method('connect')->with('example.com:80')->willReturn($promise);
$cm = new ConnectionManagerSelective(array(
'example.com' => $connector
));
$ret = $cm->connect('example.com:80');
$this->assertSame($promise, $ret);
}
public function testExactIpv6MatchForwardsToConnector()
{
$promise = $this->getMockBuilder('React\Promise\PromiseInterface')->getMock();
$connector = $this->getMockBuilder('React\Socket\ConnectorInterface')->getMock();
$connector->expects($this->once())->method('connect')->with('[::1]:80')->willReturn($promise);
$cm = new ConnectionManagerSelective(array(
'::1' => $connector
));
$ret = $cm->connect('[::1]:80');
$this->assertSame($promise, $ret);
}
public function testExactIpv6WithPortMatchForwardsToConnector()
{
$promise = $this->getMockBuilder('React\Promise\PromiseInterface')->getMock();
$connector = $this->getMockBuilder('React\Socket\ConnectorInterface')->getMock();
$connector->expects($this->once())->method('connect')->with('[::1]:80')->willReturn($promise);
$cm = new ConnectionManagerSelective(array(
'[::1]:80' => $connector
));
$ret = $cm->connect('[::1]:80');
$this->assertSame($promise, $ret);
}
public function testNotMatchingDomainWillReject()
{
$connector = $this->getMockBuilder('React\Socket\ConnectorInterface')->getMock();
$connector->expects($this->never())->method('connect');
$cm = new ConnectionManagerSelective(array(
'example.com' => $connector
));
$promise = $cm->connect('other.example.com:80');
$this->assertPromiseReject($promise);
}
public function testRejectIfNotMatching()
{
$will = $this->createConnectionManagerMock(true);
$cm = new ConnectionManagerSelective(array(
'www.google.com:443' => $will,
'www.youtube.com' => $will
));
$this->assertPromiseResolve($cm->connect('www.google.com:443'));
$this->assertPromiseResolve($cm->connect('tls://www.google.com:443'));
$this->assertPromiseReject($cm->connect('www.google.com:80'));
$this->assertPromiseReject($cm->connect('tcp://www.google.com:80'));
$this->assertPromiseResolve($cm->connect('www.youtube.com:80'));
$this->assertPromiseResolve($cm->connect('tcp://www.youtube.com:80'));
}
public function testFirstEntryWinsIfMultipleMatch()
{
$wont = new ConnectionManagerReject();
$will = $this->createConnectionManagerMock(true);
$cm = new ConnectionManagerSelective(array(
'www.google.com:443' => $will,
'*' => $wont
));
$this->assertPromiseResolve($cm->connect('www.google.com:443'));
$this->assertPromiseReject($cm->connect('www.google.com:80'));
}
public function testWildcardsMatch()
{
$will = $this->createConnectionManagerMock(true);
$cm = new ConnectionManagerSelective(array(
'*.com' => $will,
'*:443-444' => $will,
'*:8080' => $will,
'*.youtube.*' => $will,
'youtube.*' => $will,
));
$this->assertPromiseResolve($cm->connect('www.google.com:80'));
$this->assertPromiseReject($cm->connect('www.google.de:80'));
$this->assertPromiseResolve($cm->connect('www.google.de:443'));
$this->assertPromiseResolve($cm->connect('www.google.de:444'));
$this->assertPromiseResolve($cm->connect('www.google.de:8080'));
$this->assertPromiseReject($cm->connect('www.google.de:445'));
$this->assertPromiseResolve($cm->connect('www.youtube.de:80'));
$this->assertPromiseResolve($cm->connect('download.youtube.de:80'));
$this->assertPromiseResolve($cm->connect('youtube.de:80'));
}
private function createLoopMock()
{
return $this->getMockBuilder('React\EventLoop\StreamSelectLoop')
->disableOriginalConstructor()
->getMock();
}
}