123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- <?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);
- }
- }
|