123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- <?php
- namespace Predis\Command;
- class KeyMigrateTest extends PredisCommandTestCase
- {
-
- protected function getExpectedCommand()
- {
- return 'Predis\Command\KeyMigrate';
- }
-
- protected function getExpectedId()
- {
- return 'MIGRATE';
- }
-
- 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());
- }
-
- 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());
- }
-
- 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());
- }
-
- public function testParseResponse()
- {
- $command = $this->getCommand();
- $this->assertSame('OK', $command->parseResponse('OK'));
- }
-
- 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);
- }
-
- public function testReturnsErrorOnUnreacheableDestination()
- {
- $redis = $this->getClient();
- $redis->set('foo', 'bar');
- $redis->migrate('169.254.10.10', 16379, 'foo', 15, 1);
- }
- }
|