mirror of
https://github.com/predis/predis.git
synced 2026-08-24 21:49:33 +00:00
373d30b070
Status response objects are needed mostly to make it possible from the
client perspective to differentiate a status response with the payload
"OK" from a normale bulk reply containing "OK".
The biggest change is for commands returning +OK responses: these were
previously translated to TRUE (bool value), but they are now returned
as instances of Predis\Response\Status. Just to illustrate an example
of the possibilities with this change we will use SET since it is the
most widely used command returning +OK:
$response = $client->set('foo', 'bar');
echo $response; // 'OK'
$response == 'OK'; // TRUE
isset($response->ok); // TRUE
$response == true; // TRUE
$response === true; // FALSE
$response instanceof Predis\Response\ObjectInterface; // TRUE
$response instanceof Predis\Response\Status; // TRUE
For those checking responses returned by commands such as SET or PONG,
the breaking change basically lies in the usage of strict comparison:
doing $response === true will now evaluate to FALSE instead of TRUE.
By default Predis caches common status responses such as OK or QUEUED
to lower the memory usage when using pipelines or transactions.
187 lines
6.1 KiB
PHP
187 lines
6.1 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the Predis package.
|
|
*
|
|
* (c) Daniele Alessandri <suppakilla@gmail.com>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Predis\Connection;
|
|
|
|
use PredisTestCase;
|
|
use Predis\Profile;
|
|
|
|
/**
|
|
* @group ext-curl
|
|
* @group ext-phpiredis
|
|
* @group realm-connection
|
|
* @group realm-webdis
|
|
*/
|
|
class WebdisConnectionTest extends PredisTestCase
|
|
{
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testIsConnectedAlwaysReturnsTrue()
|
|
{
|
|
$connection = new WebdisConnection($this->getParameters());
|
|
|
|
$this->assertTrue($connection->isConnected());
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
* @expectedException Predis\NotSupportedException
|
|
* @expectedExceptionMessage The method Predis\Connection\WebdisConnection::writeRequest() is not supported
|
|
*/
|
|
public function testWritingCommandsIsNotSupported()
|
|
{
|
|
$connection = new WebdisConnection($this->getParameters());
|
|
$connection->writeRequest($this->getProfile()->createCommand('ping'));
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
* @expectedException Predis\NotSupportedException
|
|
* @expectedExceptionMessage The method Predis\Connection\WebdisConnection::readResponse() is not supported
|
|
*/
|
|
public function testReadingResponsesIsNotSupported()
|
|
{
|
|
$connection = new WebdisConnection($this->getParameters());
|
|
$connection->readResponse($this->getProfile()->createCommand('ping'));
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
* @expectedException Predis\NotSupportedException
|
|
* @expectedExceptionMessage The method Predis\Connection\WebdisConnection::read() is not supported
|
|
*/
|
|
public function testReadingFromConnectionIsNotSupported()
|
|
{
|
|
$connection = new WebdisConnection($this->getParameters());
|
|
$connection->read();
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
* @expectedException Predis\NotSupportedException
|
|
* @expectedExceptionMessage The method Predis\Connection\WebdisConnection::pushInitCommand() is not supported
|
|
*/
|
|
public function testPushingInitCommandsIsNotSupported()
|
|
{
|
|
$connection = new WebdisConnection($this->getParameters());
|
|
$connection->pushInitCommand($this->getProfile()->createCommand('ping'));
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
* @expectedException Predis\NotSupportedException
|
|
* @expectedExceptionMessage Disabled command: SELECT
|
|
*/
|
|
public function testRejectCommandSelect()
|
|
{
|
|
$connection = new WebdisConnection($this->getParameters());
|
|
$connection->executeCommand($this->getProfile()->createCommand('select', array(0)));
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
* @expectedException Predis\NotSupportedException
|
|
* @expectedExceptionMessage Disabled command: AUTH
|
|
*/
|
|
public function testRejectCommandAuth()
|
|
{
|
|
$connection = new WebdisConnection($this->getParameters());
|
|
$connection->executeCommand($this->getProfile()->createCommand('auth', array('foobar')));
|
|
}
|
|
|
|
/**
|
|
* @group disconnected
|
|
*/
|
|
public function testCanBeSerialized()
|
|
{
|
|
$parameters = $this->getParameters(array('alias' => 'webdis'));
|
|
$connection = new WebdisConnection($parameters);
|
|
|
|
$unserialized = unserialize(serialize($connection));
|
|
|
|
$this->assertInstanceOf('Predis\Connection\WebdisConnection', $unserialized);
|
|
$this->assertEquals($parameters, $unserialized->getParameters());
|
|
}
|
|
|
|
// ******************************************************************** //
|
|
// ---- INTEGRATION TESTS --------------------------------------------- //
|
|
// ******************************************************************** //
|
|
|
|
/**
|
|
* @group connected
|
|
*/
|
|
public function testExecutesCommandsOnServer()
|
|
{
|
|
$connection = $this->getConnection($profile);
|
|
|
|
$cmdPing = $profile->createCommand('ping');
|
|
$cmdEcho = $profile->createCommand('echo', array('echoed'));
|
|
$cmdGet = $profile->createCommand('get', array('foobar'));
|
|
$cmdRpush = $profile->createCommand('rpush', array('metavars', 'foo', 'hoge', 'lol'));
|
|
$cmdLrange = $profile->createCommand('lrange', array('metavars', 0, -1));
|
|
|
|
$this->assertEquals('PONG', $connection->executeCommand($cmdPing));
|
|
$this->assertSame('echoed', $connection->executeCommand($cmdEcho));
|
|
$this->assertNull($connection->executeCommand($cmdGet));
|
|
$this->assertSame(3, $connection->executeCommand($cmdRpush));
|
|
$this->assertSame(array('foo', 'hoge', 'lol'), $connection->executeCommand($cmdLrange));
|
|
}
|
|
|
|
/**
|
|
* @medium
|
|
* @group disconnected
|
|
* @group slow
|
|
* @expectedException Predis\Connection\ConnectionException
|
|
*/
|
|
public function testThrowExceptionWhenUnableToConnect()
|
|
{
|
|
$parameters = $this->getParameters(array('host' => '169.254.10.10'));
|
|
$connection = new WebdisConnection($parameters);
|
|
$connection->executeCommand($this->getProfile()->createCommand('ping'));
|
|
}
|
|
|
|
// ******************************************************************** //
|
|
// ---- HELPER METHODS ------------------------------------------------ //
|
|
// ******************************************************************** //
|
|
|
|
/**
|
|
* Returns a named array with the default connection parameters and their values.
|
|
*
|
|
* @return array Default connection parameters.
|
|
*/
|
|
protected function getDefaultParametersArray()
|
|
{
|
|
return array(
|
|
'scheme' => 'http',
|
|
'host' => WEBDIS_SERVER_HOST,
|
|
'port' => WEBDIS_SERVER_PORT,
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Returns a new instance of a connection instance.
|
|
*
|
|
* @param array $parameters Additional connection parameters.
|
|
* @return WebdisConnection
|
|
*/
|
|
protected function getConnection(&$profile = null, array $parameters = array())
|
|
{
|
|
$parameters = $this->getParameters($parameters);
|
|
$profile = $this->getProfile();
|
|
|
|
$connection = new WebdisConnection($parameters);
|
|
$connection->executeCommand($profile->createCommand('flushdb'));
|
|
|
|
return $connection;
|
|
}
|
|
}
|