<?php namespace React\Tests\Socket; use React\Socket\ConnectionInterface; use React\Socket\UnixConnector; class UnixConnectorTest extends TestCase { private $loop; private $connector; public function setUp() { $this->loop = $this->getMockBuilder('React\EventLoop\LoopInterface')->getMock(); $this->connector = new UnixConnector($this->loop); } public function testInvalid() { $promise = $this->connector->connect('google.com:80'); $promise->then(null, $this->expectCallableOnce()); } public function testInvalidScheme() { $promise = $this->connector->connect('tcp://google.com:80'); $promise->then(null, $this->expectCallableOnce()); } public function testValid() { // random unix domain socket path $path = sys_get_temp_dir() . '/test' . uniqid() . '.sock'; // temporarily create unix domain socket server to connect to $server = stream_socket_server('unix://' . $path, $errno, $errstr); // skip test if we can not create a test server (Windows etc.) if (!$server) { $this->markTestSkipped('Unable to create socket "' . $path . '": ' . $errstr . '(' . $errno .')'); return; } // tests succeeds if we get notified of successful connection $promise = $this->connector->connect($path); $promise->then($this->expectCallableOnce()); // remember remote and local address of this connection and close again $remote = $local = false; $promise->then(function(ConnectionInterface $conn) use (&$remote, &$local) { $remote = $conn->getRemoteAddress(); $local = $conn->getLocalAddress(); $conn->close(); }); // clean up server fclose($server); unlink($path); $this->assertNull($local); $this->assertEquals('unix://' . $path, $remote); } }
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
Stub | Folder | 0755 |
|
|
ConnectionTest.php | File | 1.49 KB | 0644 |
|
ConnectorTest.php | File | 4.42 KB | 0644 |
|
DnsConnectorTest.php | File | 4.95 KB | 0644 |
|
FixedUriConnectorTest.php | File | 525 B | 0644 |
|
FunctionalConnectorTest.php | File | 809 B | 0644 |
|
FunctionalSecureServerTest.php | File | 14.39 KB | 0644 |
|
FunctionalTcpServerTest.php | File | 8.95 KB | 0644 |
|
IntegrationTest.php | File | 4.95 KB | 0644 |
|
LimitingServerTest.php | File | 6.03 KB | 0644 |
|
SecureConnectorTest.php | File | 2.71 KB | 0644 |
|
SecureIntegrationTest.php | File | 6.67 KB | 0644 |
|
SecureServerTest.php | File | 3.24 KB | 0644 |
|
ServerTest.php | File | 4.76 KB | 0644 |
|
TcpConnectorTest.php | File | 7.73 KB | 0644 |
|
TcpServerTest.php | File | 7.72 KB | 0644 |
|
TestCase.php | File | 2.66 KB | 0644 |
|
TimeoutConnectorTest.php | File | 3.17 KB | 0644 |
|
UnixConnectorTest.php | File | 1.91 KB | 0644 |
|
UnixServerTest.php | File | 7.69 KB | 0644 |
|