123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- <?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-string
- */
- class SET_Test extends PredisCommandTestCase
- {
- /**
- * {@inheritdoc}
- */
- protected function getExpectedCommand()
- {
- return 'Predis\Command\Redis\SET';
- }
- /**
- * {@inheritdoc}
- */
- protected function getExpectedId()
- {
- return 'SET';
- }
- /**
- * @group disconnected
- */
- public function testFilterArguments()
- {
- $arguments = array('foo', 'bar');
- $expected = array('foo', 'bar');
- $command = $this->getCommand();
- $command->setArguments($arguments);
- $this->assertSame($expected, $command->getArguments());
- }
- /**
- * @group disconnected
- */
- public function testFilterArgumentsRedisWithModifiers()
- {
- $arguments = array('foo', 'bar', 'EX', '10', 'NX');
- $expected = array('foo', 'bar', 'EX', '10', 'NX');
- $command = $this->getCommand();
- $command->setArguments($arguments);
- $this->assertSame($expected, $command->getArguments());
- }
- /**
- * @group disconnected
- */
- public function testParseResponse()
- {
- $this->assertSame('OK', $this->getCommand()->parseResponse('OK'));
- }
- /**
- * @group connected
- */
- public function testSetStringValue()
- {
- $redis = $this->getClient();
- $this->assertEquals('OK', $redis->set('foo', 'bar'));
- $this->assertSame(1, $redis->exists('foo'));
- $this->assertSame('bar', $redis->get('foo'));
- }
- /**
- * @group connected
- * @requiresRedisVersion >= 2.6.12
- */
- public function testSetStringValueWithModifierEX()
- {
- $redis = $this->getClient();
- $this->assertEquals('OK', $redis->set('foo', 'bar', 'ex', 1));
- $this->assertSame(1, $redis->ttl('foo'));
- }
- /**
- * @group connected
- * @requiresRedisVersion >= 2.6.12
- */
- public function testSetStringValueWithModifierPX()
- {
- $redis = $this->getClient();
- $this->assertEquals('OK', $redis->set('foo', 'bar', 'px', 1000));
- $pttl = $redis->pttl('foo');
- $this->assertGreaterThan(0, $pttl);
- $this->assertLessThanOrEqual(1000, $pttl);
- }
- /**
- * @group connected
- * @requiresRedisVersion >= 2.6.12
- */
- public function testSetStringValueWithModifierNX()
- {
- $redis = $this->getClient();
- $this->assertEquals('OK', $redis->set('foo', 'bar', 'NX'));
- $this->assertNull($redis->set('foo', 'bar', 'NX'));
- }
- /**
- * @group connected
- * @requiresRedisVersion >= 2.6.12
- */
- public function testSetStringValueWithModifierXX()
- {
- $redis = $this->getClient();
- $this->assertEquals('OK', $redis->set('foo', 'bar'));
- $this->assertEquals('OK', $redis->set('foo', 'barbar', 'XX'));
- $this->assertNull($redis->set('foofoo', 'barbar', 'XX'));
- }
- }
|