init
This commit is contained in:
47
vendor/react/socket/tests/ConnectionTest.php
vendored
Executable file
47
vendor/react/socket/tests/ConnectionTest.php
vendored
Executable file
@@ -0,0 +1,47 @@
|
||||
<?php
|
||||
|
||||
namespace React\Tests\Socket;
|
||||
|
||||
use React\Socket\Connection;
|
||||
|
||||
class ConnectionTest extends TestCase
|
||||
{
|
||||
public function testCloseConnectionWillCloseSocketResource()
|
||||
{
|
||||
if (defined('HHVM_VERSION')) {
|
||||
$this->markTestSkipped('HHVM does not support socket operation on test memory stream');
|
||||
}
|
||||
|
||||
$resource = fopen('php://memory', 'r+');
|
||||
$loop = $this->getMockBuilder('React\EventLoop\LoopInterface')->getMock();
|
||||
|
||||
$connection = new Connection($resource, $loop);
|
||||
$connection->close();
|
||||
|
||||
$this->assertFalse(is_resource($resource));
|
||||
}
|
||||
|
||||
public function testCloseConnectionWillRemoveResourceFromLoopBeforeClosingResource()
|
||||
{
|
||||
if (defined('HHVM_VERSION')) {
|
||||
$this->markTestSkipped('HHVM does not support socket operation on test memory stream');
|
||||
}
|
||||
|
||||
$resource = fopen('php://memory', 'r+');
|
||||
$loop = $this->getMockBuilder('React\EventLoop\LoopInterface')->getMock();
|
||||
$loop->expects($this->once())->method('addWriteStream')->with($resource);
|
||||
|
||||
$onRemove = null;
|
||||
$loop->expects($this->once())->method('removeWriteStream')->with($this->callback(function ($param) use (&$onRemove) {
|
||||
$onRemove = is_resource($param);
|
||||
return true;
|
||||
}));
|
||||
|
||||
$connection = new Connection($resource, $loop);
|
||||
$connection->write('test');
|
||||
$connection->close();
|
||||
|
||||
$this->assertTrue($onRemove);
|
||||
$this->assertFalse(is_resource($resource));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user