32 lines
		
	
	
		
			872 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			872 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
namespace Ratchet\Tests\Application\Server;
 | 
						|
use Ratchet\Server\IoConnection;
 | 
						|
 | 
						|
/**
 | 
						|
 * @covers Ratchet\Server\IoConnection
 | 
						|
 */
 | 
						|
class IoConnectionTest extends \PHPUnit_Framework_TestCase {
 | 
						|
    protected $sock;
 | 
						|
    protected $conn;
 | 
						|
 | 
						|
    public function setUp() {
 | 
						|
        $this->sock = $this->getMock('\\React\\Socket\\ConnectionInterface');
 | 
						|
        $this->conn = new IoConnection($this->sock);
 | 
						|
    }
 | 
						|
 | 
						|
    public function testCloseBubbles() {
 | 
						|
        $this->sock->expects($this->once())->method('end');
 | 
						|
        $this->conn->close();
 | 
						|
    }
 | 
						|
 | 
						|
    public function testSendBubbles() {
 | 
						|
        $msg = '6 hour rides are productive';
 | 
						|
 | 
						|
        $this->sock->expects($this->once())->method('write')->with($msg);
 | 
						|
        $this->conn->send($msg);
 | 
						|
    }
 | 
						|
 | 
						|
    public function testSendReturnsSelf() {
 | 
						|
        $this->assertSame($this->conn, $this->conn->send('fluent interface'));
 | 
						|
    }
 | 
						|
} |