blob: 0b3a7025412d9f3a11ab64bef63b1ed848d291e7 (
plain) (
blame)
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
|
<?php
namespace React\Tests\Socket;
use React\Promise;
use React\Socket\SecureConnector;
class SecureConnectorTest extends TestCase
{
private $loop;
private $tcp;
private $connector;
public function setUp()
{
if (!function_exists('stream_socket_enable_crypto')) {
$this->markTestSkipped('Not supported on your platform (outdated HHVM?)');
}
$this->loop = $this->getMockBuilder('React\EventLoop\LoopInterface')->getMock();
$this->tcp = $this->getMockBuilder('React\Socket\ConnectorInterface')->getMock();
$this->connector = new SecureConnector($this->tcp, $this->loop);
}
public function testConnectionWillWaitForTcpConnection()
{
$pending = new Promise\Promise(function () { });
$this->tcp->expects($this->once())->method('connect')->with($this->equalTo('example.com:80'))->will($this->returnValue($pending));
$promise = $this->connector->connect('example.com:80');
$this->assertInstanceOf('React\Promise\PromiseInterface', $promise);
}
public function testConnectionWithCompleteUriWillBePassedThroughExpectForScheme()
{
$pending = new Promise\Promise(function () { });
$this->tcp->expects($this->once())->method('connect')->with($this->equalTo('example.com:80/path?query#fragment'))->will($this->returnValue($pending));
$this->connector->connect('tls://example.com:80/path?query#fragment');
}
public function testConnectionToInvalidSchemeWillReject()
{
$this->tcp->expects($this->never())->method('connect');
$promise = $this->connector->connect('tcp://example.com:80');
$promise->then(null, $this->expectCallableOnce());
}
public function testCancelDuringTcpConnectionCancelsTcpConnection()
{
$pending = new Promise\Promise(function () { }, function () { throw new \Exception(); });
$this->tcp->expects($this->once())->method('connect')->with($this->equalTo('example.com:80'))->will($this->returnValue($pending));
$promise = $this->connector->connect('example.com:80');
$promise->cancel();
$promise->then($this->expectCallableNever(), $this->expectCallableOnce());
}
public function testConnectionWillBeClosedAndRejectedIfConnectioIsNoStream()
{
$connection = $this->getMockBuilder('React\Socket\ConnectionInterface')->getMock();
$connection->expects($this->once())->method('close');
$this->tcp->expects($this->once())->method('connect')->with($this->equalTo('example.com:80'))->willReturn(Promise\resolve($connection));
$promise = $this->connector->connect('example.com:80');
$promise->then($this->expectCallableNever(), $this->expectCallableOnce());
}
}
|