forked from reactphp/datagram
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFactoryTest.php
More file actions
178 lines (131 loc) · 6.07 KB
/
FactoryTest.php
File metadata and controls
178 lines (131 loc) · 6.07 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
<?php
use React\Datagram\Socket;
use React\Datagram\Factory;
use Clue\React\Block;
use React\Promise;
class FactoryTest extends TestCase
{
private $loop;
private $resolver;
private $factory;
public function setUp()
{
$this->loop = React\EventLoop\Factory::create();
$this->resolver = $this->createResolverMock();
$this->factory = new Factory($this->loop, $this->resolver);
}
public function testCreateClient()
{
$this->resolver->expects($this->never())->method('resolve');
$promise = $this->factory->createClient('127.0.0.1:12345');
$capturedClient = Block\await($promise, $this->loop);
$this->assertInstanceOf('React\Datagram\Socket', $capturedClient);
$this->assertEquals('127.0.0.1:12345', $capturedClient->getRemoteAddress());
$this->assertContains('127.0.0.1:', $capturedClient->getLocalAddress());
$this->assertNotEquals('127.0.0.1:12345', $capturedClient->getLocalAddress());
$capturedClient->close();
$this->assertNull($capturedClient->getRemoteAddress());
}
public function testCreateClientLocalhost()
{
$this->resolver->expects($this->once())->method('resolve')->with('localhost')->willReturn(Promise\resolve('127.0.0.1'));
$promise = $this->factory->createClient('localhost:12345');
$capturedClient = Block\await($promise, $this->loop);
$this->assertInstanceOf('React\Datagram\Socket', $capturedClient);
$this->assertEquals('127.0.0.1:12345', $capturedClient->getRemoteAddress());
$this->assertContains('127.0.0.1:', $capturedClient->getLocalAddress());
$this->assertNotEquals('127.0.0.1:12345', $capturedClient->getLocalAddress());
$capturedClient->close();
}
public function testCreateClientIpv6()
{
$promise = $this->factory->createClient('[::1]:12345');
try {
$capturedClient = Block\await($promise, $this->loop);
} catch (\Exception $e) {
$this->markTestSkipped('Unable to start IPv6 client socket (IPv6 not supported on this system?)');
}
$this->assertInstanceOf('React\Datagram\Socket', $capturedClient);
$this->assertEquals('[::1]:12345', $capturedClient->getRemoteAddress());
$this->assertContains('[::1]:', $capturedClient->getLocalAddress());
$this->assertNotEquals('[::1]:12345', $capturedClient->getLocalAddress());
$capturedClient->close();
}
public function testCreateServer()
{
$promise = $this->factory->createServer('127.0.0.1:12345');
$capturedServer = Block\await($promise, $this->loop);
$this->assertInstanceOf('React\Datagram\Socket', $capturedServer);
$this->assertEquals('127.0.0.1:12345', $capturedServer->getLocalAddress());
$this->assertNull($capturedServer->getRemoteAddress());
$capturedServer->close();
$this->assertNull($capturedServer->getLocalAddress());
}
public function testCreateServerRandomPort()
{
$promise = $this->factory->createServer('127.0.0.1:0');
$capturedServer = Block\await($promise, $this->loop);
$this->assertInstanceOf('React\Datagram\Socket', $capturedServer);
$this->assertNotEquals('127.0.0.1:0', $capturedServer->getLocalAddress());
$this->assertNull($capturedServer->getRemoteAddress());
$capturedServer->close();
}
public function testCreateClientWithIpWillNotUseResolver()
{
$this->resolver->expects($this->never())->method('resolve');
$client = Block\await($this->factory->createClient('127.0.0.1:0'), $this->loop);
$client->close();
}
public function testCreateClientWithHostnameWillUseResolver()
{
$this->resolver->expects($this->once())->method('resolve')->with('example.com')->willReturn(Promise\resolve('127.0.0.1'));
$client = Block\await($this->factory->createClient('example.com:0'), $this->loop);
$client->close();
}
public function testCreateClientWithHostnameWillRejectIfResolverRejects()
{
$this->resolver->expects($this->once())->method('resolve')->with('example.com')->willReturn(Promise\reject(new \RuntimeException('test')));
$this->setExpectedException('RuntimeException');
Block\await($this->factory->createClient('example.com:0'), $this->loop);
}
public function testCreateClientWithHostnameWillRejectIfNoResolverIsGiven()
{
$this->factory = new Factory($this->loop);
$this->setExpectedException('Exception');
Block\await($this->factory->createClient('example.com:0'), $this->loop);
}
/**
* @expectedException Exception
* @expectedExceptionMessage Unable to create client socket
*/
public function testCreateClientWithInvalidHostnameWillReject()
{
Block\await($this->factory->createClient('/////'), $this->loop);
}
/**
* @expectedException Exception
* @expectedExceptionMessage Unable to create server socket
*/
public function testCreateServerWithInvalidHostnameWillReject()
{
Block\await($this->factory->createServer('/////'), $this->loop);
}
public function testCancelCreateClientWithCancellableHostnameResolver()
{
$promise = new Promise\Promise(function () { }, $this->expectCallableOnce());
$this->resolver->expects($this->once())->method('resolve')->with('example.com')->willReturn($promise);
$promise = $this->factory->createClient('example.com:0');
$promise->cancel();
$this->setExpectedException('RuntimeException');
Block\await($promise, $this->loop);
}
public function testCancelCreateClientWithUncancellableHostnameResolver()
{
$promise = $this->getMockBuilder('React\Promise\PromiseInterface')->getMock();
$this->resolver->expects($this->once())->method('resolve')->with('example.com')->willReturn($promise);
$promise = $this->factory->createClient('example.com:0');
$promise->cancel();
$this->setExpectedException('RuntimeException');
Block\await($promise, $this->loop);
}
}