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
|
<?php
namespace React\Tests\Socket;
use Clue\React\Block;
use React\Dns\Resolver\Factory as ResolverFactory;
use React\EventLoop\Factory;
use React\Socket\Connector;
use React\Socket\DnsConnector;
use React\Socket\SecureConnector;
use React\Socket\TcpConnector;
/** @group internet */
class IntegrationTest extends TestCase
{
const TIMEOUT = 5.0;
/** @test */
public function gettingStuffFromGoogleShouldWork()
{
$loop = Factory::create();
$connector = new Connector($loop);
$conn = Block\await($connector->connect('google.com:80'), $loop);
$this->assertContains(':80', $conn->getRemoteAddress());
$this->assertNotEquals('google.com:80', $conn->getRemoteAddress());
$conn->write("GET / HTTP/1.0\r\n\r\n");
$response = $this->buffer($conn, $loop, self::TIMEOUT);
$this->assertRegExp('#^HTTP/1\.0#', $response);
}
/** @test */
public function gettingEncryptedStuffFromGoogleShouldWork()
{
if (!function_exists('stream_socket_enable_crypto')) {
$this->markTestSkipped('Not supported on your platform (outdated HHVM?)');
}
$loop = Factory::create();
$secureConnector = new Connector($loop);
$conn = Block\await($secureConnector->connect('tls://google.com:443'), $loop);
$conn->write("GET / HTTP/1.0\r\n\r\n");
$response = $this->buffer($conn, $loop, self::TIMEOUT);
$this->assertRegExp('#^HTTP/1\.0#', $response);
}
/** @test */
public function gettingEncryptedStuffFromGoogleShouldWorkIfHostIsResolvedFirst()
{
if (!function_exists('stream_socket_enable_crypto')) {
$this->markTestSkipped('Not supported on your platform (outdated HHVM?)');
}
$loop = Factory::create();
$factory = new ResolverFactory();
$dns = $factory->create('8.8.8.8', $loop);
$connector = new DnsConnector(
new SecureConnector(
new TcpConnector($loop),
$loop
),
$dns
);
$conn = Block\await($connector->connect('google.com:443'), $loop);
$conn->write("GET / HTTP/1.0\r\n\r\n");
$response = $this->buffer($conn, $loop, self::TIMEOUT);
$this->assertRegExp('#^HTTP/1\.0#', $response);
}
/** @test */
public function gettingPlaintextStuffFromEncryptedGoogleShouldNotWork()
{
$loop = Factory::create();
$connector = new Connector($loop);
$conn = Block\await($connector->connect('google.com:443'), $loop);
$this->assertContains(':443', $conn->getRemoteAddress());
$this->assertNotEquals('google.com:443', $conn->getRemoteAddress());
$conn->write("GET / HTTP/1.0\r\n\r\n");
$response = $this->buffer($conn, $loop, self::TIMEOUT);
$this->assertNotRegExp('#^HTTP/1\.0#', $response);
}
public function testConnectingFailsIfDnsUsesInvalidResolver()
{
$loop = Factory::create();
$factory = new ResolverFactory();
$dns = $factory->create('demo.invalid', $loop);
$connector = new Connector($loop, array(
'dns' => $dns
));
$this->setExpectedException('RuntimeException');
Block\await($connector->connect('google.com:80'), $loop, self::TIMEOUT);
}
public function testConnectingFailsIfTimeoutIsTooSmall()
{
if (!function_exists('stream_socket_enable_crypto')) {
$this->markTestSkipped('Not supported on your platform (outdated HHVM?)');
}
$loop = Factory::create();
$connector = new Connector($loop, array(
'timeout' => 0.001
));
$this->setExpectedException('RuntimeException');
Block\await($connector->connect('google.com:80'), $loop, self::TIMEOUT);
}
public function testSelfSignedRejectsIfVerificationIsEnabled()
{
if (!function_exists('stream_socket_enable_crypto')) {
$this->markTestSkipped('Not supported on your platform (outdated HHVM?)');
}
$loop = Factory::create();
$connector = new Connector($loop, array(
'tls' => array(
'verify_peer' => true
)
));
$this->setExpectedException('RuntimeException');
Block\await($connector->connect('tls://self-signed.badssl.com:443'), $loop, self::TIMEOUT);
}
public function testSelfSignedResolvesIfVerificationIsDisabled()
{
if (!function_exists('stream_socket_enable_crypto')) {
$this->markTestSkipped('Not supported on your platform (outdated HHVM?)');
}
$loop = Factory::create();
$connector = new Connector($loop, array(
'tls' => array(
'verify_peer' => false
)
));
$conn = Block\await($connector->connect('tls://self-signed.badssl.com:443'), $loop, self::TIMEOUT);
$conn->close();
// if we reach this, then everything is good
$this->assertNull(null);
}
}
|