Files
predis/tests/Predis/Command/Redis/MIGRATE_Test.php
Daniele Alessandri 4b47639f9e Rename command classes using command ID as name.
Some notable exceptions are EVAL and ECHO because having these names
as class names would raise a syntax error.
2016-06-04 20:54:41 +02:00

115 lines
2.8 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\Command\Redis;
/**
* @group commands
* @group realm-key
*/
class MIGRATE_Test extends PredisCommandTestCase
{
/**
* {@inheritdoc}
*/
protected function getExpectedCommand()
{
return 'Predis\Command\Redis\MIGRATE';
}
/**
* {@inheritdoc}
*/
protected function getExpectedId()
{
return 'MIGRATE';
}
/**
* @group disconnected
*/
public function testFilterArguments()
{
$arguments = array('127.0.0.1', '6379', 'key', '0', '10');
$expected = array('127.0.0.1', '6379', 'key', '0', '10');
$command = $this->getCommand();
$command->setArguments($arguments);
$this->assertSame($expected, $command->getArguments());
}
/**
* @group disconnected
*/
public function testFilterArgumentsRedis300()
{
$arguments = array('127.0.0.1', '6379', 'key', '0', '10', 'COPY', 'REPLACE');
$expected = array('127.0.0.1', '6379', 'key', '0', '10', 'COPY', 'REPLACE');
$command = $this->getCommand();
$command->setArguments($arguments);
$this->assertSame($expected, $command->getArguments());
}
/**
* @group disconnected
*/
public function testFilterArgumentsWithOptionsArray()
{
$arguments = array('127.0.0.1', '6379', 'key', '0', '10', array('COPY' => true, 'REPLACE' => true));
$expected = array('127.0.0.1', '6379', 'key', '0', '10', 'COPY', 'REPLACE');
$command = $this->getCommand();
$command->setArguments($arguments);
$this->assertSame($expected, $command->getArguments());
}
/**
* @group disconnected
*/
public function testParseResponse()
{
$command = $this->getCommand();
$this->assertSame('OK', $command->parseResponse('OK'));
}
/**
* @group connected
* @requiresRedisVersion >= 2.6.0
*/
public function testReturnsStatusNOKEYOnNonExistingKey()
{
$redis = $this->getClient();
$this->assertEquals('NOKEY', $response = $redis->migrate('169.254.10.10', 16379, 'foo', 15, 1));
$this->assertInstanceOf('Predis\Response\Status', $response);
}
/**
* @group connected
* @requiresRedisVersion >= 2.6.0
* @group slow
* @expectedException \Predis\Response\ServerException
* @expectedExceptionMessage IOERR
*/
public function testReturnsErrorOnUnreacheableDestination()
{
$redis = $this->getClient();
$redis->set('foo', 'bar');
$redis->migrate('169.254.10.10', 16379, 'foo', 15, 1);
}
}