
AbFuzzyServer is now first class EchoServer Updated meta files Cleaned up a WAMP unit test slightly composer alpha7
27 lines
808 B
PHP
27 lines
808 B
PHP
<?php
|
|
namespace Ratchet\Tests\Server;
|
|
use Ratchet\Server\EchoServer;
|
|
|
|
class EchoServerTest extends \PHPUnit_Framework_TestCase {
|
|
protected $_conn;
|
|
protected $_comp;
|
|
|
|
public function setUp() {
|
|
$this->_conn = $this->getMock('\Ratchet\ConnectionInterface');
|
|
$this->_comp = new EchoServer;
|
|
}
|
|
|
|
public function testMessageEchod() {
|
|
$message = 'Tillsonburg, my back still aches when I hear that word.';
|
|
$this->_conn->expects($this->once())->method('send')->with($message);
|
|
$this->_comp->onMessage($this->_conn, $message);
|
|
}
|
|
|
|
public function testErrorClosesConnection() {
|
|
ob_start();
|
|
$this->_conn->expects($this->once())->method('close');
|
|
$this->_comp->onError($this->_conn, new \Exception);
|
|
ob_end_clean();
|
|
}
|
|
}
|