123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450 |
- <?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\Cluster;
- use Predis\Profile;
- use PredisTestCase;
- /**
- *
- */
- class PredisStrategyTest extends PredisTestCase
- {
- /**
- * @group disconnected
- */
- public function testSupportsKeyTags()
- {
- // NOTE: 32 and 64 bits PHP runtimes can produce different hash values.
- $expected = PHP_INT_SIZE == 4 ? -1954026732 : 2340940564;
- $strategy = $this->getClusterStrategy();
- $this->assertSame($expected, $strategy->getSlotByKey('{foo}'));
- $this->assertSame($expected, $strategy->getSlotByKey('{foo}:bar'));
- $this->assertSame($expected, $strategy->getSlotByKey('{foo}:baz'));
- $this->assertSame($expected, $strategy->getSlotByKey('bar:{foo}:baz'));
- $this->assertSame($expected, $strategy->getSlotByKey('bar:{foo}:{baz}'));
- $this->assertSame($expected, $strategy->getSlotByKey('bar:{foo}:baz{}'));
- $this->assertSame(PHP_INT_SIZE == 4 ? -1355751440 : 2939215856, $strategy->getSlotByKey('{}bar:{foo}:baz'));
- $this->assertSame(PHP_INT_SIZE == 4 ? -18873278 : 4276094018, $strategy->getSlotByKey(''));
- $this->assertSame(PHP_INT_SIZE == 4 ? -1574052038 : 2720915258, $strategy->getSlotByKey('{}'));
- }
- /**
- * @group disconnected
- */
- public function testSupportedCommands()
- {
- $strategy = $this->getClusterStrategy();
- $this->assertSame($this->getExpectedCommands(), $strategy->getSupportedCommands());
- }
- /**
- * @group disconnected
- */
- public function testReturnsNullOnUnsupportedCommand()
- {
- $strategy = $this->getClusterStrategy();
- $command = Profile\Factory::getDevelopment()->createCommand('ping');
- $this->assertNull($strategy->getSlot($command));
- }
- /**
- * @group disconnected
- */
- public function testFirstKeyCommands()
- {
- $strategy = $this->getClusterStrategy();
- $profile = Profile\Factory::getDevelopment();
- $arguments = array('key');
- foreach ($this->getExpectedCommands('keys-first') as $commandID) {
- $command = $profile->createCommand($commandID, $arguments);
- $this->assertNotNull($strategy->getSlot($command), $commandID);
- }
- }
- /**
- * @group disconnected
- */
- public function testAllKeysCommands()
- {
- $strategy = $this->getClusterStrategy();
- $profile = Profile\Factory::getDevelopment();
- $arguments = array('{key}:1', '{key}:2', '{key}:3', '{key}:4');
- foreach ($this->getExpectedCommands('keys-all') as $commandID) {
- $command = $profile->createCommand($commandID, $arguments);
- $this->assertNotNull($strategy->getSlot($command), $commandID);
- }
- }
- /**
- * @group disconnected
- */
- public function testInterleavedKeysCommands()
- {
- $strategy = $this->getClusterStrategy();
- $profile = Profile\Factory::getDevelopment();
- $arguments = array('{key}:1', 'value1', '{key}:2', 'value2');
- foreach ($this->getExpectedCommands('keys-interleaved') as $commandID) {
- $command = $profile->createCommand($commandID, $arguments);
- $this->assertNotNull($strategy->getSlot($command), $commandID);
- }
- }
- /**
- * @group disconnected
- */
- public function testKeysForSortCommand()
- {
- $strategy = $this->getClusterStrategy();
- $profile = Profile\Factory::getDevelopment();
- $arguments = array('{key}:1', 'value1', '{key}:2', 'value2');
- $commandID = 'SORT';
- $command = $profile->createCommand($commandID, array('{key}:1'));
- $this->assertNotNull($strategy->getSlot($command), $commandID);
- $command = $profile->createCommand($commandID, array('{key}:1', array('STORE' => '{key}:2')));
- $this->assertNotNull($strategy->getSlot($command), $commandID);
- }
- /**
- * @group disconnected
- */
- public function testKeysForBlockingListCommands()
- {
- $strategy = $this->getClusterStrategy();
- $profile = Profile\Factory::getDevelopment();
- $arguments = array('{key}:1', '{key}:2', 10);
- foreach ($this->getExpectedCommands('keys-blockinglist') as $commandID) {
- $command = $profile->createCommand($commandID, $arguments);
- $this->assertNotNull($strategy->getSlot($command), $commandID);
- }
- }
- /**
- * @group disconnected
- */
- public function testKeysForZsetAggregationCommands()
- {
- $strategy = $this->getClusterStrategy();
- $profile = Profile\Factory::getDevelopment();
- $arguments = array('{key}:destination', 2, '{key}:1', '{key}:1', array('aggregate' => 'SUM'));
- foreach ($this->getExpectedCommands('keys-zaggregated') as $commandID) {
- $command = $profile->createCommand($commandID, $arguments);
- $this->assertNotNull($strategy->getSlot($command), $commandID);
- }
- }
- /**
- * @group disconnected
- */
- public function testKeysForBitOpCommand()
- {
- $strategy = $this->getClusterStrategy();
- $profile = Profile\Factory::getDevelopment();
- $arguments = array('AND', '{key}:destination', '{key}:src:1', '{key}:src:2');
- foreach ($this->getExpectedCommands('keys-bitop') as $commandID) {
- $command = $profile->createCommand($commandID, $arguments);
- $this->assertNotNull($strategy->getSlot($command), $commandID);
- }
- }
- /**
- * @group disconnected
- */
- public function testKeysForGeoradiusCommand()
- {
- $strategy = $this->getClusterStrategy();
- $profile = Profile\Factory::getDevelopment();
- $commandID = 'GEORADIUS';
- $command = $profile->createCommand($commandID, array('{key}:1', 10, 10, 1, 'km'));
- $this->assertNotNull($strategy->getSlot($command), $commandID);
- $command = $profile->createCommand($commandID, array('{key}:1', 10, 10, 1, 'km', 'store', '{key}:2', 'storedist', '{key}:3'));
- $this->assertNotNull($strategy->getSlot($command), $commandID);
- }
- /**
- * @group disconnected
- */
- public function testKeysForGeoradiusByMemberCommand()
- {
- $strategy = $this->getClusterStrategy();
- $profile = Profile\Factory::getDevelopment();
- $commandID = 'GEORADIUSBYMEMBER';
- $command = $profile->createCommand($commandID, array('{key}:1', 'member', 1, 'km'));
- $this->assertNotNull($strategy->getSlot($command), $commandID);
- $command = $profile->createCommand($commandID, array('{key}:1', 'member', 1, 'km', 'store', '{key}:2', 'storedist', '{key}:3'));
- $this->assertNotNull($strategy->getSlot($command), $commandID);
- }
- /**
- * @group disconnected
- */
- public function testKeysForEvalCommand()
- {
- $strategy = $this->getClusterStrategy();
- $profile = Profile\Factory::getDevelopment();
- $arguments = array('%SCRIPT%', 2, '{key}:1', '{key}:2', 'value1', 'value2');
- foreach ($this->getExpectedCommands('keys-script') as $commandID) {
- $command = $profile->createCommand($commandID, $arguments);
- $this->assertNotNull($strategy->getSlot($command), $commandID);
- }
- }
- /**
- * @group disconnected
- */
- public function testKeysForScriptCommand()
- {
- $strategy = $this->getClusterStrategy();
- $arguments = array('{key}:1', '{key}:2', 'value1', 'value2');
- $command = $this->getMock('Predis\Command\ScriptCommand', array('getScript', 'getKeysCount'));
- $command->expects($this->once())
- ->method('getScript')
- ->will($this->returnValue('return true'));
- $command->expects($this->exactly(2))
- ->method('getKeysCount')
- ->will($this->returnValue(2));
- $command->setArguments($arguments);
- $this->assertNotNull($strategy->getSlot($command), "Script Command [{$command->getId()}]");
- }
- /**
- * @group disconnected
- */
- public function testUnsettingCommandHandler()
- {
- $strategy = $this->getClusterStrategy();
- $profile = Profile\Factory::getDevelopment();
- $strategy->setCommandHandler('set');
- $strategy->setCommandHandler('get', null);
- $command = $profile->createCommand('set', array('key', 'value'));
- $this->assertNull($strategy->getSlot($command));
- $command = $profile->createCommand('get', array('key'));
- $this->assertNull($strategy->getSlot($command));
- }
- /**
- * @group disconnected
- */
- public function testSettingCustomCommandHandler()
- {
- $strategy = $this->getClusterStrategy();
- $profile = Profile\Factory::getDevelopment();
- $callable = $this->getMock('stdClass', array('__invoke'));
- $callable->expects($this->once())
- ->method('__invoke')
- ->with($this->isInstanceOf('Predis\Command\CommandInterface'))
- ->will($this->returnValue('key'));
- $strategy->setCommandHandler('get', $callable);
- $command = $profile->createCommand('get', array('key'));
- $this->assertNotNull($strategy->getSlot($command));
- }
- // ******************************************************************** //
- // ---- HELPER METHODS ------------------------------------------------ //
- // ******************************************************************** //
- /**
- * Creates the default cluster strategy object.
- *
- * @return StrategyInterface
- */
- protected function getClusterStrategy()
- {
- $strategy = new PredisStrategy();
- $connection = $this->getMock('Predis\Connection\NodeConnectionInterface');
- $strategy->getDistributor()->add($connection);
- return $strategy;
- }
- /**
- * Returns the list of expected supported commands.
- *
- * @param string $type Optional type of command (based on its keys)
- *
- * @return array
- */
- protected function getExpectedCommands($type = null)
- {
- $commands = array(
- /* commands operating on the key space */
- 'EXISTS' => 'keys-all',
- 'DEL' => 'keys-all',
- 'TYPE' => 'keys-first',
- 'EXPIRE' => 'keys-first',
- 'EXPIREAT' => 'keys-first',
- 'PERSIST' => 'keys-first',
- 'PEXPIRE' => 'keys-first',
- 'PEXPIREAT' => 'keys-first',
- 'TTL' => 'keys-first',
- 'PTTL' => 'keys-first',
- 'SORT' => 'variable',
- 'DUMP' => 'keys-first',
- 'RESTORE' => 'keys-first',
- /* commands operating on string values */
- 'APPEND' => 'keys-first',
- 'DECR' => 'keys-first',
- 'DECRBY' => 'keys-first',
- 'GET' => 'keys-first',
- 'GETBIT' => 'keys-first',
- 'MGET' => 'keys-all',
- 'SET' => 'keys-first',
- 'GETRANGE' => 'keys-first',
- 'GETSET' => 'keys-first',
- 'INCR' => 'keys-first',
- 'INCRBY' => 'keys-first',
- 'INCRBYFLOAT' => 'keys-first',
- 'SETBIT' => 'keys-first',
- 'SETEX' => 'keys-first',
- 'MSET' => 'keys-interleaved',
- 'MSETNX' => 'keys-interleaved',
- 'SETNX' => 'keys-first',
- 'SETRANGE' => 'keys-first',
- 'STRLEN' => 'keys-first',
- 'SUBSTR' => 'keys-first',
- 'BITOP' => 'keys-bitop',
- 'BITCOUNT' => 'keys-first',
- 'BITFIELD' => 'keys-first',
- /* commands operating on lists */
- 'LINSERT' => 'keys-first',
- 'LINDEX' => 'keys-first',
- 'LLEN' => 'keys-first',
- 'LPOP' => 'keys-first',
- 'RPOP' => 'keys-first',
- 'RPOPLPUSH' => 'keys-all',
- 'BLPOP' => 'keys-blockinglist',
- 'BRPOP' => 'keys-blockinglist',
- 'BRPOPLPUSH' => 'keys-blockinglist',
- 'LPUSH' => 'keys-first',
- 'LPUSHX' => 'keys-first',
- 'RPUSH' => 'keys-first',
- 'RPUSHX' => 'keys-first',
- 'LRANGE' => 'keys-first',
- 'LREM' => 'keys-first',
- 'LSET' => 'keys-first',
- 'LTRIM' => 'keys-first',
- /* commands operating on sets */
- 'SADD' => 'keys-first',
- 'SCARD' => 'keys-first',
- 'SDIFF' => 'keys-all',
- 'SDIFFSTORE' => 'keys-all',
- 'SINTER' => 'keys-all',
- 'SINTERSTORE' => 'keys-all',
- 'SUNION' => 'keys-all',
- 'SUNIONSTORE' => 'keys-all',
- 'SISMEMBER' => 'keys-first',
- 'SMEMBERS' => 'keys-first',
- 'SSCAN' => 'keys-first',
- 'SPOP' => 'keys-first',
- 'SRANDMEMBER' => 'keys-first',
- 'SREM' => 'keys-first',
- /* commands operating on sorted sets */
- 'ZADD' => 'keys-first',
- 'ZCARD' => 'keys-first',
- 'ZCOUNT' => 'keys-first',
- 'ZINCRBY' => 'keys-first',
- 'ZINTERSTORE' => 'keys-zaggregated',
- 'ZRANGE' => 'keys-first',
- 'ZRANGEBYSCORE' => 'keys-first',
- 'ZRANK' => 'keys-first',
- 'ZREM' => 'keys-first',
- 'ZREMRANGEBYRANK' => 'keys-first',
- 'ZREMRANGEBYSCORE' => 'keys-first',
- 'ZREVRANGE' => 'keys-first',
- 'ZREVRANGEBYSCORE' => 'keys-first',
- 'ZREVRANK' => 'keys-first',
- 'ZSCORE' => 'keys-first',
- 'ZUNIONSTORE' => 'keys-zaggregated',
- 'ZSCAN' => 'keys-first',
- 'ZLEXCOUNT' => 'keys-first',
- 'ZRANGEBYLEX' => 'keys-first',
- 'ZREMRANGEBYLEX' => 'keys-first',
- 'ZREVRANGEBYLEX' => 'keys-first',
- /* commands operating on hashes */
- 'HDEL' => 'keys-first',
- 'HEXISTS' => 'keys-first',
- 'HGET' => 'keys-first',
- 'HGETALL' => 'keys-first',
- 'HMGET' => 'keys-first',
- 'HMSET' => 'keys-first',
- 'HINCRBY' => 'keys-first',
- 'HINCRBYFLOAT' => 'keys-first',
- 'HKEYS' => 'keys-first',
- 'HLEN' => 'keys-first',
- 'HSET' => 'keys-first',
- 'HSETNX' => 'keys-first',
- 'HVALS' => 'keys-first',
- 'HSCAN' => 'keys-first',
- 'HSTRLEN' => 'keys-first',
- /* commands operating on HyperLogLog */
- 'PFADD' => 'keys-first',
- 'PFCOUNT' => 'keys-all',
- 'PFMERGE' => 'keys-all',
- /* scripting */
- 'EVAL' => 'keys-script',
- 'EVALSHA' => 'keys-script',
- /* commands performing geospatial operations */
- 'GEOADD' => 'keys-first',
- 'GEOHASH' => 'keys-first',
- 'GEOPOS' => 'keys-first',
- 'GEODIST' => 'keys-first',
- 'GEORADIUS' => 'keys-georadius',
- 'GEORADIUSBYMEMBER' => 'keys-georadius',
- );
- if (isset($type)) {
- $commands = array_filter($commands, function ($expectedType) use ($type) {
- return $expectedType === $type;
- });
- }
- return array_keys($commands);
- }
- }
|